Skip to content

Instantly share code, notes, and snippets.

View brix101's full-sized avatar
๐Ÿ”ฅ
Bugging the Fixes

Brixter Porras brix101

๐Ÿ”ฅ
Bugging the Fixes
View GitHub Profile
@brix101
brix101 / README.md
Created November 21, 2022 16:07 — forked from gbrlsnchs/README.md
Void Linux Installation Guide (UEFI + chroot + brtfs + LUKS-encrypted root and swapfile)

Installation guide for Void Linux with LUKS-encrypted btrfs root

NOTE

I have ported this Gist to a handbook. I'll not maintain this Gist anymore, but will keep it here for future references. You can access the respective chapter in the handbook here.

Introduction

In this guide you will find:

  • btrfs with Zstandard compression
  • LUKS-encrypted root and swapfile
  • GRUB with UEFI
@brix101
brix101 / client.py
Created April 13, 2022 02:34 — forked from kylehounslow/client.py
Send and receive images using Flask, Numpy and OpenCV
from __future__ import print_function
import requests
import json
import cv2
addr = 'http://localhost:5000'
test_url = addr + '/api/test'
# prepare headers for http request
content_type = 'image/jpeg'