
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”
Web and Mobile Development articles

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”
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”
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”
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”
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”
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”
Being a Python geek, lately I am experimenting with database oriented applications. Building the projects from scratch, I am making use of the Mysql server as the database management system in the backend.
For those of you geeks who have no idea, Mysql is an open-source relational database management system that can be automatically populated with data through the structured query language known as SQL.
Continue reading “How to connect to mysql with python”