Skip to content

Instantly share code, notes, and snippets.

View gnysek's full-sized avatar
💭
Kuwabara! Kuwabara!

gnysek gnysek

💭
Kuwabara! Kuwabara!
View GitHub Profile
@gnysek
gnysek / SyntaxHighlighter.cs
Created March 31, 2015 13:28
SyntaxHighlighter.cs
using System.Drawing;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Xml;
using System.IO;
using System;
namespace FastColoredTextBoxNS
{
public class SyntaxHighlighter: IDisposable
@gnysek
gnysek / to_file.sh
Created February 20, 2015 10:11
save output to file as sudo
sudo sh -c 'ls -hal /root/ > /root/test.out'
@gnysek
gnysek / moh_en_lyrics
Created February 13, 2015 10:39
Medal of Honor Underground - Each Night He Comes Home To Me
Here's the school yard where we'd play
When we were younger years before today
Laughing without a care to chase away
We met and vowed our love would never stray
I knew someday he would be
The one to come home to me
Here's the chapel where we wed
I won't forget the loving words we said
Though time were tough and many tears were shed
@gnysek
gnysek / moh_ger_lyrics
Created February 13, 2015 10:38
Medal of Honor Underground - Er Lasst Mich Niemals Allein
[Ansager:]
Ständig bekommen wir neue Ansagen für Kompositionen von Michael Giacchino, der, wie wir gerade erfahren haben, vor kurzem zu den Alliierten übergelaufen ist! Die Platte spielen wir jetzt für alle Liebenden, die zur Zeit voneinander getrennt sind.
...
Auf diesem Schulhof spielten wir
als wir sehr jung waren, er war fünf, ich vier.
Lachten und sangen händehaltend hier,
Ewige Liebe, die versprach er mir.
Es sollte nicht anders sein:
public virtual void BuildGroups() {
if (this.Columns.Count > 0) {
this.BuildGroups(this.PrimarySortColumn, this.PrimarySortOrder == SortOrder.None ? SortOrder.Ascending : this.PrimarySortOrder);
}
}
@gnysek
gnysek / stopUnderlyingEvents.js
Last active December 14, 2015 04:39
stop events when element is on div and both have same (click) events
.click(function(e){
e.stopPropagation()
});