I hereby claim:
- I am hookdump on github.
- I am ifreiberg (https://keybase.io/ifreiberg) on keybase.
- I have a public key ASA5MlmvVRCn3FElHSvdAakt1EVRMTU31w59IEWp5auLpwo
To claim this, I am signing this object:
| ➜ salemail git:(master) jitsu snapshots create | |
| warn: | |
| warn: Nodejitsu has been acquired by GoDaddy | |
| warn: | |
| warn: Read more at: https://nodejitsu.com/godaddy | |
| warn: Or run: jitsu godaddy | |
| warn: | |
| info: Welcome to Nodejitsu akerr | |
| info: jitsu v0.15.0, node v0.10.35 | |
| info: It worked if it ends with Nodejitsu ok |
| ➜ salemail git:(master) ✗ npm install | |
| > [email protected] install /Users/ig/dev/salemail/node_modules/time | |
| > node-gyp rebuild | |
| CXX(target) Release/obj.target/time/src/time.o | |
| SOLINK_MODULE(target) Release/time.node | |
| SOLINK_MODULE(target) Release/time.node: Finished | |
| > [email protected] install /Users/ig/dev/salemail/node_modules/bcrypt |
| ➜ salemail git:(master) jitsu snapshots create | |
| warn: | |
| warn: Nodejitsu has been acquired by GoDaddy | |
| warn: | |
| warn: Read more at: https://nodejitsu.com/godaddy | |
| warn: Or run: jitsu godaddy | |
| warn: | |
| info: Welcome to Nodejitsu akerr | |
| info: jitsu v0.15.0, node v0.10.35 | |
| info: It worked if it ends with Nodejitsu ok |
| ~/pyglui(master ✔) sudo python setup.py install | |
| generating glew.pxd based on '/usr/include/GL/glew.h' | |
| missing cimport in module 'pyglui.cygl': pyglui/ui.pyx | |
| missing cimport in module 'pyglui.cygl': pyglui/graph.pyx | |
| Compiling pyglui/ui.pyx because it changed. | |
| Compiling pyglui/graph.pyx because it changed. | |
| Compiling pyglui/cygl/utils.pyx because it changed. | |
| Compiling pyglui/cygl/shader.pyx because it changed. | |
| Compiling pyglui/pyfontstash/fontstash.pyx because it changed. | |
| Cythonizing pyglui/cygl/shader.pyx |
| #!/usr/bin/env bash | |
| while [ 1 ]; do | |
| RESP=$(curl --silent 'http://www.dota2.com/686') | |
| if [[ $RESP != *"<title>Dota 2 - 6.86 Coming Soon</title>"* ]]; then | |
| echo "***** PATCH OUT HYPE ******" | |
| exit | |
| else | |
| echo "not out" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env node | |
| // Save hook under `project-root/hooks/before_prepare/` | |
| // | |
| // Don't forget to install xml2js using npm | |
| // `$ npm install xml2js` | |
| var fs = require('fs'); | |
| var xml2js = require('xml2js'); |
| import { Component, Input, ViewChild, AfterViewInit, ElementRef } from '@angular/core'; | |
| import { Router } from '@angular/router'; | |
| import { markdown } from 'markdown'; | |
| @Component({ | |
| selector: 'markdown', | |
| template: `<div [innerHtml]="html" #root></div>` | |
| }) | |
| export class MarkdownComponent implements AfterViewInit { | |
| @ViewChild('root') root: ElementRef; |
| var Twit = require('twit') | |
| var T = new Twit({ | |
| consumer_key: '***', | |
| consumer_secret: '***', | |
| access_token: '***', | |
| access_token_secret: '***', | |
| timeout_ms: 60*1000, | |
| }) |