Related Posts
Ubuntu/Debian Quick Reference: How To Change Your Server’s UTC Timezone on the command line
Just Type… sudo dpkg-reconfigure tzdata …and follow the instructions on screen. The process should look something like the following: Select your Region Select a city on your time zone You’re done. Tip You can always check the status of your configuration using sudo debconf-show tzdata You could for example map that command via ssh to […]
NSIS CharAt Macro
Lord knows why the NSIS folks didn’t add a CharAt function to their API. In case you need it to parse a string, here’s a Macro that makes StrCpy work like a CharAt function [bash] ;Get a character inside a string given an index. ;Usage: CharAt String Index Output !macro CharAt InputString Index Output StrCpy […]