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 <SDL/SDL.h> | |
int main(int argc, char * argv[]) | |
{ | |
// Initialize SDL with video | |
SDL_Init(SDL_INIT_VIDEO); | |
// Create a window with SDL |
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
// ==UserScript== | |
// @name Stack Experiment Off | |
// @author CertainPerformance | |
// @description Turns off the voting experiment - shows true vote totals on pageload and after voting | |
// @description https://meta.stackoverflow.com/questions/390178/new-popup-message-when-voting-on-a-question | |
// @version 1.1.1 | |
// @include /^https://stackoverflow\.com/questions/(?:\d+|tagged|search)/ | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== |