I hereby claim:
- I am dacioromero on github.
- I am dacio (https://keybase.io/dacio) on keybase.
- I have a public key ASBw-rFZgsckVnIfVe6pzytVzJRX8nXvLX-nA0W8U1dQ5Qo
To claim this, I am signing this object:
default default | |
timeout 10 | |
label default | |
kernel /boot/zImage | |
initrd /boot/initramfs-linux.img | |
fdtdir /boot/dtbs | |
fdtoverlays /boot/overlays/m2-zero-eth0.dtbo /boot/overlays/sun8i-h3-cpu-clock-1.2GHz-1.3v.dtbo | |
append console=ttyS0,115200 console=tty1 root=UUID=b7c29ac6-a463-49dd-abf8-b5feff9dee78 rw |
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
unpacking sources | |
unpacking source archive /nix/store/c263y9cclpa3v0zxmj3y8lffgyz2b5gy-source | |
source root is source | |
Executing cargoSetupPostUnpackHook | |
Finished cargoSetupPostUnpackHook | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
patching sources | |
applying patch /nix/store/pvwhnnvfbhkgv1ihzf27c0rvwa599fjc-no-post-install.patch | |
patching file meson.build |
local WARP_MIN = 64 * 4 | |
local posPath = fs.combine(shell.dir(), "transport.pos") | |
local endAutomata = peripheral.find("endAutomata") | |
function getTotalItemCount () | |
local count = 0 | |
-- Slot 1 is for fuel | |
for slot=2,16 do | |
count = count + turtle.getItemCount(slot) |
I hereby claim:
To claim this, I am signing this object:
<script lang="typescript"> | |
import { writable } from 'svelte/store' | |
const store = writable(localStorage.getItem('key') ?? '') | |
store.subscribe(value => localStorage.setItem('key', value)) | |
</script> | |
<input bind:value={$store} /> |
import glob | |
from collections import defaultdict | |
import subprocess | |
from os import path | |
def main(dest = ''): | |
recordings = defaultdict(list) | |
for file in glob.glob(f'GH{"[0-9]" * 6}.MP4'): | |
chapter = file[2:4] |
// ==UserScript== | |
// @name Fuck It! jQuery | |
// @namespace https://gist.github.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a | |
// @description jQuery injector for your jQuery addiction | |
// @author Dacio Romero <[email protected]> | |
// @homepageURL https://gist.github.com/dacioromero/2646ac7e1d0bfd0ec88fb47b3d1e577a | |
// @run-at document-idle | |
// @match *://*/* | |
// @grant none | |
// @version 1.0.0 |
@daily /usr/local/bin/python3 /root/update-trackers.py |
version: "3" | |
services: | |
vpn: | |
image: "dperson/openvpn-client" | |
network_mode: "bridge" | |
cap_add: | |
- "NET_ADMIN" | |
devices: | |
- "/dev/net/tun" | |
environment: |
const fs = require('fs') | |
const lockfile = require('@yarnpkg/lockfile') | |
const package = require('./package.json') | |
const lock = lockfile.parse(fs.readFileSync('yarn.lock', 'utf-8')).object | |
const allDeps = new Set() | |
const parseDep = ([name, version]) => { | |
allDeps.add(`${name}@${version}`) |