in Domine sola fidi, et mala omnis acqui vincit.
Faith > Flag > Family > Filesystems
-
i have a restraining order
- Pacific Crusader States (Eve of the 9th crusade)
- http://tinyurl.com/Regarding-Outre-Mer
- https://orcid.org/0009-0003-1811-0136
- http://tinyurl.com/EverySocialProfile
- http://tinyurl.com/ThisIsFunnyAndGodBlessAmerica
- http://tinyurl.com/trigger-warning-all-scripture
Highlights
- Pro
Pinned Loading
-
roman-with-explanation.rb
roman-with-explanation.rb 1class Integer # so that 3.to_roman() will return a result
2Roman = 'IVXLCDM' # cardinally ordered roman numerals
3def to_roman
4raise "Number too large" if self > 4999 # string does not contain characters for > 4999
5n, nsize = self, Math.log10(self).to_i # n = this number, nsize = number of digits in this number
-
hundredsgolf.rb
hundredsgolf.rb 1#f '123456789',100
23def f(d,t)
4a=[]
50.upto(3**(d.size-1)).map do |n|
-
-
inverse_to_proc.rb
inverse_to_proc.rb 1class Symbol
2def ~@
3_bound = binding
4return ->(arg) {_bound.send(self, arg)}
5end
-
conway.rb
conway.rb 1# Cheaty idea
2class Conway
3def initialize(height, width)
4@height = height
5@width = width
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.