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
From: http://www.mscs.dal.ca/~selinger/md5collision/ | |
Block 1: | |
d131dd02c5e6eec4693d9a0698aff95c 2fcab58712467eab4004583eb8fb7f89 | |
55ad340609f4b30283e488832571415a 085125e8f7cdc99fd91dbdf280373c5b | |
d8823e3156348f5bae6dacd436c919c6 dd53e2b487da03fd02396306d248cda0 | |
e99f33420f577ee8ce54b67080a80d1e c69821bcb6a8839396f9652b6ff72a70 | |
Block 2: | |
d131dd02c5e6eec4693d9a0698aff95c 2fcab50712467eab4004583eb8fb7f89 |
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
86 66 6 74 < | |
87 354 ì 76 > | |
96 55 - 57 / | |
97 170 x 134 \ | |
98 343 ã 34 ^\ | |
99 72 : 307 Ç | |
100 23 ^S 373 û | |
101 205 … 307 Ç | |
102 27 ^W 323 Ó | |
103 56 . 252 ª |
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
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\conemu1] | |
@="Open ConEmu" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\conemu1\command] | |
@="C:\\Program Files\\ConEmu\\ConEmu64.exe" |
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
http://visualgo.net/ |
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
// Number Guessing Game | |
// Version 1.000 | |
// By: Mohammad | |
#include <iostream> | |
#include <string> | |
#include <cstdlib> | |
#include <ctime> | |
#include <stdlib.h> |
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
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* |
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
/* | |
* Question/Challenge from: http://www.thousandtyone.com/blog/EasierThanFizzBuzzWhyCantProgrammersPrint100To1.aspx | |
* | |
* Task: Print 100 to 1. | |
* Start code with "for(int i=0;". | |
* You cannot write anything before "for(int i=0;". | |
* You cannot use two loops. | |
* | |
* Time to complete: 30 seconds | |
*/ |
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 <string> | |
int main() | |
{ | |
for (int i = 1; i <= 100; ++i) { | |
std::string ans; | |
ans += (i % 3 == 0) ? "Fizz" : ""; |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
;Multimedia Keys for Ducky Shine 3 | |
;Open selected file using notepad++ | |
SC121::run % "D:\Program Files (x86)\Notepad++\notepad++.exe """ gst() """" |
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
"Rocket Pop" | |
{ | |
"paint" "478" | |
} | |
"Bunsen Burner" | |
{ | |
"paint" "479" | |
} | |
"Ranger" | |
{ |
OlderNewer