| <3 | love | 
| (y) | ok | 
| <(") | penguin | 
| :poop: | poop | 
| :|] | robot | 
| (^^^) | shark | 
| :putnam: | staff | 
2014-12-06
Facebook signs
2014-09-07
Modify boot order
Method 1: from the Terminal
- sudo gedit /etc/default/grub
- edit order and save the file
- sudo update-grub
- sudo add-apt-repository ppa:danielrichter2007/grub-customizer
- sudo apt-get update
- sudo apt-get install grub-customizer
- after the install edit the order
2014-08-31
Disable Internet Explorer home page changing
Method 1:
- run regedit
- open key HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Control Panel
- set HomePage to 0:Enabled or 1: Disabled
Method 2:
- run gpedit.msc
- go to User Configuration\Administrative Templates\Windows Components\Internet Explorer
- Double-click on Disable changing home page settings
- select Enabled
CD/DVD drive letter missing
Method 1:
(Tested on Windows 8)
(Tested on Windows 8)
- rum cmd as administrator
- type reg.exe add "HKLM\System\CurrentControlSet\Services\atapi\Controller0" /f /v EnumDevice1 /t REG_DWORD /d 0x00000001
- reboot
2014-03-29
get image dimensions in JavaScript
var img = new Image();
img.src = "pathToFile";
width = img.width;
height = img.height;
img.src = "pathToFile";
width = img.width;
height = img.height;
Change body background color/image using JavaScript
   document.body.style.backgroundColor = '#000';
document.body.style.backgroundImage = 'PathToImage';
document.body.style.backgroundImage = 'PathToImage';
Subscribe to:
Comments (Atom)
