This file contains hidden or 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
#!/usr/bin/env ruby | |
# Uso: ruby timer.rb "mensaje anunciando el final del ciclo" | |
# o alternativamente: chmod +x timer.rb and ./timer.rb | |
# + info en http://archive.coderetreat.org/profiles/blogs/new-session-idea-baby-steps | |
message = ARGV[0] || "Time over" | |
minutes = 2 | |
seconds = minutes * 60 | |
while(true) |
This file contains hidden or 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
#!/usr/bin/env bash | |
arc list | awk '/.*Accepted.*/ {print $2}' | tr -d ":" | xargs -n 1 arc close-revision |
This file contains hidden or 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
#!/usr/bin/env bash | |
rvm 2.1.5 do rubocop "$@" |
This file contains hidden or 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/apps/link/models.py b/apps/link/models.py | |
index f9b726c..a5b445c 100755 | |
--- a/apps/link/models.py | |
+++ b/apps/link/models.py | |
@@ -1,6 +1,6 @@ | |
# -*- coding: utf-8 -*- | |
-# Copyright (c) 2012 Fabian Barkhau <[email protected]> | |
-# License: MIT (see LICENSE.TXT file) | |
+# Copyright (c) 2012 Fabian Barkhau <[email protected]> | |
+# License: MIT (see LICENSE.TXT file) |