Skip to content

Instantly share code, notes, and snippets.

View makokal's full-sized avatar
🤖

Billy makokal

🤖
View GitHub Profile
@makokal
makokal / erb_2_haml.sh
Created March 15, 2012 02:01
script to convert erb to HAML for a whole project
#!/bin/bash
for i in `find . -name '*.erb'` ; do
html2haml $i `echo $i | sed 's/\.erb/\.haml/'`
done
find . -name '*.erb' -exec rm \{\} \;
@makokal
makokal / rhtml_clean
Created February 13, 2012 18:32
Rename all .rhtml file in a folder to .html.erb or any other format
for i in ./*rhtml*;do mv -- "$i" "${i//rhtml/html.erb}";done
@makokal
makokal / slist.cpp
Created February 6, 2012 18:24
Simple cycle check in singly linked list (was part of SDE code interview)
/**
* Simple Singly Linked List
* Demonstrating check for cycles by remembering all visited nodes
*
* Using BOOST::Unordered_map as a hash table implementation
*
* \author Billy Okal
*/