Skip to content

Instantly share code, notes, and snippets.

View ernierasta's full-sized avatar

Leszek Cimała ernierasta

  • zori.[cz|pl|sk]
  • Czech Republic
View GitHub Profile
@ernierasta
ernierasta / voidlinux-openssl.md
Last active December 1, 2020 12:24
How to install OpenSSL no Void Linux
curl -O https://www.openssl.org/source/openssl-1.1.0f.tar.gz
tar xf openssl-1.1.0f.tar.gz
cd openssl-1.1.0f

# solve glob problem
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/90-test_fuzz.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/80-test_ssl_new.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/recipes/40-test_rehash.t
sed -i "s#'File::Glob' => qw/glob/;#'File::Glob' => qw/bsd_glob/;#g" test/build.info
@ernierasta
ernierasta / gencsv-from-items.sh
Created March 17, 2021 06:47
Generata csv file for countersheet Inkscape extension based on image files in specified directory.
#!/bin/bash
# generates csv for all given asset files
ipath="$1"
back="$2"
file="out"
out=""
@ernierasta
ernierasta / main.go
Last active April 25, 2023 09:21
golang github.com/tdewolff/canvas example of text overflowing TextBox
package main
import (
"log"
"github.com/tdewolff/canvas"
"github.com/tdewolff/canvas/renderers"
)
func main() {