Skip to content

Instantly share code, notes, and snippets.

View MBO's full-sized avatar

Mirosław Boruta MBO

  • Lędziny, Poland
View GitHub Profile
@MBO
MBO / proline.js
Created March 19, 2013 12:28
Userscript for Opera, to remove autofocus in http://proline.pl shop
if (location.hostname.indexOf('proline.pl') != -1) {
window.opera.addEventListener('BeforeScript', function(e) {
e.element.text = e.element.text.replace(/\.(focus\s*\(\))/g, "/* $1 -- commented by userscript */");
}, false);
}
#!/usr/bin/env ruby
def flood(*heights)
stack = []
max = 0
volume = 0
heights.each do |height|
level = [max, height].min
count = 0
@MBO
MBO / 0_reuse_code.js
Created January 2, 2014 14:43
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console