Requirements:
- Core XY
- Accelerometer for input shaping
- Temperature controlled closed chamber
- Klipper support
- Webcam
- Automatic bed leveling
- Linear rails
- Filament detector
#!/usr/bin/env bash | |
set -euo pipefail | |
buildAddr=khan.sx.gl | |
host=$(hostname) | |
hostAddr= | |
signKey= | |
action= | |
extraEvalFlags=() |
Requirements:
# if the imports are reversed, it works | |
import c | |
import b | |
echo Foo(3) |
import ./machines/nomad |
import 'dart:collection'; | |
void main() { | |
var le = new ListEquality(); | |
print(le.equals([1, 2, 3], [1, 2, 3])); | |
} |
Append the following to /etc/config/dhcp:
config boot 'linux'
option filename 'pxelinux.0'
option serveraddress 'YOUR.SERVER.IP.HERE'
option servername 'HP Deployment'
list dhcp_option '186,10.0.255.251'
list dhcp_option '187,8017'
list dhcp_option '252,\\boot\BCD'
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: kube-lego |
#!/usr/bin/env python3 | |
import argparse | |
import subprocess | |
import time | |
import os | |
import re | |
parser = argparse.ArgumentParser(description='Record window') | |
parser.add_argument('-window-id', type=int) | |
parser.add_argument('-fps', type=int, default=30) |
// compile with: g++ -fPIC -shared -std=c++11 cache_stat.cpp -ldl -O3 -o cache_stat.so | |
#include <functional> | |
#include <sys/stat.h> | |
#include <dlfcn.h> | |
#include "lrucache.hpp" | |
typedef int (*xstat_type)(int ver, const char *pathname, struct stat *buf); | |
typedef int (*xstat64_type)(int ver, const char *pathname, struct stat64 *buf); | |
typedef int (*fxstatat_type)(int ver, int dirfd, const char *path, struct stat *stat_buf, int flags); |