Skip to content

Instantly share code, notes, and snippets.

View maxgalbu's full-sized avatar

Massimo Galbusera maxgalbu

  • hotelscan.com
  • Switzerland
View GitHub Profile
View Hamachi-QNAP.md

This tutorial assumes you know how vim works. Please google for it. If it turns out too hard for too many i'll write the commands to use it here. To get this to work, the easiest way was to install a debian chroot. This means you're basicly running a debian environment on your qnap.

The chroot setup tutorial is based on nemozny wonderful tutorial on http://forum.qnap.com/viewtopic.php?f=91&t=20174&p=223728 I had to modify some steps of this tutorial as this will be harmful to your qnap if you do it as listed there. This is due to /opt/ that is mounted on a 32 mb ramfs, and not your harddisk. You'll just run out of space, and ipkg's will mess up. So i copied the full tutorial here with the needed modifications:

I made a share called "Storage" on my harddrive. You could name it anything you want. Just modify the paths accordingly.

@maxgalbu
maxgalbu / backup.python2.py
Last active August 16, 2020 10:05
Updated API version + Python 2 version of https://stackoverflow.com/a/34469893/2265500
View backup.python2.py
import os
import errno
from subprocess import call
from gitlab import Gitlab
def mkdir_p(path):
try:
os.makedirs(path)
except OSError as exc: # Python >2.5
if exc.errno == errno.EEXIST and os.path.isdir(path):
View Readme.md

To use it, run these commands:

javac SimpleStringEncrypter.java
java SimpleStringEncrypter
View CliOutput.php
<?php
namespace Vendor\CliOutput;
class CliOutput
{
const BLACK = 'black';
const DARK_GRAY = 'dark_gray';
const BLUE = 'blue';
const LIGHT_BLUE = 'light_blue';
View gist:975295d07809203bdff69a40f0315910
images = {
"tor": "http://i.imgur.com/UUuW9Qh.png",
"sas": "http://i.imgur.com/Uo5yXYs.png",
"mia": "http://i.imgur.com/ySTYXC9.png",
"was": "http://i.imgur.com/z10kI4z.png",
"uta": "http://i.imgur.com/ML08bL3.png",
"sac": "http://i.imgur.com/gqkz8M2.png",
"por": "http://i.imgur.com/1Xu5aos.png",
"phx": "http://i.imgur.com/zjzqcss.png",
"orl": "http://i.imgur.com/tA6HPki.png",
@maxgalbu
maxgalbu / skygo.js
Created October 21, 2016 23:47
Greasemonkey/tampermonkey plugin that gets the imdb rating for the movies in the SkyGo.it pages
View skygo.js
// ==UserScript==
// @name New ES6-Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description shows how to use babel compiler
// @author You
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser-polyfill.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.min.js
// @match http://*/*
// ==/UserScript==
View userscript-skygo.js
// ==UserScript==
// @name New ES6-Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description shows how to use babel compiler
// @author You
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser-polyfill.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.6.15/browser.min.js
// @match http://*/*
// ==/UserScript==
@maxgalbu
maxgalbu / index.js
Created November 13, 2015 10:47
requirebin sketch
View index.js
// require() some stuff from npm (like you were using browserify)
// and then hit Run Code to run it on the right
var bluebird = require('bluebird');
var promise = bluebird.resolve(true);
promise.then(function() {
return new bluebird(function(resolve, reject) {
console.log("test1");
setTimeout(function() {
View UITableView+RemoveSeparatorMargin.h
@interface UITableView (RemoveSeparatorMargin)
- (void) removeCellSeparatorMargin;
@end
View NSObject+Debounce.h
@interface NSObject (Debounce)
- (void)debounce:(SEL)action delay:(NSTimeInterval)delay;
@end