This file contains hidden or 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
| diff --git a/sha1dc/sha1.c b/sha1dc/sha1.c | |
| index 3a1735e..67cf753 100644 | |
| --- a/sha1dc/sha1.c | |
| +++ b/sha1dc/sha1.c | |
| @@ -1829,25 +1829,9 @@ int SHA1DCFinal(unsigned char output[20], SHA1_CTX *ctx) | |
| ctx->buffer[63] = (unsigned char)(total); | |
| sha1_process(ctx, (uint32_t*)(ctx->buffer)); | |
| output[0] = (unsigned char)(ctx->ihv[0] >> 24); | |
| - output[1] = (unsigned char)(ctx->ihv[0] >> 16); | |
| - output[2] = (unsigned char)(ctx->ihv[0] >> 8); |
This file contains hidden or 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 Google U.G.E. | |
| // @version 1.1 | |
| // @grant none | |
| // @include https://translate.google.com/* | |
| // ==/UserScript== | |
| window.addEventListener('load', function() { | |
| var btn = document.createElement('div'); | |
| btn.setAttribute('class', 'jfk-button-standard jfk-button-narrow jfk-button'); |
This file contains hidden or 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
| module rainbow ( | |
| input clk, | |
| output red, | |
| output grn, | |
| output blu, | |
| ); | |
| reg [26:0] counter; | |
| wire [11:0] t; | |
| wire [11:0] cmp; |
This file contains hidden or 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 All GauGAN Labels | |
| // @version 1 | |
| // @grant none | |
| // @include http://34.216.122.111/gaugan/ | |
| // ==/UserScript== | |
| function selectCategoryAll() | |
| { | |
| var palette = document.getElementById('palette'); |
This file contains hidden or 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
| #define _GNU_SOURCE | |
| #include <stdio.h> | |
| #include <errno.h> | |
| #include <pthread.h> | |
| #include <getopt.h> | |
| #include <SDL2/SDL.h> | |
| #define DEFAULT_ITER_COUNT 768 | |
| #define OPT_CLEAR 1 |
This file contains hidden or 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
| /* Requires raylib (compile with -lraylib) */ | |
| #include <raylib.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define WIDTH 400 | |
| #define HEIGHT 240 | |
| #define SAFE_AREA 50 | |
| #define BASE_COUNT 500 | |
| #define PER_LEVEL 100 |
This file contains hidden or 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
| /* Compile with -lGL -lfltk -lfltk_gl */ | |
| #include <Fl/Fl.h> | |
| #include <Fl/Fl_Window.h> | |
| #include <Fl/Fl_Box.h> | |
| #include <Fl/Fl_Value_Input.h> | |
| #include <Fl/Fl_Value_Output.h> | |
| #include <Fl/Fl_Dial.h> | |
| #include <Fl/Fl_Button.h> | |
| #include <Fl/Fl_Gl_Window.h> |
This file contains hidden or 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
| local srb2_proto = Proto('SRB2', 'Sonic Robo Blast 2') | |
| srb2_proto.prefs.validate_checksum = Pref.bool('Validate checksums', false, 'Whether to validate the packet checksum') | |
| local function add_fields(...) | |
| for i,v in ipairs({...}) do | |
| table.insert(srb2_proto.fields, v) | |
| end | |
| end |
This file contains hidden or 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
| // Created by flarn2006. WTFPL | |
| // Compile with gcc, -fPIC -shared | |
| #include <stdlib.h> | |
| static int n = 0; | |
| static int m = 0; | |
| static int count() | |
| { |
This file contains hidden or 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 flask | |
| from flask_cors import CORS | |
| flask_app = flask.Flask(__name__) | |
| CORS(flask_app) | |
| with open('recipes.txt', 'a') as f: | |
| @flask_app.route('/recipe', methods=['POST']) | |
| def flask_recipe(): | |
| text = flask.request.data.decode('utf-8') |