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
@font-face { | |
font-family: "Recursive Mono Linear Static"; | |
font-style: normal; | |
font-weight: 200; | |
src: url('https://github.com/arrowtype/recursive/raw/main/fonts/ArrowType-Recursive-1.085/Recursive_Web/woff2_static/RecursiveMonoLnrSt-Regular.woff2') format('woff2'); | |
} | |
@font-face { | |
font-family: "Recursive Mono Linear Static"; | |
font-style: normal; |
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
// vim: ft=javascript | |
black = '#57534e'; | |
lightBlack = '#d6d3d1'; | |
red = '#f87171'; | |
lightRed = '#fecaca'; | |
green = '#a3e635'; | |
lightGreen = '#d9f99d'; | |
yellow = '#fbbf24'; | |
lightYellow = '#fde68a'; | |
blue = '#22d3ee'; |
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
(setq sentient-highlights | |
'(("function" . font-lock-function-name-face) | |
("bool" . font-lock-type-face) | |
("int[0-9]+" . font-lock-type-face) | |
("array[0-9]+" . font-lock-type-face) | |
("(true|false)" . font-lock-doc-face) | |
("\{" . font-lock-function-name-face) | |
("\}" . font-lock-function-name-face) | |
(";" . font-lock-string-face) | |
("*[a-z]*.?" . font-lock-function-name-face) |
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
/* taken from Rosetta Stone, adapted for OSX 10.10 | |
* http://rosettacode.org/wiki/Mandelbrot_set#C | |
* compile with 'xcrun clang -framework GLUT -framework OpenGL mandelbrot.c -v' */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <GLUT/glut.h> | |
#include <OpenGL/gl.h> | |
void set_texture(); |