Rails Core

Parameterize with options to preserve case of string.

Updated `parameterize` to preserve the case of a string, optionally.
Example:
parameterize('Tom E. Knuth', separator: '_') => 'tom_e_knuth'
parameterize('Tom E. Knuth', preserve_case: true) => 'Tom-E-Knuth'
view raw rails.txt hosted with ❤ by GitHub

Tensorflow Resources

Curated Tensorflow code resources to help you get started with Deep Learning.

from __future__ import print_function
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
# Start tf session
sess = tf.Session()
print(sess.run(hello))
view raw readme.py hosted with ❤ by GitHub

Watchman

Ping file system events to any API.

watchman sync
* Listening to source (CTRL+C to quit)
watchman worker
* Receiving events (CTRL+C to quit)
view raw watchman.txt hosted with ❤ by GitHub

Redmon

Quick and easy tool to monitor your Redis keys.

>> redmon monitor -k sample
>> * Watching 'sample' every 1.0 seconds (Press CTRL+C to quit)
>> 18:30:08 - 5
>> 18:30:09 - 5
>> 18:30:10 - 5
view raw redmon.txt hosted with ❤ by GitHub

Alchy

Play Alchemy right from your terminal!

To show your elements,

alchy show

To combine two elements,

alchy combine air air

If the new element exits, you'll get a prompt,

New element, wind 🎉

Else, try again! :)

view raw alchy.md hosted with ❤ by GitHub

Synclady

Syncs local file changes to a server over RSync via SSH.

synclady pull
* Receiving file list from server
* Pulling from server
synclady sync
* Listening to source (CTRL+C to quit)
view raw synclady.txt hosted with ❤ by GitHub
smile