daily:
Supplement | Dose | mg | rep |
---|---|---|---|
l-theanine | 1 pill | 200 | 1-2 |
coffee | 1 cup | 1-3 | |
- caffine | ??? | ||
- mct-oil | 1 squirt | ??? |
// ==UserScript== | |
// @name youtube quick playlist button | |
// @namespace http://neonfuz.xyz/ | |
// @author neonfuz | |
// @version 0.9 | |
// @match https://www.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?domain=youtube.com | |
// @updateURL https://gist.github.com/neonfuz/ea14fe2ad32c4caa860f36bb521b9a60/raw/youtube-quick-playlist.user.js | |
// @downloadURL https://gist.github.com/neonfuz/ea14fe2ad32c4caa860f36bb521b9a60/raw/youtube-quick-playlist.user.js | |
// ==/UserScript== |
yt-miniplayer-in-playlist-sidebar.user.css: yt-miniplayer-in-playlist-sidebar.user.less | |
lessc $< > $@ | |
sed -i '/^@var/d' $@ | |
sed -i '/^@preprocessor/d' $@ |
// ==UserScript== | |
// @name Youtube Sorter | |
// @description client side playlist sorting on youtube | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.youtube.com/* | |
// @icon https://www.google.com/s2/favicons?domain=youtube.com | |
// @grant none |
const fs = require('node:fs'); | |
const moveZeroes = (nums) => { | |
let write = 0; | |
for (let read = 0; read < nums.length; ++read) | |
if (nums[read] !== 0) | |
nums[write++] = nums[read]; | |
for (; write < nums.length; ++write) | |
nums[write] = 0; | |
return nums; |