Skip to content

Instantly share code, notes, and snippets.

View alicerunsonfedora's full-sized avatar

Marquis Kurt alicerunsonfedora

View GitHub Profile
@alicerunsonfedora
alicerunsonfedora / settings.json
Created April 21, 2020 15:03
Some additional customizations for the VS Code Academy City theme to improve the Ren'Py editing experience
{
"workbench.colorCustomizations": {
"[Academy City]": {
"activityBar.activeBackground": "#363450",
"activityBar.activeBorder": "#2fade5",
"button.background": "#61B8E3",
"button.foreground": "#212121",
"list.hoverBackground": "#363450",
"list.focusBackground": "#363450",
"list.activeSelectionBackground": "#363450",
@alicerunsonfedora
alicerunsonfedora / notify.rpy
Created January 17, 2020 16:17
Modified notify screen to do a permanent notification
# Modded Notify
default notify_timeout = 3.25
screen notify(message):
zorder 100
style_prefix "notify"
frame at notify_appear:
text message
@alicerunsonfedora
alicerunsonfedora / hyperstrap.css
Created March 20, 2019 03:19
Some cool Bootstrap stuff
.bg-asriel {
background-color: rgb(92, 86, 142);
}
.asriel-primary {
background-color: rgb(84, 89, 204);
}
.btn-asriel {
background-color: rgb(84, 89, 204);
@alicerunsonfedora
alicerunsonfedora / mastodon.html
Created December 26, 2018 03:25
Tools needed to add Mastodon sharing to any site or post using Jekyll.
<img src='data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MS4wNzY5NTRtbSIgaGVpZ2h0PSI2NS40NzgzMW1tIiB2aWV3Qm94PSIwIDAgMjE2LjQxNDQgMjMyLjAwOTc2Ij48cGF0aCBkPSJNMjExLjgwNzM0IDEzOS4wODc1Yy0zLjE4MTI1IDE2LjM2NjI1LTI4LjQ5MjUgMzQuMjc3NS01Ny41NjI1IDM3Ljc0ODc1LTE1LjE1ODc1IDEuODA4NzUtMzAuMDgzNzUgMy40NzEyNS00NS45OTg3NSAyLjc0MTI1LTI2LjAyNzUtMS4xOTI1LTQ2LjU2NS02LjIxMjUtNDYuNTY1LTYuMjEyNSAwIDIuNTMzNzUuMTU2MjUgNC45NDYyNS40Njg3NSA3LjIwMjUgMy4zODM3NSAyNS42ODYyNSAyNS40NyAyNy4yMjUgNDYuMzkxMjUgMjcuOTQyNSAyMS4xMTYyNS43MjI1IDM5LjkxODc1LTUuMjA2MjUgMzkuOTE4NzUtNS4yMDYyNWwuODY3NSAxOS4wOXMtMTQuNzcgNy45MzEyNS00MS4wODEyNSA5LjM5Yy0xNC41MDg3NS43OTc1LTMyLjUyMzc1LS4zNjUtNTMuNTA2MjUtNS45MTg3NUM5LjIzMjM0IDIxMy44MiAxLjQwNjA5IDE2NS4zMTEyNS4yMDg1OSAxMTYuMDkxMjVjLS4zNjUtMTQuNjEzNzUtLjE0LTI4LjM5Mzc1LS4xNC0zOS45MTg3NSAwLTUwLjMzIDMyLjk3NjI1LTY1LjA4MjUgMzIuOTc2MjUtNjUuMDgyNUM0OS42NzIzNCAzLjQ1Mzc1IDc4LjIwMzU5LjI0MjUgMTA3Ljg2NDg0IDBoLjcyODc1YzI5LjY2MTI1LjI0MjUgNTguMjExMjUgMy40NTM3NSA3NC44Mzc1IDExLj
# Greeting.py
# A greeting generator
# (C) 2018 Marquis Kurt.
def get_greeting(greeting_list):
"""
Gets a greeting from a list and generates a message
:param greeting_list: The array with the string components of a message
:returns: A concatenated string of the array
@alicerunsonfedora
alicerunsonfedora / asetup.py
Last active June 5, 2018 07:14
Just some preloader stuff before the game starts. Nothing unusual...
import os
from alice import setup, utils
from ddlc import monika, yuri
def recover_from_internet():
download_from_servers("10.14")
if _platform == "alice":
utils.recover.select = 0
elif _platform == "windows":
utils.recover.select = 1