Related Posts
Sample /etc/fstab entry for EBS volume
gid= and uid= are not valid for XFS, pass “grpid=” to your fstab entry. /dev/xvdf /media/ebs/data xfs defaults,auto,noatime,noexec,grpid=1000 0 0
Only when you start reading minds you start becoming an expert at something.
I’ve been doing what I now consider truly coding for the last 4 years, but I’ve been doing much simpler programming for 10 years. Something happened more over the last 2 years, as I used other’s peoples libraries and found bugs or thought of ways of improving them, I stopped being afraid or intimidated by […]
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]