Blog

ताईंना सांगा… पदर… नीट घ्या…!

रात्र बरीच झाली होती… बाईकवरून मी आपल्या घरी जायला निघालो… काही दिवसांपूर्वीच मला ही नवी नोकरी लागली होती… कधी दिवसपाळी तर कधी रात्रपाळी करून मी खूपच थकून जात असे. ऑफिसमधून बाहेर पडलो त्यावेळी रात्रीचा एक वाजला होता. नाईट शिफ्ट संपलेले बरेच लोक मला आता मुख्य रस्त्याच्या दिशेने जाताना दिसत होते. मीही त्यांच्या सोबत मुख्य रस्त्यापर्यंत …

बुडव्या (Budavya)

मे महिन्याचा शेवटचा आठवडा. मी बरोबर लक्षात ठेवलंय. तीन वर्ष सलग… तीन जणं बुडालीयेत. आख्खी सोसायटी तीन वेळा आक्रोशी रडलीये. तीनही पोरंच… आठ दहा वर्षाची असतील. चांगली पोहणारी. त्यांच्या आईबापाकडे बघवत नव्हतं. असं कसं झालं ? कशाला विचारताय ? ऊत्तर नसलेला प्रश्न. पूल असणार्या मोजक्या सोसायट्या, त्यापैकी आमची एक. टीचभर नाही, चांगला लांबलचक पूल आहे …

Importing and Exporting of MYSQL Database with Command Line SSH

Importing MYSQL Database Syntax $ mysql -u username -p database_name < path_to_mysql_file_here Importing existing MYSQL database with filename "wordpress.sql" stored at directory "/home/nishant/", Username is "root", terminal will prompt for asking password. $ mysql -u root -p wordpress < /home/nishant/wordpress.sql Exporting MYSQL Database Syntax $ mysqldump -p -u username database_name > path_to_mysql_file_here Exporting MYSQL database …

Create file with TimeStamp in Shell Script

I love using Ubuntu OS for development. I need to create a shell script that saves new file with a timestamp. Following are steps that I’ve followed: Understanding date command. nishant@nishantvaity:~$ date Wed Sep 18 13:53:49 IST 2019 Use any of following command to know options for date command. nishant@nishantvaity:~$ date –h OR nishant@nishantvaity:~$ man …

Srinivasa Ramanujan (The Man who reshaped 20th Century Mathematics)

Srinivasa Ramanujan (1887-1920) is one of the greatest Mathematicians of the twentieth century. Well known mathematicians Professors G.H. Hardy and J.E. Littlewood compared Ramajuan’s mathematical abilities and natural genius with all-time great mathematicians like Leonhard Euler, Carl Friedrich Gauss and Karl Gustav Jacobi. The influence of Ramanujan on number theory is without parallel in mathematics. …

Git and Virtualmin

Introduction to Git Git is a source-code control system that allows multiple developers to work on the same project. Each developer has a copy of the repository on his workstation, and can check in changes to that repository and synchronize it with a central server. Other developers can then fetch those changes by synchronizing their …