Skip to content

Instantly share code, notes, and snippets.

View OskarZyg's full-sized avatar
🇪🇺
strength through collaboration!

Oskar OskarZyg

🇪🇺
strength through collaboration!
View GitHub Profile
@astei
astei / message.md
Last active November 12, 2021 09:39
Regarding my recent absence/disinterest in Minecraft

Here for the Velocity 3.0.1 release announcement? It's over here.

What's going on?

This year has been a wild ride for me. In February, I got a job with Branch. To say that the pressure has never been higher than ever is quite the understatement. To put it bluntly, this is not for the faint of heart. With the increase in workload at work, it has left me with ever less time to focus on Minecraft.

In addition, most of my projects have been one-man shows, with me being the principal driving force. Velocity alone as of this writing has 25,441 lines of code, with much of it written by me. But with increasing time pressure on me, along with not being adequately compensated for the free time I am able to put into Velocity, I have been forced to re-evaluate my priorities.

Where does that leave Velocity?

@inercia
inercia / elementaryos.md
Last active January 4, 2024 13:55 — forked from suberb/elementaryos.md
Things To Do After Installing Elementary OS

FIRST THING FIRST

  • Update OS
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install ubuntu-restricted-extras
  • Uninstall Apps
@timbennett
timbennett / expose.py
Last active June 11, 2023 00:36
Create 'long exposure' images from a video file.
# This script takes a video's individual frames and overlays them to produce a composite "long exposure" image.
#
# Usage: python expose.py video.mp4 width height
#
# IMPORTANT: you'll need to edit this script to set the value of 'alpha' appropriate for your video's length and desired brightness.
from __future__ import division
import subprocess as sp
import numpy
from PIL import Image, ImageDraw
@zhujunsan
zhujunsan / Using Github Deploy Key.md
Last active May 6, 2024 04:53
Using Github Deploy Key

What / Why

Deploy key is a SSH key set in your repo to grant client read-only (as well as r/w, if you want) access to your repo.

As the name says, its primary function is to be used in the deploy process in replace of username/password, where only read access is needed. Therefore keep the repo safe from the attack, in case the server side is fallen.

How to

  1. Generate a ssh key