Skip to content

Instantly share code, notes, and snippets.

View SwooshyCueb's full-sized avatar
🦇
If you stand still, don’t expect the Earth will slow

Markus Kitsinger SwooshyCueb

🦇
If you stand still, don’t expect the Earth will slow
View GitHub Profile
@SwooshyCueb
SwooshyCueb / dan-schneider-nickelodeon-empire-massages-hostile-workplace-allegations-inappropriate-costumes-2022-8.md
Created August 31, 2022 16:49
"'Revealing' teen costumes, on-set massages, and a gender-discrimination complaint: Inside Dan Schneider's 'disgusting' Nickelodeon empire" Markdown copy

Markdown copy of the paywalled Business Insider article "'Revealing' teen costumes, on-set massages, and a gender-discrimination complaint: Inside Dan Schneider's 'disgusting' Nickelodeon empire", excluding images.
Article written by Kate Taylor; published on August 30, 2022, 2:29:09 PM EDT; updated on August 31, 2022, 8:27:33 AM EDT


The goo, roughly the consistency of an egg white, was being squirted repeatedly on the teen actor Jamie Lynn Spears' face.

Spears was shooting an episode of Nickelodeon's "Zoey 101" in which a costar accidentally sprays her with a yellowish-green liquid candy called a "goo pop."

But Dan Schneider, the show's meticulous creator, found problems with every take, Spears' costar Alexa Nikolas recalled, making a crew member squirt the syringe of goo at Spears over and over again.

@SwooshyCueb
SwooshyCueb / almalinux
Last active February 9, 2024 13:13
Various os-release files
NAME="AlmaLinux"
VERSION="8.4 (Electric Cheetah)"
ID="almalinux"
ID_LIKE="rhel centos fedora"
VERSION_ID="8.4"
PLATFORM_ID="platform:el8"
PRETTY_NAME="AlmaLinux 8.4 (Electric Cheetah)"
ANSI_COLOR="0;34"
CPE_NAME="cpe:/o:almalinux:almalinux:8.4:GA"
HOME_URL="https://almalinux.org/"
@SwooshyCueb
SwooshyCueb / dpexpand.cpp
Created December 5, 2019 22:29
quick and dirty delta package extractor using dpx.dll
#define UNICODE 1
#include <windows.h>
#include <stdio.h>
#include <shellapi.h>
#include <dpx.h>
#include <malloc.h>
using namespace std;
@SwooshyCueb
SwooshyCueb / SuperEagle.glsl
Created May 21, 2016 05:51
Temporary location for glsl stuff
#version 420 compatibility
// Will insert lines here so make sure version is at the very top.
// No includes.
/******************************************************************************/
/* GLSL Fragment Shader implementation of the SuperEagle 2x upscaler filter */
/******************************************************************************/
/* Copyright (C) 2016 Markus Kitsinger (SwooshyCueb) <root@swooshalicio.us> */
/* */
/* This implementation of the SuperEagle filter is subject to the terms of */
@SwooshyCueb
SwooshyCueb / gist:fbadb7147438b0319d3b
Created February 16, 2016 23:03
opencamp pre-pre-planning
This project is a long way off, but I might as well go ahead and throw some ideas on paper.
Essentially opencamp (or whatever I eventually end up calling it) is going to be an open-source online PWYW storefront for music, similar to bandcamp.
Will most likely be done in Python.
Currently planning on supporting PayPal and G2A Pay. Might look into Amazon Checkout, Google Wallet, and Xoslla.
Will offer a wider selection of audio formats for download/transcoding. (Also, different prices for different formats.)
Will give more control over track/album previews.
Will eventually have a REST API. Eventually.
Themes?
Support for surround sound audio.
@SwooshyCueb
SwooshyCueb / TODO
Last active February 16, 2016 23:03
Hierarchical todo list for my personal projects
The following is a hierarchical todo list for my personal projects.
It is laid out like a GUI tree. Child tasks should be completed before their parent task(s).
If a project is not listed here, it is likely on hold or outside the scope of this list.
(as of this update, I haven't thought further ahead than the Saturn remix)
┏╸ Finish Saturn remix
┣╸╸ Get keytar setup
┗┳╸ Finish TIAT VIP and publish Volume 2 of the TIAT remix album
┣┳╸ Get Revitar into an acceptable state for use in production
@SwooshyCueb
SwooshyCueb / bots.rb
Created April 30, 2015 07:48
Viv's blockee-reply ebooks script
require 'twitter_ebooks'
# This is an example bot definition with event handlers commented out
# You can define and instantiate as many bots as you like
class MyBot < Ebooks::Bot
# Configuration here applies to all MyBots
@blocks = []
@replied = []
@SwooshyCueb
SwooshyCueb / hardcell.scm
Last active August 29, 2015 14:10
Hardcell for Aisleriot
;;; hardcell.scm -- Modified Free Cell game for AisleRiot.
;; Copyright (C) 2014 Markus Kitsinger
;; Author: Markus Kitsinger <root@swooshalicio.us>
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
@SwooshyCueb
SwooshyCueb / bots.rb
Created November 7, 2014 13:08
DampHitVEVO
#!/usr/bin/env ruby
require 'twitter_ebooks'
require 'yaml'
require 'json'
# Track who we've randomly interacted with globally
$reload_requested = {}
@SwooshyCueb
SwooshyCueb / shellshockvm.sh
Created October 15, 2014 21:57
Shellshock demonstration VM generator (just something I threw together for class)
#!/bin/bash
#Parts of this script are adapted from the scripts in this blog post
#https://www.invisiblethreat.ca/2014/09/cve-2014-6271/
if [ "`whoami`" != "root" ]; then
echo "Must run as root."
exit 1
fi