Posts

Showing posts from May, 2010

Google Ads

Nokia Secret Codes

A list of secret codes to access various Nokia phones' information which are not presented in the menu.

Disabling Ubuntu 9.10 (Karmic Koala) Boot Splash Screen

Sometimes, a verbose boot process is needed for debugging purposes. In order to see that, the splash screen need to be disabled. Following steps are for Grub2 which is used from Karmic Koala onwards.

Setting day,month and year variables in Windows batch

@echo off&SETLOCAL FOR /f "tokens=1-4 delims=/-. " %%G IN ('date /t') DO (call :FIXDATE %%G %%H %%I %%J) goto :SETDATE :FIXDATE if "%1:~0,1%" GTR "9" shift FOR /f "skip=1 tokens=2-4 delims=(-)" %%G IN ('echo.^|date') DO (     set %%G=%1&set %%H=%2&set %%I=%3) goto :eof :SETDATE ENDLOCAL&SET mm=%mm%&SET dd=%dd%&SET yy=%yy%

Autofill empty cells with content from the first cell above the empty cells in Microsoft Excel

Image
Non Macro Solution Select the first cell that have the content that need to be paste to the empty cells. Scroll down to the last empty cells below the first cell that needed to be fill. Hold shift and select the last cell. Ctrl + D Macro Solution