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 | |
script = <<-EOF | |
ccurl() { | |
curl -b cookie.txt -c cookie.txt "$@" | |
} | |
ccurl 'https://www.ss.com/lv/real-estate/flats/riga/agenskalns/filter/' -H 'authority: www.ss.com' -H 'cache-control: max-age=0' -H 'origin: https://www.ss.com' -H 'upgrade-insecure-requests: 1' -H 'content-type: application/x-www-form-urlencoded' -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3' -H 'referer: https://www.ss.com/lv/real-estate/flats/riga/agenskalns/' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: en-GB,en-US;q=0.9,en;q=0.8' &> /dev/null || exit | |
ccurl 'https://www.ss.com/lv/real-estate/flats/riga/agenskalns/filter/fDgSeF4belI=.html' -H 'authority: www.ss.com' -H 'cache-control: max-age=0' -H 'origin: https://www.ss.com' -H 'upgrade-insecure-requests: 1' -H 'conte |
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
#! /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
#! /usr/bin/env bash | |
set -eu | |
pwd | grep -q '^/tmp' | |
cat > excl <<-EOF | |
a | |
b/*c* | |
./d |
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"; |
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 Control.Lens.Internal.FieldTH (makeFieldOptics, LensRules(..)) | |
import Language.Haskell.TH.Syntax (mkName, nameBase) | |
import Control.Lens.TH (DefName(..), lensRules) | |
data Field = { a :: Int, b :: Int } | |
makeFieldOptics lensRules { _fieldToDef = (\_ _ -> (:[]) . TopName . mkName . (++ "L") . nameBase) } ''Field | |
-- hopefully someone find this useful |
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
module Main where | |
import Algebra.PartialOrd (PartialOrd(..)) | |
import Data.Bifunctor (bimap) | |
import Data.Foldable (for_) | |
import Data.Function (on) | |
import Data.List.Extra (groupSortOn) | |
import Data.List (sortOn) | |
import Data.Set (Set) | |
import qualified Data.POSet as POSet |
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
{ | |
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
{ fetchFromGitHub, buildGoModule }: | |
buildGoModule { | |
name = "leveldb-cli"; | |
vendorHash = "sha256-xM32ynbK8rF6JZty4701A+g6WxHOPx+frBngVIXizV4="; | |
src = fetchFromGitHub { | |
owner = "liderman"; | |
repo = "leveldb-cli"; | |
rev = "4233523f321208dfda6dce4908d407ad6ee39b0c"; | |
hash = "sha256-BwxCpBw+ChpENc44SAXKoQKXs4ckI1Fayy9Mq55KWiw="; |