Discover gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is gist. | |
There are many like it, but this one is mine. | |
It is my life. | |
I must master it as I must master my life. | |
Without me gist is useless. | |
Without gist, I am useless. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def generate_password(length=6) | |
chars = 'abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNOPQRSTUVWXYZ23456789' | |
password = '' | |
length.times { password << chars[rand(chars.length)] } | |
password | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
testing gist | |
omg this rocks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def what_is_gist | |
"I don't know wtf it is." | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer dignissim aliquet justo. Proin sodales luctus lectus. In hac habitasse platea dictumst. Praesent id nisl. Donec ut ipsum sed arcu sodales interdum. Aenean bibendum libero vel justo. Quisque id ligula. Mauris euismod, augue vitae convallis dapibus, quam tellus laoreet lorem, id cursus arcu massa a erat. Aliquam tristique pellentesque nisi. Vivamus mollis, nisi in nonummy semper, massa lectus ullamcorper erat, malesuada egestas nisl odio a metus. Vivamus facilisis elit id odio. Cras ac leo a orci egestas egestas. Nam orci libero, faucibus a, scelerisque vel, placerat nec, ligula. Cras velit. Nullam vestibulum erat ut odio. Duis eu odio. | |
Donec sagittis. Sed vulputate accumsan nisl. Donec magna ipsum, mattis in, gravida a, hendrerit id, tellus. Aliquam mattis, dolor id placerat hendrerit, nibh est faucibus mi, a condimentum turpis dolor eget nibh. Phasellus ornare nunc eu diam. Nam commodo sodales felis. Praesent imperdiet tellus luctus elit. Se |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%h1.title RetireHQ Privacy Policy | |
#terms.generic | |
%p Last updated: July 21, 2008 | |
%h2 Data Collected by the RetireHQ Website | |
%p Your privacy is of paramount importance to us. We believe that by respecting your privacy we will earn the opportunity to build a lasting relationship with your business, your clients and your staff. Any information you provide to us will only be used for the purpose for which it was submitted. We collect your information primarily for contact and billing purposes. Under no circumstances will your information be shared with, or sold to, or disclosed to any third party, except where required by law. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this is just a test... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nickname = 'ihower' | |
1.upto(nickname.length-2) { |i| nickname[i] = '*' } | |
nickname # 'i****r' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def foo | |
puts 'foo' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def what_is_gist | |
"A bad ass version-able pastebin" | |
end |