How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/
#!/bin/sh | |
# | |
# vpnhost.sh - Add hosts/IP addresses to route through your VPN. | |
# | |
# - Routed hosts are not persisted between restarts of your VPN software. | |
# - The VPN's gateway route is hardcoded to be on the tun0 interface. | |
# - Use of sudo is hard-coded too. | |
# - Only works on OSX | |
VPN_IFACE=tun0 |
Thanks to this article by Christoph Berg
Directories and files
~/
It's a common misconception that [William Shakespeare][1] and [Miguel de Cervantes][2] died on the same day in history - so much so that UNESCO named April 23 as [World Book Day because of this fact][3]. However because England hadn't yet adopted [Gregorian Calendar Reform][4] (and wouldn't until [1752][5]) their deaths are actually 10 days apart. Since Ruby's Time
class implements a [proleptic Gregorian calendar][6] and has no concept of calendar reform then there's no way to express this. This is where DateTime
steps in:
>> shakespeare = DateTime.iso8601('1616-04-23', Date::ENGLAND)
=> Tue, 23 Apr 1616 00:00:00 +0000
>> cervantes = DateTime.iso8601('1616-04-23', Date::ITALY)
=> Sat, 23 Apr 1616 00:00:00 +0000
My name is {{.Name}} and I'm {{.Age}} years old!! |
package main | |
import ( | |
"./binding" | |
"fmt" | |
) | |
func main() { | |
binding.PrintHello() | |
binding.Seed(1) | |
fmt.Println(binding.Random()) |