This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// dllmain.cpp : Defines the entry point for the DLL application. | |
#define WIN32_LEAN_AND_MEAN | |
#include <windows.h> | |
HINSTANCE g_hInstance = NULL; | |
//Game.exe+113F0 - 55 - push ebp | |
// int __cdecl sub_4113F0(LPCSTR lpText) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iomanip> | |
#include <type_traits> | |
#include <sstream> | |
#include <boost/tti/has_member_function.hpp> | |
struct int_size{ | |
int size() const { return 42; }; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdlib> | |
#include <cstdint> | |
#include <ctime> | |
#include <algorithm> | |
#include <deque> | |
#include <functional> | |
#include <iomanip> | |
#include <iostream> | |
#include <list> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if __FILE__ == $0 | |
ip = ARGV[0] | |
if not ip =~ /^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$/ | |
$stderr.puts "'#{ip}' is not a valid IP" | |
exit | |
end | |
`/etc/init.d/denyhosts stop` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>KrzaQ subscriptions in feedly Cloud</title> | |
</head> | |
<body> | |
<outline text="all" title="all"> | |
<outline type="rss" text="Growing up" title="Growing up" xmlUrl="http://marcoarena.wordpress.com/feed/" htmlUrl="https://marcoarena.wordpress.com"/> | |
<outline type="rss" text="xorl %eax, %eax" title="xorl %eax, %eax" xmlUrl="https://xorl.wordpress.com/feed/" htmlUrl="https://xorl.wordpress.com"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cassert> | |
#include <climits> | |
#include <cstdlib> | |
#include <cstring> | |
#include <cctype> | |
#include <algorithm> | |
#include <array> | |
#include <atomic> | |
#include <chrono> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cassert> | |
#include <climits> | |
#include <csetjmp> | |
#include <cstdlib> | |
#include <cstring> | |
#include <cctype> | |
#include <algorithm> | |
#include <array> | |
#include <atomic> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 id="test"> test</h1> | |
<h2 id="bleh"> bleh</h2> | |
<pre class="prettyprint"><code>foo | |
foo bar baz | |
class huj {}; | |
</code></pre> | |
<p>inline code: <code class="prettyprint">inline code</code> | |
</p> | |
[Finished in 0.3s] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import std.datetime; | |
import std.string; | |
class Author | |
{ | |
string name; | |
string email; | |
string hashedPassword; | |
} |
OlderNewer