top to bottom: fancyscale, linear, nearest neighbor:
View ios_html_reader.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Reader</title> | |
<meta name="application-name" content="Reader" /> | |
<meta name="apple-mobile-web-app-title" content="Reader" /> | |
<meta name="apple-mobile-web-app-capable" content="yes" /> | |
<meta name="mobile-web-app-capable" content="yes" /> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> |
View Key.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
createRoot, | |
createSignal, | |
createMemo, | |
onCleanup, | |
untrack, | |
JSX, | |
Accessor | |
} from "solid-js"; |
View CALLOC.md
usage
export allocation functinos from zig
comptime {
@import("calloc").wrapAllocator(struct {
pub fn getAllocator() std.mem.Allocator {
return …;
}
View vimtext.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// /\ / \ \/\ /\/\ /\/ \/ \/\/ | |
// | |
// / i, /\ a, /\/ n, /\/\ m | |
// \ i, \/ v, \/\ h, \/\/ w | |
const swslash = { | |
a: "/\\", i: "/", m: "/\\/\\", n: "/\\/", | |
}; | |
const swback = { | |
i: "\\", h: "\\/\\", v: "\\/", w: "\\/\\/", |
View gist:11c8a43daa8a6964ac256b39c607b156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
if(window.__vvviewer) window.__vvviewer.remove(); | |
window.__vvviewer = document.createElement("div"); | |
__vvviewer.setAttribute("style", "position:fixed;left:0;right:0;width:100%;background-color:red;height:4px;z-index:1000000"); | |
document.body.appendChild(__vvviewer); | |
function update() { | |
__vvviewer.style.top = visualViewport.offsetTop + "px"; |
View build.zig.md
(written on zig version 0.7.1+d96f5b38a
)
Basics
zig build <step>
runs a specified step from the build.zig
file. build.zig
is a file written in zig that describes all the available things that can be built
An empty build file:
const std = @import("std");
View getlatest.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env fish | |
function start_of_line | |
echo -ne "\r"(tput el) | |
end | |
function fail_error | |
echo | |
echo (set_color red)$argv | |
exit |
View discord-font-switcher.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
window.buttonarea && window.buttonarea.remove(); | |
const buttonarea = document.createElement("div"); | |
window.buttonarea = buttonarea; | |
const ttl = document.querySelector("#app-mount > div.app-1q1i1E > div > div.layers-3iHuyZ.layers-3q14ss > div > div > nav > div.scroller-2TZvBN.none-2Eo-qx.scrollerBase-289Jih > div:nth-child(2)"); | |
if(!ttl) alert("Uh oh! discord class hashes or app layout changed!"); | |
ttl.appendChild(buttonarea); | |
const mkbtn = (txt, ffmly, onev) => { | |
const btn = document.createElement("button"); | |
btn.textContent = txt; |
View haveibeenpwned_password.fish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env fish | |
set password (read -s) | |
set sha1hash (echo -n $password | sha1sum) | |
set firstfiv (string sub -s 1 -l 5 $sha1hash) | |
set lastpart (string sub -s 6 -l 35 $sha1hash) | |
curl -s https://api.pwnedpasswords.com/range/$firstfiv | grep -i "^"$lastpart":" | |
NewerOlder