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
Verifying that +enechorion is my blockchain ID. https://onename.com/enechorion |
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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'redcarpet' | |
require 'albino' | |
class String | |
def make_semantic | |
self.downcase.strip.gsub(' ','-').gsub(/[^\w-]/,'') | |
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
tipBox.scan(className,options) |
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 MainWindow(QtGui.QMainWindow): | |
def __init__(self,parent=None): | |
super(MainWindow,self).__init__(parent) | |
QtGui.QMainWindow.__init__(self) | |
self.ui = uic.loadUi('main.ui', self) | |
app = QtGui.QApplication(sys.argv) | |
main = MainWindow() | |
main.show() |
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
var toolTip = function(){ | |
var _privateProp = 'foo', | |
_privateMethod = function(){ | |
return 'bar'; | |
}, | |
publicMethod = function(){ | |
return _privateProp + _privateMethod(); | |
}; | |
return { |
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
//Actionscript 3 - Method Definitions | |
//single argument methods | |
public function doubleNumber(double: number):double; | |
//multiple argument methods | |
public function multiplyNumberByAnotherNumber(double: number1,double: number2):double; |
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
(function() { | |
var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; | |
object(function() { | |
this.prop = 'foo'; | |
return this.bar = __bind(function(newProp) { | |
return this.prop = newProp; | |
}, this); | |
}); | |
}).call(this); |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Will McKenzie<www.oinutter.co.uk> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |