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
// Commercially released games | |
10+2 | |
My First CD-ROM: Toddler School | |
//{ 3bessones,Les Tres Bessones: Jugar i Aprendre }, // Catalan title, English selectable in game | |
Os 7 Invasores // Portuguese title, English selectable in game | |
My Alphabet Lunch | |
Alphabet: Play with the ABCs | |
Safety Scavenger Hunt // Alphabet Pals | |
Abduct This! | |
The A-Files |
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
import pygfx as gfx | |
import imageio.v3 as iio | |
from scipy.spatial.transform import Rotation | |
from wgpu.gui.auto import WgpuCanvas | |
scene = gfx.Scene() | |
def create_cylinder() -> gfx.Mesh: |
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
#pragma endian big | |
#include <std/core.pat> | |
#include <std/fxpt.pat> | |
#include <std/io.pat> | |
#include <std/math.pat> | |
#include <std/mem.pat> | |
#include <std/string.pat> | |
#include <std/time.pat> |
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
//#pragma debug | |
#pragma endian big | |
#include <std/core.pat> | |
#include <std/fxpt.pat> | |
#include <std/io.pat> | |
#include <std/math.pat> | |
#include <std/mem.pat> | |
#include <std/string.pat> | |
#include <std/time.pat> |
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
#!/usr/bin/env python3 | |
"""MrCrowbar file for Quicktime movies | |
Specifiation is from: QuickTime File Format Specification | |
https://multimedia.cx/mirror/qtff-2007-09-04.pdf | |
All links in this file with #//apple... point to the relevant part in this document. | |
""" |
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
{ | |
"name": "taskbox", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"@testing-library/jest-dom": "^4.2.4", | |
"@testing-library/react": "^9.5.0", | |
"@testing-library/user-event": "^7.2.1", | |
"react": "^16.13.1", | |
"react-dom": "^16.13.1", |
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
#!/usr/bin/env python3 | |
import argparse | |
import operator | |
from functools import reduce | |
def mktag(tag: str) -> int: | |
letters = [i for i in tag] | |
letters.reverse() |
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
#!/usr/bin/env bash | |
# | |
# Get a TRANSIP JWT to use for authenticated API requests | |
# https://api.transip.nl/rest/docs.html#header-authentication | |
# | |
# necessary commandline tools: | |
# jq | |
# curl | |
# | |
# Setting it up: |
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
# Mount iso: hmount path/to/file.iso | |
# Do: hls -aqRF1 > files.txt | |
# and run: python hfscopy.py | |
# explanation | |
# -a Show all files | |
# -q print '?' instead of escaped chars | |
# -R descend into all directories | |
# -F enable file type flag, dir: executable:* | |
# -1 output 1 item per line |
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
function use_nvidia_drivers() { | |
export LD_LIBRARY_PATH=/nix/store/xl3cr8kwlpi0j7il0zx4cb6sw05wx40g-libglvnd-1.2.0/lib:/nix/store/lhfyarm78k3lswp6xcvp51s9x4j6baq0-nvidia-440.64/lib:/nix/store/k8x3i9r3lyx4sv0wls45akvkk23bflg7-nvidia-440.64-lib32/lib:/nix/store/aw33ya4m2qmfjhvrxlvlw9gl28ixviya-libglvnd-1.2.0/lib:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} | |
} | |
function use_intel_drivers() { | |
export LIBGL_DRIVERS_PATH=/nix/store/vjcmnq73yj45bksaivwkzpzdc1vzf6yd-mesa-20.0.2-drivers/lib/dri:/nix/store/bdyq8k5kyp2lgva9vr03f04b18ys1vbg-mesa-20.0.2-drivers/lib/dri | |
export LD_LIBRARY_PATH=/nix/store/vjcmnq73yj45bksaivwkzpzdc1vzf6yd-mesa-20.0.2-drivers/lib:/nix/store/bdyq8k5kyp2lgva9vr03f04b18ys1vbg-mesa-20.0.2-drivers/lib:$LD_LIBRARY_PATH | |
} | |
if [ -f "$HOME/bin/is_egpu_connected.sh" ]; then |
NewerOlder