# dust
wget -O - https://github.com/bootandy/dust/releases/download/v0.5.4/dust-v0.5.4-x86_64-unknown-linux-musl.tar.gz | tar -xz --strip-components 1 '*dust'
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
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
VERSION 0.6 | |
FROM ubuntu:20.04 | |
ARG DEBIAN_FRONTEND=noninteractive | |
RUN apt-get update \ | |
&& apt-get install --yes \ | |
libdumbnet1 libluajit-5.1-2 libpcap0.8 \ | |
zlib1g libhwloc15 liblzma5 libssl1.1 \ | |
libunwind8 \ |
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/perl -w | |
=head1 NAME | |
sidekiq - Get Sidekiq queue statistics from a Redis node | |
=head1 APPLICABLE SYSTEMS | |
Any Redis host with a Sidekiq application |
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
// gcc `pkg-config --cflags --libs libfprint-2` -o fprint-clear fprint-clear.c | |
// compile, stop fprintd, run as root, start fprintd | |
#include <stdio.h> | |
#include <fprint.h> | |
int main() { | |
FpContext *ctx = fp_context_new (); | |
printf("Got context\n"); | |
GPtrArray *devices = fp_context_get_devices (ctx); |
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
did:3:kjzl6cwe1jw147mv939cydvcbka1117en9ao03c3fmgjrwrlmngkhbexm945svk |
Differences in parsers can result in security issues under certain circumstances. For example, cache poisoning.
Help me add to this list! Comment below
Source | Key-value pair delimiters | Issue |
---|---|---|
WHATWG Spec | & |
To make it more interesting, this setup should include a variety of motherboards, SSDs, HDDs, memory and PSUs. I might start with one system, and build another one every 6 months. I forsee this list changing over time, but the base specifications are as follows:
- CPU: >6 core, >4GHz
- Storage: >256GB NVMe
- Memory: >16GB, dual channel
Pricing Source:
Rack:
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 sys | |
import itertools | |
from netaddr import * | |
PREFIX = IPNetwork('fd00:0:3:1337::/64') | |
NAME = 'virtual0' | |
COUNT = 30 | |
UPSTREAM=0 |
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
#!/bin/bash | |
for file in */*; do | |
if ! [[ -f $file ]]; then | |
continue | |
fi | |
updated="$(echo $file | sed -E 's~^(([^/]*/)*)(ICT(-CSC)?[0-9]{4})?([- _]*)([^/]+)$~\1\6~')" | |
updated="$(echo $updated | sed -E 's~Chpt ?~Lect~')" | |
updated="$(echo $updated | sed -E 's~L(ecture|ect|ec|0)[- _]*0*([0-9]+)[- _]+~Lec\2 - ~')" | |
updated="$(echo $updated | sed -E 's~Lab[- _]*0*([0-9]+)[- _]+~Lab\1 - ~')" |
NewerOlder