Skip to main content

Posts

Showing posts from March, 2017

Bash script backup MySql database

As we all know, databases is one of the most important thing you need to backup before you want to upgrade, move to new server or before you want to do a task but do not really sure about the impact. I have written a article about the command line to  MySql database - How to Backup and Restore . In this article, I will show you a little bash script backup MySql database at regular intervals and deleting backups which older than 15 days from current. This Bash script backup MySql will contain your database information so please make sure you set the right permissions, more over please don’t place the backup folder in public_html folder othervise other people will be able to see the content of your database. Implement Bash script backup MySql database #!/bin/bash # Database information user="db_username" password="your_db_password" host="your_host" db_name="your_db_name" The line at the top is the shebang and is used to select the interpr...

Kanban vs Scrum vs Agile

When inflexible and wasteful software development processes are making your organization inefficient, it’s time to introduce an agile methodology.  Kanban vs Scrum  then becomes an essential question: Which agile software development methodology is better suited for my own situation? And  is Kanban agile ? What about  Scrum vs agile ? Confusion is spreading… Let’s have a look how to sort out all those questions. Scrum – A Fundamental Shift Scrum is a well-defined process framework for structuring your work. Introducing Scrum is quite a change for a team not used to agile software development: They have to start working in iterations, build cross-functional teams, appoint a product owner and a Scrum master, as well as introducing regular meetings for iteration planning, daily status updates and sprint reviews. The benefits of the Scrum methodology are well understood: Less superfluous specifications and fewer handovers due to cross-functional teams and more flex...