Skip to content

Instantly share code, notes, and snippets.

View druzn3k's full-sized avatar

Maurizio Del Corno druzn3k

View GitHub Profile
@druzn3k
druzn3k / .ideavimrc
Created November 15, 2022 10:03 — forked from johnnymillergh/.ideavimrc
Vim
" IdeaVim Wiki https://github.com/JetBrains/ideavim/wiki
" Find more examples here: https://jb.gg/share-ideavimrc
let mapleader=";"
""" Common settings -------------------------
set showmode
set scrolloff=5
" Do incremental searching.
set incsearch
@druzn3k
druzn3k / csr.go
Created November 9, 2022 14:49 — forked from svicknesh/csr.go
Golang - create CSR (from stack overflow)
package main
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"crypto/x509/pkix"
"encoding/asn1"
"encoding/pem"
"os"
@druzn3k
druzn3k / stimulus.md
Created August 12, 2022 12:20 — forked from mrmartineau/stimulus.md
Stimulus cheatsheet
@druzn3k
druzn3k / newscript.sh
Created December 26, 2021 22:46 — forked from aaronNGi/newscript.sh
Boilerplate for new POSIX shell scripts
#!/bin/sh
prog_name=${0##*/}
version=1.0
version_text="Boilerplate for new scripts v$version"
options="h o: q v V"
help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]...
Boilerplate for new scripts
//
// Author: Jonathan Blow
// Version: 1
// Date: 31 August, 2018
//
// This code is released under the MIT license, which you can find at
//
// https://opensource.org/licenses/MIT
//
//
@druzn3k
druzn3k / collisionLSH.py
Created August 18, 2021 14:29 — forked from unrealwill/collisionLSH.py
Proof of Concept : generating collisions on a neural perceptual hash
import tensorflow as tf #We need tensorflow 2.x
import numpy as np
#The hashlength in bits
hashLength = 256
def buildModel():
#we can set the seed to simulate the fact that this network is known and doesn't change between runs
#tf.random.set_seed(42)
model = tf.keras.Sequential()
@druzn3k
druzn3k / generative-svg-noise-pattern-maker.markdown
Created April 10, 2021 15:41
Generative SVG Noise Pattern Maker 🎨

Generative SVG Noise Pattern Maker 🎨

I'm a huge fan of these kinds of noisy grid patterns, and I wanted to add some to my in-progress site. Rather than tinkering away in Figma, I thought I would make a little generator. I hope some other folks find it useful!

A Pen by George Francis on CodePen.

License.

@druzn3k
druzn3k / test.md
Created January 4, 2021 13:38 — forked from ityonemo/test.md
Zig in 30 minutes

A half-hour to learn Zig

This is inspired by https://fasterthanli.me/blog/2020/a-half-hour-to-learn-rust/

Basics

the command zig run my_code.zig will compile and immediately run your Zig program. Each of these cells contains a zig program that you can try to run (some of them contain compile-time errors that you can comment out to play with)

@druzn3k
druzn3k / Makefile
Created October 19, 2020 10:03 — forked from kishmakov/Makefile
Shared libraries and Address Sanitizer (ASAN)
SAN_CMP := -fno-omit-frame-pointer -fsanitize=address
SAN_STAT := -static-libstdc++ -static-libasan
BIN_CMP := -std=c++11 -c -I. main.cpp -O -g3 -o main.o
LIB_CMP := -std=c++11 my.cpp -o libmy.so -shared -fPIC -g3
RUN := LD_LIBRARY_PATH=. ASAN_OPTIONS=symbolize=1 ASAN_SYMBOLIZER_PATH=$(shell which llvm-symbolizer)
PRELOAD := LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libasan.so.1
lib-gcc:
@druzn3k
druzn3k / Gemfile
Created June 25, 2020 08:11 — forked from dhh/Gemfile
HEY's Gemfile
ruby '2.7.1'
gem 'rails', github: 'rails/rails'
gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data
# Action Text
gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra'
gem 'okra', github: 'basecamp/okra'
# Drivers