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
# | |
# Example of a user's .screenrc file | |
# | |
# This is how one can set a reattach password: | |
# password ODSJQf.4IJN7E # "1234" | |
# no annoying audible bell, please | |
vbell on |
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
[ui] | |
username = firstname lastname <[email protected]> | |
verbose = True | |
[pager] | |
pager = LESS='FSRX' less | |
[extensions] | |
color = | |
hgext.fetch= |
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
""" | |
log.py - Phenny Log Module | |
Copyright (c) Esteban Feldman | |
BSD License | |
http://github.com/eka/ | |
""" | |
from datetime import datetime |
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
#!/usr/bin/env python | |
""" | |
logger.py - Esteban Feldman | |
based on logger.py - Phenny Room Logging Module | |
Author: Peter Higgins ([email protected]) | |
About: http://higginsforpresident.net | |
License: AFL | New BSD | |
""" | |
from datetime import datetime | |
import logging |
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
[~]$ brew doctor | |
Your system is raring to brew. | |
[~]$ brew --config | |
HOMEBREW_VERSION: 0.9 | |
HEAD: (none) | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: 8-core 64-bit sandybridge | |
OS X: 10.7.4 | |
Kernel Architecture: x86_64 |
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
# registration/models <- en vez de models.py | |
# dentro models/__init__.py | |
# /user.py | |
# /foo.py | |
# user.py | |
class User(models.Model): | |
pass | |
# foo.py |
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
[program:redis] | |
command=/usr/local/bin/redis-server /etc/redis.conf | |
autorestart=true | |
stdout_logfile=/var/log/redis.log |
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
# Redis configuration file example | |
# Note on units: when memory size is needed, it is possible to specify | |
# it in the usual form of 1k 5GB 4M and so forth: | |
# | |
# 1k => 1000 bytes | |
# 1kb => 1024 bytes | |
# 1m => 1000000 bytes | |
# 1mb => 1024*1024 bytes | |
# 1g => 1000000000 bytes |
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
dirs = Dir['./*'] | |
original_dir = __dir__ | |
dirs.each do |dir| | |
begin | |
Dir.chdir(dir) | |
rescue | |
puts "couldn't change to #{dir}" | |
end | |
`git pull` |
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
{ | |
name:"1391639613822", | |
powers: ["multiball", "multiball", "multiball", "multiball"], | |
map: | |
[[X, X, X, X, X, X, X, X, X], | |
[X, X, X, X, X, X, X, X, X], | |
[X, O, O, X, X, X, O, O, X], | |
[X, X, X, O, X, O, X, X, X], | |
[X, X, X, B, B, B, X, X, X], | |
[X, X, X, B, B, B, X, X, X], |
OlderNewer