Skip to content

Instantly share code, notes, and snippets.

View moeabdol's full-sized avatar
🎯
Focusing

Mohammed Saed moeabdol

🎯
Focusing
View GitHub Profile
@moeabdol
moeabdol / README.md
Last active July 25, 2017 18:07
CSTS Showcase

About This Document

In this document I will showcase code excerpts extracted from a toy project of mine [CSTS][1]. The purpose of this document is to demonstrate coding styles, techniques, and best practices I follow when developing Rails applications.

Content

@moeabdol
moeabdol / flatten.rb
Last active July 6, 2017 13:27
flatten arbitrarily nested array
# This method should return [1, 2, 3, 4]
a = [[1, 2, [3]], 4]
eval "[#{a.to_s.delete('[]')}]"