Skip to content

Instantly share code, notes, and snippets.

View Berny23's full-sized avatar
😛
https://youtu.be/dQw4w9WgXcQ

Berny23 Berny23

😛
https://youtu.be/dQw4w9WgXcQ
View GitHub Profile
@Berny23
Berny23 / gameoflife.py
Created May 25, 2021 16:55
Game of Life Simulation (written in Python 3.9, needs "pygame" library)
# Game of Life Simulation
# Copyright © 2021 Berny23
#
# This file is released under the "MIT" license.
# Go to "https://choosealicense.com/licenses/mit" for full license details.
import pygame as game
import random
######## CONFIG ###########
@dracken
dracken / Fallout 4 All Console Commands.txt
Created January 4, 2020 05:03 — forked from reg2k/Fallout 4 All Console Commands.txt
Dump of all Fallout 4 console commands (with description)
-----------------------------------------------------------------------------------------
ID Full Name Short Name Description
-----------------------------------------------------------------------------------------
256: Show TST Show global scripts and variables.
257: ShowVars SV Show variables on object. You can optionally specified a papyrus variable or script to filter with [player->sv]
258: ShowGlobalVars SGLV Show all global variables.
259: ShowQuestVars SQV Show quest variables. You can optionally specified a papyrus variable or script to filter with [svq QuestID]
260: ShowQuests SQ List quests.
261: ShowQuestAliases Show quest aliases. [ShowQuestAliases QuestID]
262:
@gbraad
gbraad / README.md
Last active May 26, 2024 05:04
Buy Me a Coffee

Buy Me a Coffee

Using inlined HTML

Buy Me A Coffee

<a href="https://www.buymeacoffee.com/gbraad" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>
@Vestride
Vestride / encoding-video.md
Last active June 5, 2024 14:38
Encoding video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus