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
static public class A_Z_cycle | |
{ | |
static public Func<char> Next = () => { | |
const char a='A', b='Z', c=(char)(b-a+1); | |
int n=-1; | |
return (Next=(()=>(char)(a + (n=(n+1)%c))))(); | |
}; | |
} |
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
new folder on desktop, named: | |
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} | |
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
(defun exec-path-search (regexp) | |
(flatten (remove-if-not 'identity | |
(mapcar (lambda (dir) (directory-files dir t regexp)) | |
exec-path)))) | |
(defun load-path-search (&optional regexp full-path) | |
(unless regexp (set 'regexp "elc?$")) | |
(uniq (sort (flatten | |
(remove-if-not 'identity | |
(mapcar (lambda (dir) (directory-files dir full-path regexp)) load-path))) |
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
(add-to-list 'inf-ruby-implementations '("pry" . "pry")) | |
(setq inf-ruby-default-implementation "pry") | |
(setq inf-ruby-first-prompt-pattern "^\\[[0-9]+\\] pry\\((.*)\\)> *") | |
(setq inf-ruby-prompt-pattern "^\\[[0-9]+\\] pry\\((.*)\\)[>*\"'] *") |
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
// from http://maettig.com/code/css/text-shadow.html | |
var handle = false; | |
var textBrightness = 50; | |
var fireCount = 6; | |
var fireDelta = new Array(); | |
var step = 0; | |
var angle = 0; | |
var radius = 6; | |
function animate() |
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
#http://timelessrepo.com/chained-comparisons | |
[:<, :>, :<=, :>=].each do |operator| | |
[Float, Fixnum, Comparable].each do |klass| | |
klass.class_eval { | |
alias_method("__#{operator}__", operator) | |
define_method(operator) do |operand| | |
send("__#{operator}__", operand) and operand | |
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
class Class | |
def method_to_instance(*names) | |
names.each{|name| | |
meth = method(name) | |
self.send(:define_method, name, meth.to_proc) | |
} | |
end | |
end | |
NewerOlder