Skip to content

Instantly share code, notes, and snippets.

View sayore's full-sized avatar
🍉

Amy Krippner sayore

🍉
View GitHub Profile
@sayore
sayore / transx.css
Created April 11, 2024 09:39
Stylish Theme for X with transflag as Background.
body {
background:linear-gradient(180deg, #5BCEFA37 20%, #F5A9B837 20%, 40%, #FFFFFF37 40%, 60%, #F5A9B837 60%, 80%, #5BCEFA37 80%),rgba(100,100,100,0.5) !important;
}
header > div > div > div > div:nth-of-type(1) > div:nth-of-type(1) > h1 > a > div > svg {
opacity:0;
}
header > div > div > div > div:nth-of-type(1) > div:nth-of-type(1) > h1 > a > div {
background-size: 50px 50px;
@sayore
sayore / shimmer.json
Last active September 2, 2022 22:28
Just a simple cherryon top for AoF5 to use with shimmer.
{
"LightBlock": [
{
"block": "minecraft:sea_lantern",
"r": 34,
"g": 255,
"b": 200,
"a": 255,
"radius": 7
},
@sayore
sayore / export-directus.js
Last active November 4, 2019 18:47
Export directus Script
//show tables;
//SHOW FIELDS FROM directus_users
var fs = require('fs');
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'docker',
@sayore
sayore / index.html
Created September 2, 2017 20:51
gulpfile.js
const gulp = require('gulp');
const imagemin = require('gulp-imagemin');
const uglify = require('gulp-uglify');
const sass = require('gulp-sass');
const concat = require('gulp-concat');
const browserSync = require('browser-sync').create();
gulp.task('message', () => {
return console.log("Hello World!");
})