Skip to content

Instantly share code, notes, and snippets.

View sudofox's full-sized avatar
🕟
turning back the clock

Austin Burk sudofox

🕟
turning back the clock
View GitHub Profile
@sudofox
sudofox / wishlist_2020.md
Created December 1, 2020 16:53
sudofox's 2020 christmas wishlist
  • A bookshelf because there's several books I'd like to get
  • A proper set of cutlery for my kitchen
  • Speaking of books...
    • A Promised Land by Barack Obama
    • Rage by Bob Woodward
@sudofox
sudofox / ACNH Nook Mile Bootstrap Program
Last active June 26, 2020 20:23
For paying off your moving fees on additional profiles in ACNH
By Sudofox
This assumes that you've already unlocked the Town Hall, and want more profiles so you can construct additional buildings.
- 2000 NM: Birthday bonus if you set your birthday to today
- 500 NM: Starting bonus
- 500 NM: Tweak island tune (just change one thing, can change it back after)
- 500 NM: Tweak island flag (you can just select the same custom design)
- 500 NM: Change outfit using a closet (or related)
Welcome to Hatena Haiku! Congratulations on passing the Humanity Quiz.
Here's some tips to get you started.
POSTING
If you do not include a keyword when you post, it will only show up on
- your user page
- the "Users I'm following" timeline page
@sudofox
sudofox / heatmap.html
Last active July 20, 2018 18:18
variable-based heatmap demo with hsl()
<!DOCTYPE html>
<!-- heatmap demo - id:austinburk -->
<head>
<style>
table {
display: block;
}
td {
min-width:10px;
min-height:10px;
<?php
include 'HTTP/OAuth/Consumer.php';
$consumer_key = 'xxxxxxxxxxx';
$consumer_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx';
/* consumerの設定 */
$consumer = new HTTP_OAuth_Consumer($consumer_key, $consumer_secret);
$http_request = new HTTP_Request2();
$http_request->setConfig('ssl_verify_peer', false);
This file has been truncated, but you can view the full file.
+---code
| app.xml
| cos.xml
| U-King.rpx
|
+---content
| +---Actor
| | | ActorInfo.product.sbyml
| | |
| | \---Pack
#!/bin/bash
# Turn entropychat, which used to be enabled by default on most cPanel servers, into a bot controller
# (disable it please and thank you, it's a horribly crappy attempt at a chat page)
# I wrote this ages ago so it's kinda crappy and filled with hacky things to prevent buffering
# Usage: ./entropybot.sh hostname.example.com
# by aburk
HOST=$1
trap ctrl_c INT
function ctrl_c() {
#!/bin/bash
# prank - detects spacebar presses, selects previous word (or character group that selected by ctrl+shift+left)
# and replaces it with:
REPLACEMENT_STRING="ayy lmao "
# by Sudofox/Austin Burk
#some configuration options:
# if the random number generated between 1 and RANDOM_CEIL == TRIGGER_VALUE then the word will be replaced
RANDOM_CEIL=15;