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
class Say | |
def hello to='Minion' | |
#sc say_hello(to) | |
end | |
end | |
puts Say.new.hello | |
__END__ | |
sc say_hello String: String |
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
/* | |
* Draw an ASCII-Art representing the fingerprint so human brain can | |
* profit from its built-in pattern recognition ability. | |
* This technique is called "random art" and can be found in some | |
* scientific publications like this original paper: | |
* | |
* "Hash Visualization: a New Technique to improve Real-World Security", | |
* Perrig A. and Song D., 1999, International Workshop on Cryptographic | |
* Techniques and E-Commerce (CrypTEC '99) | |
* sparrow.ece.cmu.edu/~adrian/projects/validation/validation.pdf |