Skip to content

Instantly share code, notes, and snippets.

View starpause's full-sized avatar

Jordan starpause

View GitHub Profile
@pdtyreus
pdtyreus / SlackPostMessageWithAttachments.js
Created September 8, 2016 22:15
Slack chat.postMessage with attachments
var http = require("https");
var querystring = require('querystring');
//2 attachments as JavaScript Objects
var attachments = [{
fallback: "Attachment 1 Fallback",
title: "This is Attachment 1",
text: "Attachment 1 Text",
color: "#3964db"
}, {
@xfalcox
xfalcox / 10USD-AWS
Last active November 19, 2020 02:43
VPS Compare
CPU model: Intel(R) Xeon(R) CPU E5-2676 v3 @ 2.40GHz
Number of cores: 1
CPU frequency: 2394.486 MHz
Total amount of RAM: 990 MB
Total amount of swap: MB
System uptime: 4 min,
I/O speed: 64.0 MB/s
Bzip 25MB: 4.61s
Download 100MB file: 46.5MB/s

How to get BennVenn' joey-joebags working on macOS

The joey-joebags is a Game Boy cart reader/writer, it's available here.

I have tested these steps on Yosemite (10.10) and Sierra (10.12). You need to have Python 3, which is not installed by default, so install using Homebrew.

Install Homebrew:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

@nzec
nzec / README.MD
Last active March 8, 2026 20:36
DeezLoader Offical Page

Thanks to /u/zpoo32 for reporting several issues in this list!

Deemix

  • deemix: just the cli and the library
  • deemix-pyweb: the app with a GUI
  • deemix-server: just the server part of deemix-pyweb
@coderofsalvation
coderofsalvation / crossfadevideo.sh
Last active March 25, 2026 07:24
ffmpeg commandline crossfade-looped video
#!/bin/bash
[[ ! -n $3 ]] && { echo "Usage: crossfadevideo <input.mp4> <fade in seconds> <output.mp4> [looptimes]"; exit; }
input="$1"
fade="$2"
duration="$(ffprobe -v error -select_streams v:0 -show_entries stream=duration -of default=noprint_wrappers=1:nokey=1 "$input")"
duration=$(echo "$duration-($fade)" | bc | sed 's/\..*//g')
[[ ${duration:0:1} == "." ]] && duration="0$duration"
output="$3"
[[ -n $4 ]] && loop=$4 && output="${output}.mkv"
set -x