- Hagakure wiki
- Serial Experiments Lain
- Haikyuu
- Re:Zero S2 and onwards
- Boku no Hero
| { | |
| "editor.fontFamily": "'Monaspace Neon', 'Fira Code', Menlo, Monaco, monospace", | |
| "editor.inlineSuggestion.fontFamily": "'Monaspace Kypton', monospace", | |
| "editor.fontLigatures": "'calt', 'liga', 'ss01', 'ss06'", | |
| "terminal.integrated.fontFamily": "'Monaspace Neon', 'Fira Code', Menlo, Monaco, monospace", | |
| } |
| -- formatting | |
| vim.api.nvim_create_autocmd('BufWritePre', { | |
| pattern = { "*.go" }, | |
| callback = vim.lsp.buf.format, | |
| }) | |
| -- goimports | |
| vim.api.nvim_create_autocmd('BufWritePre', { | |
| pattern = '*.go', | |
| callback = function () |
| # Template file for 'replay-sorcery' | |
| pkgname=replay-sorcery | |
| version=0.6.0 | |
| revision=1 | |
| hostmakedepends="pkg-config" | |
| makedepends="ffmpeg-devel" | |
| depends="ffmpeg libdrm" | |
| build_style=cmake | |
| configure_args="-DCMAKE_BUILD_TYPE=Release" | |
| make_cmd=make |
| // ==UserScript== | |
| // @name Replace Wishlist Links - elfster.com | |
| // @namespace Violentmonkey Scripts | |
| // @match https://www.elfster.com/profile/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=elfster.com | |
| // @version 0.1 | |
| // @description strip elfster wishlist links so it doesn't die with an adblocker :skull: | |
| // @author cocoastorm <[email protected]> | |
| // @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2 | |
| // ==/UserScript== |
| (function() { | |
| function findClips() { | |
| const rows = document.querySelectorAll('[data-a-target=clips-manager-table-row-container]'); | |
| if (!rows.length) { | |
| console.error('no clip rows found'); | |
| } | |
| const clips = []; |
| " ================================================================= | |
| " settings | |
| " ================================================================= | |
| " middle-click paste with mouse | |
| set mouse=v | |
| " number of columns occupied by tab character | |
| set tabstop=2 | |
| " multiple spaces as tabstops so <BS> does the right thing |
| // ==UserScript== | |
| // @name humble export downloads as a text file | |
| // @version 1 | |
| // @match https://www.humblebundle.com/downloads* | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.0/FileSaver.min.js | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; |
| .cache/ | |
| dist/ | |
| node_modules/ |
| package main | |
| import ( | |
| "fmt" | |
| "time" | |
| ) | |
| func main() { | |
| const ( | |
| input = "November 2019" |