Skip to content

Instantly share code, notes, and snippets.

View miraficus's full-sized avatar

Miraficus miraficus

View GitHub Profile
@dougwaldron
dougwaldron / InstallSoftware.ps1
Last active June 10, 2026 19:44
Install software with winget / automate installation with PowerShell
# 1. Make sure the Microsoft App Installer is installed:
# https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1
# 2. Edit the list of apps to install.
# 3. Run this script as administrator.
Write-Output "Installing Apps"
$apps = @(
@{name = "7zip.7zip" },
@{name = "AgileBits.1Password" },
@{name = "Axosoft.GitKraken" },
# Use the command 'TerrariaServer -config serverconfig.txt' to use this configuration.
# Please report crashes by emailing crashlog.txt to <support@terraria.org>.
# Load a world and automatically start the server.
world=~/.local/share/Terraria/Worlds/world1.wld
# Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large).
#autocreate=1
# Sets the world seed when using autocreate.
@maxerium
maxerium / btmc-skin-doc.md
Last active April 15, 2023 10:06
BTMC's Skins

BTMC's Skin Overview/List

This will always be kept up-to-date. (Current Revision: 1.4, 03rd November 2020)

The list is maintained by maxi#0666. If anything is broken or missing, please DM me on Discord. Thank you!

This skin list is not up-to-date anymore. Head over to this site for the actual document.

@travelhawk
travelhawk / ffmpeg_commands.md
Last active June 13, 2026 07:02
Collection of ffmpeg commands (basic usage, streaming, advanced usage)

ffmpeg

ffmpeg is a fast video and audio converter that can also grab from a live audio/video source.

Standard usage

Getting help and information

  • -h show all options
  • -h(elp) topic show help
  • -version show version
  • -formats show available formats
@sebastiandero
sebastiandero / autoexec.cfg
Last active June 20, 2024 21:17
Autoexec.cfg for CS:GO
//~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--
//
//.----------------. .----------------. .----------------. .----------------. .----------------. .----------------. .----------------.
//| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
//| | ________ | || | _________ | || | ____ ____ | || | _________ | || | ____ ____ | || | _ | || | _______ | |
//| | |_ ___ `. | || | |_ ___ | | || ||_ _| |_ _| | || | |_ ___ | | || | |_ _||_ _| | || | | | | || | / ___ | | |
//| | | | `. \ | || | | |_ \_| | || | \ \ / / | || | | |_ \_| | || | \ \ / / | || | \_| | || | | (__ \_| | |
//| | | | | | | || | | _| _ | || | \ \ / / | || | | _| _ | || | > `' < | || | | || | '.___`-. | |
//| | _| |___.'
@rjz
rjz / ngrok_hostname.sh
Created August 9, 2016 16:20
Get ngrok hostname from command line
#!/bin/sh
# ngrok's web interface is HTML, but configuration is bootstrapped as a JSON
# string. We can hack out the forwarded hostname by extracting the next
# `*.ngrok.io` string from the JSON
#
# Brittle as all get out--YMMV. If you're still reading, usage is:
#
# $ ./ngrok_hostname.sh <proto> <addr>
#