I hereby claim:
- I am tbjers on github.
- I am tbjers (https://keybase.io/tbjers) on keybase.
- I have a public key whose fingerprint is 6AA8 0D1F 9E75 594A 9C1B CFE2 15B5 3F48 CECB 02C4
To claim this, I am signing this object:
| module AttributeRequirements | |
| extend ActiveSupport::Concern | |
| SQL_TYPE_MATCHERS = { | |
| /^character varying/ => String, | |
| /^text/ => String, | |
| /^enum/ => String, | |
| /^timestamp/ => DateTime, | |
| /^integer/ => Integer, |
I hereby claim:
To claim this, I am signing this object:
meteor-base
`-webapp
`-boilerplate-generator
`-ui
`-blaze
`-jquery
I guess this comes back to the "DOM backend" issue, huh?
| Original recipe from Chew Out Loud has been modified to use vegetarian ingredients. | |
| http://www.chewoutloud.com/2015/01/27/cheesy-tater-tot-breakfast-bake/ | |
| Servings: 5-6 | |
| INGREDIENTS | |
| 5 slices of Morningstar Bacon | |
| 1 bag of Morningstar Original Crumbles | |
| 3 cups of Four Cheese Mexican Blend grated cheese |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Flatiron Example</title> | |
| </head> | |
| <body> | |
| <div id="body"></div> | |
| </body> | |
| </html> |
| language: ruby | |
| rvm: | |
| - 1.9.3 | |
| script: rake generate | |
| after_success: bash post_build.sh |
| { | |
| "font_size": 13, | |
| "tab_size": 2, | |
| "translate_tabs_to_spaces": true, | |
| "use_tab_stops": false, | |
| "word_wrap": false, | |
| "highlight_line": true, | |
| "caret_style": "phase", | |
| "match_brackets_angle": true, | |
| "default_line_ending": "unix", |
| [alias] | |
| st = status | |
| ci = commit | |
| br = branch | |
| co = checkout | |
| df = diff | |
| sync = !sh -c 'git pull && git diff --quiet HEAD || (git commit $1 && git push)' - | |
| lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
| edit-unmerged = "!f() { git ls-files --unmerged | cut -f2 | sort -u ; }; sublime_text `f`" | |
| add-unmerged = "!f() { git ls-files --unmerged | cut -f2 | sort -u ; }; git add `f`" |
| #!/bin/sh | |
| available=$(free --mega -tw | grep "Total:" | awk '{print $4}') | |
| ps -ylC httpd --sort:rss | awk -v avail="$available" '{ s += $8; } END { print "Average Size:", s/(NR-1)/1024, "MB,", NR-1, "Processes, Total usage:", (s/(NR-1)/1024)*(NR-1), "MB, Max Servers:", avail/(s/(NR-1)/1024) }' |