Skip to content

Instantly share code, notes, and snippets.

View lucamotion's full-sized avatar
🤍

luca 🐈‍⬛ lucamotion

🤍
View GitHub Profile
@lucamotion
lucamotion / styles.css
Last active April 9, 2026 00:20
feishin purple theme
/* Made for accent color rgb(31, 16, 36) but you can use whatever you want
/* UNCOMMENT THIS STYLE IF YOU WANT TO REMOVE THE ALBUM COLOR GRADIENT ON ALBUM PAGES */
/* .fs-library-background-overlay-module-overlay {
display:none;
}*/
/* Theme Colors */
:root {
--theme-colors-border: rgba(244, 237, 247, 0.05) !important;
--theme-colors-primary-contrast: rgb(244 237 247) !important;
// ==UserScript==
// @name SendToClient-Tags
// @namespace NotMareks Scripts (edited by teapot)
// @description Painlessly send torrents to your bittorrent client.
// @match *://*.gazellegames.net/*
// @match *://*.animebytes.tv/*
// @match *://*.orpheus.network/*
// @match *://*.passthepopcorn.me/*
// @match *://*.greatposterwall.com/*
// @match *://*.redacted.ch/*
@lucamotion
lucamotion / card_bot_inventory_filters.ts
Last active September 8, 2021 11:09
An easy solution to parsing inventory filters for your card bot.
// written by lucaa#5555 <https://github.com/dreamingkills>
// free to use, no attribution required
type Filters = { [key: string]: string | undefined };
function parseFilters(args: string[]): Filters {
const filters: Filters = {}; // create an empty object to store our filters
let currentFilter: string | undefined; // this variable will hold the current tag name, or undefined if there isn't one
@lucamotion
lucamotion / scbema.sql
Created June 18, 2021 01:06
Zephyr DB Schema
-- MySQL dump 10.15 Distrib 10.0.38-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: zephyr
-- ------------------------------------------------------
-- Server version 10.0.38-MariaDB-0ubuntu0.16.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;