Skip to content

Instantly share code, notes, and snippets.

@wongjustin99
wongjustin99 / slack_pac
Created March 29, 2018 03:43
Slack domains for proxy PAC file
@@||slack-msgs.com^$document
@@||slack.com^$document
@wongjustin99
wongjustin99 / flatten.rb
Created January 7, 2018 21:37
Flatten array in Ruby
class RecursiveFlattenMethod
attr_reader :result
def flatten_nested_arrays(arr, result=[])
arr.each do |element|
if element.class != Array
result << element
else
flatten_nested_arrays(element, result)
end
@wongjustin99
wongjustin99 / README.md
Last active December 29, 2015 13:59 — forked from xoebus/README.md

imsg

Send iMessages from the Command Line


Install

Just run the following in your shell: