Optimum Time Sailing Watch (OS Series 1):
To set the time: press MODE to display the time, hold down CLEAR for two seconds. Press the PROG key to change the hour. (To change from 12 to 24 hour mode press START/STOP). Once hour is correct, press MODE to set minutes, then press MODE again to set month. Press CLEAR to exit/finalise.
RTM
Responsive Notes
- Twitter Bootstrap – responsive framework.
Mobile web dev
Viewports:
CSS:
Place before any media queries.
@viewport {
width: 480px;
zoom: 1;
}
Meta tag (better support):
<meta name="viewport" content="width=320"> <meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=320,initial-scale=1"> // Set zoom to full size <meta name="viewport" content="initial-scale=1">
Batteries
Lithium-ion:
– Avoid complete discharge
– Store/re-charge at 50%
FTP Notes
Proftpd connections:
ftptop – show current connections in realtime in a ‘top’ like format
ftpwho – list current connections
Restart Proftpd (Parallels Plesk/Cent OS):
/etc/init.d/xinetd restart
Active vs Passive FTP:
A good article on this subject can be found here.
MS-DOS Ftp command Passive Mode:
To set passive mode type:
quote pasv
iPhone turn off auto text resize (html/css)
To stop an iPhone from automatically resizing text on a webpage use:
html { -webkit-text-size-adjust: none; }
Memory leak Netgear WNDA3100v2 USB Wifi adapter
Version 1.2 of the Windows XP driver has a memory leak – the solution is to upgrade the driver to a later version of the driver.
Version 1.3 (driver date: 05/11/2009, driver version: 5.60.180.11) also appears to have a memory leak (this version appears to leak faster than v1.2).
(System: Windows XP 32-bit, Pentium 4)
SRV 2019 Error (The server was unable to allocate from the system NonPaged pool because the pool was empty)
An excellent article on troubleshooting this error can be found here:
Featured image missing WordPress
Add to a theme’s functions.php file:
// add featured image support add_theme_support( 'post-thumbnails' );