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
{-# 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
<!-- 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
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
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
{ 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
#! /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
#! /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' |
NewerOlder