It is quite easy to get the playback length (in seconds) of an audio or video file. The file may be in whatever format that the browser supports – mp3, mp4, ogg, wav, etc.
Continue reading “Get the Duration of an Audio or Video File in Javascript”
Category: Tools & Tips
Fixing MySQL ERROR 1030 (HY000): Got error 28 from storage engine
TL;DR You need to free-up some space on your server (or computer) or get a bigger HDD (or partition).
Continue reading “Fixing MySQL ERROR 1030 (HY000): Got error 28 from storage engine”
Convert Your CSS Code to SCSS/Sass
Ever wanted to make your own CSS2Sass convertor ? When working on projects, a tool that can quickly convert our CSS code to Sass can be ridiculously useful. Let’s see how to do it.
Continue reading “Convert Your CSS Code to SCSS/Sass”
Controlling the Volume of an Audio File in Javascript
Just another quick tip. I’ll show you how to change the volume of an audio file of whatever format you are using – mp3, ogg, wav, aac, etc.
Continue reading “Controlling the Volume of an Audio File in Javascript”
How to execute multiple queries in the backend Mysql database through PHP computer programming language
Communication with a backend database management system gets easier due to the specific support for the task by different computer programming languages. One of the many languages which supports connection with a database and interaction with it is PHP, a computer programming language which is used to write applications for the web.
Having experimented lately with the PHP computer programming language, I decided to share my experience with it so far. Through this blog post you will learn how to execute multiple sql queries in a Mysql database by making use of a custom PHP script.
Continue reading “How to execute multiple queries in the backend Mysql database through PHP computer programming language”
How to execute a sql query in Mysql with PHP
PHP comes with all the required tools for connecting and interacting with a Mysql database in the backend. Although you may not have previous experience with PHP and Mysql, this blog post is self explanatory and truly easy to follow. Continue reading “How to execute a sql query in Mysql with PHP”
Sql commands you should know as a computer geek
Being a computer geek, there is a lot of information to learn each day it passes. Lately I am experimenting a little with the structured query language, a language which is a domain specific one. According to the information shared on Wikipedia, sql is a language which is being put to use to manage data in a relational database management system.
Continue reading “Sql commands you should know as a computer geek”