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
function intToBase16(num) { | |
if (num === 0) return '0' | |
const digits = Array.from(new Array(16), (_, i) => i < 10 ? i : String.fromCharCode(65 + i - 10)) | |
let base16 = '' | |
while (num !== 0) { | |
base16 = digits[num % 16] + base16 | |
num = Math.floor(num / 16) | |
} | |
return base16 | |
} |
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
// fetch with caches api | |
import { useState, useEffect, useRef } from 'react'; | |
export default function useCacheFetche(cacheId: string) { | |
const fetcher = <T>(url: string) => { | |
const [data, setData] = useState<T | null>(null); | |
const [error, setError] = useState(null); | |
const cacheRef = useRef<Cache | null>(null); |
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
// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left) | |
// https://gist.github.com/JamieMason/7580315 | |
// | |
// 1. Go to https://twitter.com/YOUR_USER_NAME/following | |
// 2. Open the Developer Console. (COMMAND+ALT+I on Mac) | |
// 3. Paste this into the Developer Console and run it | |
// | |
// Last Updated: 17 March 2021 | |
(() => { | |
const $followButtons = '[data-testid$="-unfollow"]'; |
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 { useState, useLayoutEffect } from 'react'; | |
interface UseWheelType { | |
deltaX: number; | |
deltaY: number; | |
} | |
const useWheel = (ref: React.RefObject<HTMLDivElement>): UseWheelType => { | |
const [deltaX, setDeltaX] = useState<number>(0); | |
const [deltaY, setDeltaY] = useState<number>(0); |
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
<script> | |
export let count = 0 | |
$: doubled = count * 2 | |
</script> | |
<main> | |
<h1>doubled count: {doubled}!</h1> | |
<button on:click={() => count ++}>add</button> | |
</main> |
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
export PS1="\W \\$ " | |
# alias | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias l="ls -Ga" | |
alias zshrc="vim ~/.zshrc" | |
alias gs="git status" | |
alias gb="git branch" | |
alias gl="git log" |
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
<template> | |
<editable | |
:editable="editable" | |
target="aaa.bbb.ccc" | |
@handler="handler" | |
> | |
<slot name="read"></slot> | |
<slot name="edit"></slot> | |
<slot name="message"></slot> | |
</editable> |
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
#https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs | |
version: 2.1 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:10.15.3 | |
working_directory: ~/test-ci | |
steps: |
NewerOlder