Skip to content

Instantly share code, notes, and snippets.

@chrdek
chrdek / PDF-Redact.ps1
Last active April 17, 2024 16:33
PDF files content redaction by usage of ImageMagick
<#
Author: Chris Dek.
.Synopsis
This is a powershell utility script that redacts content (via black rounded rectangles) based on an image coordinate file.
Details for usage are shown in the sections below.
.Description
PDF file Content Redaction with usage of Imagemagick.This file generates the necessary ImageMagick commands to convert a set of images extracted from a pdf
@karpathy
karpathy / min-char-rnn.py
Last active November 19, 2024 10:40
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)