View process-mysqldump.c
// gcc -O2 -Wall -pedantic process-mysqldump.c -o process-mysqldump | |
// Usage: cat dump.sql | process-mysqldump | |
// Or : process-mysqldump dump.sql | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
#include <string.h> | |
#define BUFFER 100000 |
View GetModuleBaseAddress.cpp
#include <iostream> | |
#include <windows.h> | |
#include <Tlhelp32.h.> | |
using namespace std; | |
int main() | |
{ | |
HANDLE h= CreateToolhelp32Snapshot(8, 780); | |
if (h == INVALID_HANDLE_VALUE) { | |
throw std::runtime_error("CreateToolhelp32Snapshot failed, returning INVALID_HANDLE_VALUE"); |
View sh-ignore.js
/* | |
forked from Mr. Pengi's, and added fallback to cookies if localStorage is not available, | |
also fixed a few exceptions that would rise if localStorage is not available | |
*/ | |
var ignores = null; | |
var replacementtext = "<td align='left' bgcolor='444444'>This post has been ignored</td>"; | |
$(document).ready(function () { | |
getIgnores(); | |
hideIgnores(); |