Windows Tools

Uninstall Windows programs Click Start, type run and press Enter. Type appwiz.cpl and click OK. Show Windows services Click Start, type run and press Enter. Type services.msc and click OK. Show Windows startup and other configs Click Start, type run and press Enter. Type msconfig and click OK. Windows calculator Click Start, type run and ... Read more

Windows Cleanup

Clean "Temp" folder Click Start, type "%tmp%" and press Enter. Delete all files and folders in "C:\Users\admin\AppData\Local\Temp" Clean "User" folder Click Start, type "%USERPROFILE%" and press Enter. Delete not needed files and folders in "C:\Users\admin\" Clean "Download" folder Open "c:\Windows\SoftwareDistribution\Download\" folder Delete all files and folders Disk Cleanup Open "My Computer", mouse right click on ... Read more

Windows Performance

Change Virtual Memory Settings to speed up Windows Virtual memory for your computer is hard drive space used by Windows when it fills up the physical RAM. When your system runs low on RAM because an application like Firefox is taking too much memory, Windows moves the least used "pages" of memory out to a ... Read more

Composition over inheritance

Favor object composition over class inheritance. The problem with object-oriented languages is they’ve got all this implicit environment that they carry around with them. You wanted a banana but what you got was a gorilla holding the banana and the entire jungle.

Chrome Code Coverage

You can check the CSS and JS code coverage with Chrome Dev Tools: You can show the Coverage tab from Dev Tools menu by choosing "More tools" => "Coverage". Alternatively, to open Dev Tools press Cmd+Opt+I (Mac) or Control+Shift+I (Windows, Linux). After this, you can access the Coverage from the Command Menu: Cmd+Shift+P (Mac) or ... Read more

Progressive enhancement

The above figure is often used to demonstrate a minimum viable product, but I think it can also be used to demonstrate a minimum viable experience. The skateboard may be a little slower, but it doesn’t stop the user getting to where they want to go. So, if the user’s browser doesn’t support JavaScript or ... Read more