Tuesday, April 16, 2024

The Art of Achieving Work-Life Balance: Strategies for Software Engineers

In the fast-paced world of engineering, striking a balance between work and personal life can sometimes feel like navigating a complex algorithm. With deadlines looming, bugs to fix, and features to develop, it's surely easy to becoming consumed by work, often at the expense of personal well-being....

Monday, December 18, 2017

How to rename table name in sql server

To rename a table in sql server, you just need a single line of code mentioned below:   sp_rename 'Old_table_name', 'New_table_name'; Just run the above query and the magic will happen. Please make sure you change the table name every like stored procedure,views etc where you have used...

Friday, August 28, 2015

Thursday, August 13, 2015

Turn Off Automatic Updates in Windows 10

In windows 10, Microsoft removed the ability to turn off automatic updates. the registry setting that allowed you to disable windows update in the previous build of windows 10 no longer works. however it is still possible to deactivate automatic updates. In this post, I will show you how you can disable automatic...

Tuesday, June 2, 2015

Git ignore File List for ASP.NET Web Form Project

# Created by https://www.gitignore.io ### VisualStudio ### ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.csproj.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs #...

Monday, May 18, 2015

Wednesday, September 24, 2014