If you see this, gubatron.com has successfully moved to Amazon Web Services.
Related Posts
[SYSADMIN] Serve your WordPress cached pages directly with lighttpd and not PHP
Optimizing Your WordPress Cache Loads in Lighttpd. If you don’t configure your wordpress virtual host properly in lighttpd, your wordpress cache will still make use of PHP. Wouldn’t it be nice if all those cached requests were served directy from the webserver as the static files that they are, bypassing the CPU/memory load PHP can […]
NSIS: How to check if the default browser is Chrome
Reading the registry key won’t cut it. This does. [code] ; isDefaultBrowserChrome !define isDefaultBrowserChrome "!insertmacro isDefaultBrowserChrome" !macro isDefaultBrowserChrome Result FileOpen $0 "$PLUGINSDIR\browser_detect.htm" "w" FileClose $0 System::Call "Shell32::FindExecutable(t ‘$PLUGINSDIR\browser_detect.htm’, i 0, t .r1)" ${StrLoc} $0 $1 "chrome.exe" ">" ${If} $0 != "" StrCpy ${Result} "1" ${Else} StrCpy ${Result} "0" ${EndIf} !macroend [/code]
How Does the Human Brain Handle Chess, Math, Coding, Music, Drawing, and Rock Climbing?
The human brain is a marvel of adaptability, capable of tackling an incredible range of activities—from playing chess to scaling a rock face. While these tasks may seem worlds apart, they share intriguing overlaps in the way our brains process them. Let’s dive into the neuroscience behind six fascinating activities: chess, math, coding, music, drawing, […]