Skip to content

Instantly share code, notes, and snippets.

View Sciman101's full-sized avatar

Sciman101

View GitHub Profile
@Sciman101
Sciman101 / cohost-bouncing-eggbug.user.js
Last active September 21, 2023 14:44
Cohost Bouncy Eggbug
// ==UserScript==
// @name Cohost Bouncy Eggbug
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Boing
// @icon https://www.google.com/s2/favicons?sz=64&domain=cohost.org
// @author @sciman101
// @match *://cohost.org/*
// @grant none
// ==/UserScript==
@Sciman101
Sciman101 / cohost-nav-customizer.user.js
Last active September 21, 2023 14:44
Cohost Sidebar Customizer
// ==UserScript==
// @name Cohost Navigation Customizer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Change the order of tabs in the cohost navigation sidebar, or remove them outright
// @icon https://www.google.com/s2/favicons?sz=64&domain=cohost.org
// @author @sciman101
// @match *://cohost.org/*
// @grant none
// ==/UserScript==
// ==UserScript==
// @name cohost De-Numberifier
// @description Removes comment numbers
// @version 0.2
// @author @sciman101
// @match *://cohost.org/*
// @grant none
// ==/UserScript==
// A lot of this code was stolen from gyoza's fantastic audio enhancements userscript
@Sciman101
Sciman101 / player.gd
Last active January 21, 2021 00:27
Godot Platformer Starter Code
extends KinematicBody2D
const ACC_INSTANT = 1000000 # If acceleration time is 0, default to this
# Exposed movement parameters
export var move_speed : float
export var acceleration_time : float # How many seconds does it take to go from 0 to max speed?
export var air_acceleration_time : float # How many seconds does it take to go from 0 to max speed, when we're midair?
export var friction_time : float # How many seconds does it take to go from max speed to 0?
export var jump_height : float # How many pixels vertically should we jump