Skip to content

Instantly share code, notes, and snippets.

View tonytins's full-sized avatar
📚

Tony Bark tonytins

📚
View GitHub Profile
@tonytins
tonytins / chill-month.yml
Created April 27, 2025 13:07
Chill Months Reminder
# .github/workflows/chill-months.yml
name: 📆 Chill Months Reminder
on:
schedule:
- cron: '0 12 1 6 *' # June 1st at 12:00 UTC
- cron: '0 12 1 12 *' # December 1st at 12:00 UTC
workflow_dispatch: # Allow manual triggering too
@tonytins
tonytins / LICENSE
Last active November 22, 2024 01:38
Standard eBooks CSS
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
@tonytins
tonytins / LICENSE
Created November 4, 2024 16:44
Tarot
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
@tonytins
tonytins / wuffle-y1-comic.json
Created September 29, 2024 03:28
Wuffle Year 1 JSON Directory
{
"pages": [
{
"image": "01-000.jpg",
"next": "01-001.jpg",
"previous": "01-123.jpg"
},
{
"image": "01-001.jpg",
"next": "01-002.jpg",
@tonytins
tonytins / barkpack-allow.txt
Last active September 17, 2024 18:48
Bark Pack AdGuard Lists
# Bark Pack
tonybark.com
tonybark.art
tpaw.social
furryblue.com
# Stefen Auris
stefenauris.com
theheart.land
@tonytins
tonytins / LICENSE
Last active August 8, 2024 10:02
GDScript reference implementations by ChatGPT
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
@tonytins
tonytins / zig_tasks.json
Created April 28, 2024 03:28
Zig Tasks
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "zig build",
"type": "shell",
"command": "zig build"
},
@tonytins
tonytins / spacehey-macos-dark.css
Created January 6, 2024 22:03
macOS Dark Theme for SpaceHey by Alexis Scobey
/* Note: I, Alexis Scobey, am in no way a professional. */
/* This stylesheet doesn't follow any good practices, and I'm surprised it works at all */
/* I'm also unsure about copyright, so you're using this at your own risk. */
/* If you do use it, and it turns out to be illegal, we should totally be prison buddies though */
/* I'm just kidding, of course. Mostly. */
/* Sets the background image and scaling, as well as the font */
/* Note: it's probably a bad idea long-term to pull this from osxdaily's CDN, but I'm too lazy to mirror it elsewhere. */
body{
background-image: url(https://cdn.osxdaily.com/wp-content/uploads/2020/10/macos-big-sur-wallpaper-2.jpg);
@tonytins
tonytins / workloads.sh
Last active October 12, 2022 21:49
.NET Workloads
#!/bin/bash
sudo dotnet workload install maui
sudo dotnet workload install maui-maccatalyst maui-ios maui-android
sudo dotnet workload install wasm-tools
@tonytins
tonytins / jsonhelper.gd
Created August 8, 2022 20:19
JSON Helper
extends Node
func key_value(json_path, json_file, key, is_dictionary = false):
var file = File.new()
var full_path = str(json_path + json_file);
if file.file_exists(full_path):
file.open(full_path, File.READ)
var result = parse_json(file.get_as_text())
if is_dictionary == true:
result.clear()