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 ruby | |
require 'time' | |
def die(str) | |
$stderr.puts str | |
exit | |
end | |
def usage |
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 zsh | |
#! /usr/bin/env nix-shell | |
#! nix-shell -i bash -p python36Packages.csvkit | |
# map <f9> :%!./parse 2>/dev/null <CR> | |
summer() { | |
(echo "Saņēmējs/Maksātājs,Summa,Datums"; grep -v "Summa,Datums") | \ | |
csvsql --tables input --query 'SELECT SUM("Summa")/100.0 FROM input' |
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
nix-shell -E 'with (import <nixpkgs> {}); with python3; mkShell { buildInputs = [ (withPackages (p: [(pkgs.buildPythonPackage rec { pname = "uploadserver"; version = "5.2.1"; src = fetchPypi { inherit pname version; hash = "sha256-qp2xkzLvnrnx8dHZpwlF3RjRg8jYC7WAaVS4ltJFZaU="; }; })]) ) ]; }' --run "python -m uploadserver 65353" | |
# you're welcome |
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 zsh | |
# create or use ncdu's output from cache, then open ncdu | |
set -eu | |
sanit-path() { echo "$(tr / : <<< "$1" | tr -cd '0-9a-z\-.:')"; } | |
cache="$HOME/data/cache/ncdu" # RUN mkdir yourself! | |
dir="$1"; shift |
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
{-# LANGUAGE BlockArguments #-} | |
{-# LANGUAGE DeriveTraversable #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE NamedFieldPuns #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
{-# LANGUAGE TupleSections #-} | |
{-# LANGUAGE TypeApplications #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE UnicodeSyntax #-} |
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
{ fetchFromGitHub, buildGoModule }: | |
buildGoModule { | |
name = "leveldb-cli"; | |
vendorHash = "sha256-xM32ynbK8rF6JZty4701A+g6WxHOPx+frBngVIXizV4="; | |
src = fetchFromGitHub { | |
owner = "liderman"; | |
repo = "leveldb-cli"; | |
rev = "4233523f321208dfda6dce4908d407ad6ee39b0c"; | |
hash = "sha256-BwxCpBw+ChpENc44SAXKoQKXs4ckI1Fayy9Mq55KWiw="; |
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
{ | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05"; | |
}; | |
outputs = { self, nixpkgs }: | |
with nixpkgs.legacyPackages.x86_64-linux; | |
let | |
system = "x86_64-linux"; |
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 ruby | |
if %x{type xprintidle &> /dev/null; echo $?}.strip == '1' | |
raise 'xprintidle not found' | |
end | |
def idle | |
%x{xprintidle}.to_i | |
end |
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
<!-- original: https://jsfiddle.net/poetix/KtCnB/ --> | |
<!-- testing hypothesis for generating: https://twitter.com/matthen2/status/1498717789233758222 --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<canvas width="500px" height="500px" id="canvas"></canvas> | |
<input type="range" id="iterations" name="iterations" min="0" max="100" value="50" step="1"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> |
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
{ stdenv, fetchzip, zlib, openjdk8, openjdk11, version ? "v2019" }: | |
# https://www.yourkit.com/docs/java/help/running_profiler.jsp | |
let | |
versions = { | |
v2019 = { | |
date = "2019.1"; | |
buildnr = "b133"; | |
sha256 = "06p8y0mmyfrzjk5jz783gcfjsq6mk4rqddbqxarkkar7va5w5vk6"; |
NewerOlder