This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pages": [ | |
{ | |
"image": "01-000.jpg", | |
"next": "01-001.jpg", | |
"previous": "01-123.jpg" | |
}, | |
{ | |
"image": "01-001.jpg", | |
"next": "01-002.jpg", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bark Pack | |
tonybark.com | |
tonybark.art | |
tpaw.social | |
furryblue.com | |
# Stefen Auris | |
stefenauris.com | |
theheart.land |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo dotnet workload install maui | |
sudo dotnet workload install maui-maccatalyst maui-ios maui-android | |
sudo dotnet workload install wasm-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
NewerOlder