This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% from http://dev.maxmind.com/static/csv/codes/time_zone.csv | |
-define(TZ_COUNTRIES, [ | |
{"US","AL","America/Chicago"}, | |
{"US","AK","America/Anchorage"}, | |
{"US","AZ","America/Phoenix"}, | |
{"US","AR","America/Chicago"}, | |
{"US","CA","America/Los Angeles"}, | |
{"US","CO","America/Denver"}, | |
{"US","CT","America/New York"}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/include/tz_database.hrl b/include/tz_database.hrl | |
index 67e9c57..48a2a33 100644 | |
--- a/include/tz_database.hrl | |
+++ b/include/tz_database.hrl | |
@@ -339,7 +339,7 @@ | |
{"Europe/Luxembourg",{"CET","CET"},{"CEST","CEST"},60,60,{last,sun,mar},{2,0},{last,sun,oct},{3,0}}, | |
{"Europe/Madrid",{"CET","CET"},{"CEST","CEST"},60,60,{last,sun,mar},{2,0},{last,sun,oct},{3,0}}, | |
{"Europe/Malta",{"CET","CET"},{"CEST","CEST"},60,60,{last,sun,mar},{2,0},{last,sun,oct},{3,0}}, | |
- {"Europe/Minsk",{"EET","EET"},{"EEST","EEST"},120,60,{last,sun,mar},{2,0},{last,sun,oct},{3,0}}, | |
+ {"Europe/Minsk",{"FET","FET"},undef,180,0,undef,{0,0},undef,{0,0}}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# where to store the sparse-image | |
WORKSPACE=~/Documents/workspace.dmg.sparseimage | |
create() { | |
hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 60g -volname workspace ${WORKSPACE} | |
} | |
detach() { |