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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout somewhen, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
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
var left, right, toggle, n, i; | |
begin | |
right := 1; | |
left := 0; | |
toggle := 0; | |
i := 0; | |
read n; |
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
const X = 15, L = 0, H = 1; | |
var a; | |
begin | |
a := 1; | |
while a <> X do begin | |
read a; | |
if a < X then begin |
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
#!/usr/bin/env python | |
import tkinter as tk | |
import qrcode as qr | |
import sys | |
root = tk.Tk(); | |
root.withdraw(); | |
image = qr.make(root.clipboard_get()) | |
image.save(sys.argv[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
#include <stdio.h> | |
void print_prelude(FILE *output); | |
int main(int argc, char **argv) { | |
FILE *src = NULL; | |
FILE *output; | |
if (argc != 2) return -1; | |
char op; |
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
/* fibvm - a vm for fibonacci numbers < 255 | |
* hex for input file for fibonacci numbers: | |
* --- | |
* 01 90 21 90 70 91 51 90 70 91 51 90 71 91 51 90 | |
* 70 91 51 90 70 91 51 90 70 91 51 90 70 91 51 90 | |
* C0 | |
* --- | |
* equivalent to: | |
* mov reg0, 1 | |
* print reg0 |
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 java.io.IOException; | |
import java.util.Scanner; | |
public class Conway { | |
public static Field field; | |
public static int generations; | |
/** | |
* @param args | |
*/ |
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 <unistd.h> | |
#include <stdlib.h> | |
#include <time.h> | |
int main(void) { | |
FILE *fp; | |
char buffer[64]; | |
unsigned int max_charge; | |
unsigned int current_charge; |
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
# Custom styles | |
gtk-font-name = "tewi 8" | |
style "gtk-theme-config-panel" { | |
bg[NORMAL] = "#0c1212" | |
bg[PRELIGHT] = shade(1.1,"#0c1212") | |
bg[ACTIVE] = shade(0.9,"#0c1212") | |
bg[SELECTED] = shade(0.97,"#0c1212") | |
fg[NORMAL] = "#018184" |
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
/* AGENT_SHEET */ | |
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
#content browser { | |
margin-right: -14px !important; | |
overflow-y: hidden; | |
overflow-x: hidden; | |
} |
NewerOlder