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
#include <stdio.h> | |
#include <stdlib.h> | |
unsigned int decode_shl(unsigned int var, unsigned int bit, unsigned int key); | |
unsigned int decode_shr(unsigned int var, unsigned int bit, unsigned int key); | |
int main(int argc, char *argv[]) | |
{ | |
unsigned int var; | |
FILE *src_fp, *dest_fp; |
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
#include <stdio.h> | |
char buf[] = { | |
0x2A, 0x37, 0x74, 0x35, 0x7C, 0x2E, 0x67, 0x3E, 0x77, 0x3C, 0x62, 0x24, 0x3E, 0x2E, | |
0x2E, 0x66, 0x3D, 0x7D, 0x3E, 0x25, 0x2F, 0x31, 0x31, 0x35, 0x3F, 0x48, 0x2F, 0x53, | |
0x54, 0x55, 0x56, 0x54, 0x37, 0x5E, 0x5D, 0x33, 0x42, 0x1D, 0x64, 0x9 , 0x70, 0xFF, | |
0xFF, 0xFF, 0xFF, 0xFF | |
}; | |
char key[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |
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
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <algorithm> | |
#include <chrono> | |
#include <cstdint> | |
std::vector<int> buf; | |
std::uintmax_t answer = 0; |
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
#!/bin/sh | |
# PROVIDE: mc-servers | |
# REQUIRE: LOGIN | |
. /etc/rc.subr | |
name="mc_servers" | |
rcval=mc_servers_enable |
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 (rot_l l) | |
(append (cdr l) (list (car l)))) | |
(define (rot_r l) | |
(reverse (rot_l (reverse l)))) | |
(define (forward_generation g) | |
(map (lambda (m n) | |
(map (lambda (m n) | |
(if (= n 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
┌───────────┐ | |
│┏━━━━━━━━━┓│ | |
│┃ ┃│ | |
│┃ ┃│ | |
│┃ ___ ┃│ | |
│┃ _ / _ ` ┃│ | |
│┃│ \/ / ││ ┃│ | |
│┃│ \ / ─────┘\ | |
│┗┷┷/ , \ k y u b u n s > | |
└─┬ / /\ \_.───┐/ |
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
func Init(cfg : Kuin@CCfg) | |
do cfg.Title :: "Life Game for Kuin" | |
do cfg.FullScr :: false | |
do cfg.PadNum :: 1 | |
do cfg.WaitTime :: 60 | |
end func | |
func Main() | |
var WIDTH : int :: 168 | |
var HEIGHT : int :: 96 |
NewerOlder