Skip to content

Instantly share code, notes, and snippets.

View dunyakirkali's full-sized avatar
🎸
Jammin'

Dunya Kirkali dunyakirkali

🎸
Jammin'
View GitHub Profile
@dunyakirkali
dunyakirkali / main.rb
Last active March 23, 2020 21:01
4a073384adb9_hello_world
# The famous Hello World
# Program is trivial in
# Ruby. Superfluous:
#
# * A "main" method
# * Newline
# * Semicolons
#
# Here is the Code:
node('ios') {
stage('Prepare') {
checkout scm
}
stage('Unit Test') {
sh 'fastlane test_unit'
}
stage('Build') {
sh 'fastlane develop'
}
@dunyakirkali
dunyakirkali / next.exs
Created January 20, 2018 10:16 — forked from wisq/next.exs
defmodule StrNext do
@character_ranges [
{'A', 'Z'},
{'a', 'z'},
{'0', '9'}
]
@characters Enum.map(@character_ranges, fn {a, z} ->
hd(a)..hd(z)
|> Enum.to_list()
end)