<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%">
<defs>
<filter id="noise" x="0" y="0" width="100%" height="100%" filterUnits="objectBoundingBox" primitiveUnits="userSpaceOnUse" color-interpolation-filters="linearRGB">
<feTurbulence type="fractalNoise" baseFrequency=".45 .45" numOctaves="1" seed="1" stitchTiles="noStitch" x="0%" y="0%" width="100%" height="100%" result="turbulence1"/>
<feBlend mode="multiply" x="0%" y="0%" width="100%" height="100%" in="SourceGraphic" in2="turbulence1" result="blend"/>
</filter>
</defs>
</svg>
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
Whiplash aespa | |
As It Was Harry Styles | |
Han Jan Peggy Gou | |
Here With Me d4vd | |
Bigger In Texas Megan Thee Stallion | |
Everybody Wants To Rule Tears For Fears | |
End of Beginning Djo | |
RUN2U STAYC | |
大雨 - 滾石40 滾石撞樂隊 deca joins | |
Late Night Feelings (fe Mark Ronson & Lyk |
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
const fib = num => num < 3 | |
? 1 | |
: fib(num - 1) + fib(num - 2) | |
console.log(fib(7)) |
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
const sumOfPrev = arr => { | |
let len = arr.length | |
return arr[len - 1] + arr[len - 2] | |
} | |
const fib = num => { | |
if (num === 1) return [1] | |
else if (num === 2) return [1, 1] | |
else { | |
const prev = fib(num - 1) |
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
const isArr = arg => Object.prototype.toString.call(arg) === '[object Array]' | |
const flat = inputAny => | |
( | |
isArr(inputAny[0]) | |
? flat(inputAny[0]) | |
: [inputAny[0]] | |
) | |
.concat( | |
inputAny.length > 1 | |
? flat(inputAny.slice(1)) |
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
data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 | |
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAACklEQVR4nGMAAQAABQABDQottAAAAABJRU5ErkJggg== | |
data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E | |
data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg"/%3E | |
http://png-pixel.com/ |