veryroundbird / arknights location header.html
0 likes
0 forks
2 files
Last active 2 weeks ago
make a custom work skin using the contents of skin.css and then use the markup in the html file for your location headers
| 1 | #workskin .locationHeader { |
| 2 | font-family: sans-serif; |
| 3 | position: relative; |
| 4 | height: 145px; |
| 5 | margin-top: 25px; |
| 6 | margin-left: 25px; |
| 7 | box-sizing: border-box; |
| 8 | } |
| 9 | |
| 10 | #workskin .locationHeader { |
veryroundbird / onionring-adaptation-for-petrapixel-sites.js
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | const webringContainer = '#webrings'; // edit this to be the selector of some container you want to put your webrings in |
| 2 | const webrings = { // follow the structure here to add more items if you have more |
| 3 | tyvnjam: { |
| 4 | vars: 'https://kazehai.com/else/tyvnjam/variables.js', |
| 5 | widget: 'https://kazehai.com/else/tyvnjam/widget.js' |
| 6 | }, |
| 7 | }; |
| 8 | |
| 9 | Object.keys(webrings).forEach((ring) => { |
| 10 | const ringCont = document.createElement('div'); |
veryroundbird / ao3markdown.user.js
0 likes
0 forks
1 files
Last active 1 month ago
makes the ao3 editor into a markdown editor instead. plain text forever
| 1 | // ==UserScript== |
| 2 | // @name AO3 Markdown Editor |
| 3 | // @namespace https://veryroundbird.house |
| 4 | // @version 2026-03-31 |
| 5 | // @description replaces the standard AO3 editor with a markdown editor that has syntax highlighting and a previewer for people with my brain disease |
| 6 | // @author You |
| 7 | // @match https://archiveofourown.org/works/* |
| 8 | // @match https://squidgeworld.org/works/* |
| 9 | // @match https://sunset.femslash.club/works/* |
| 10 | // @match https://superlove.sayitditto.net/works/* |
veryroundbird / otwa better dev admin account creation
0 likes
0 forks
2 files
Last active 1 month ago
| 1 | # Run this script and follow the onscreen instructions: |
| 2 | # bundle exec rails r script/create_admin.rb |
| 3 | |
| 4 | require "csv" |
| 5 | |
| 6 | include Rails.application.routes.url_helpers |
| 7 | |
| 8 | # Base URL |
| 9 | default_url_options[:host] = ArchiveConfig.APP_URL |
Newer
Older