Skip to content

Instantly share code, notes, and snippets.

View igorshapiro's full-sized avatar

Igor Shapiro igorshapiro

  • Lemonade
  • Tel Aviv, Israel
View GitHub Profile
File.open("words.txt").each_line {|l|
l.split(" ").each{|w|
puts w
}
}
@igorshapiro
igorshapiro / gist:1284563
Created October 13, 2011 15:41
Licensario SDK Integration for Windows Forms & WPF
// You should add a reference to LicensarioSDK.dll
Licensing.GetLicense("productFeatures/71c0d84d-6ca5-41fd-8ce0-b7dec345953b");
(function() {
const DELAY = 250
function delay(ms) {
return new Promise(function(resolve, reject) {
setTimeout(resolve, ms)
})
}
function doIt() {