<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
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/ |
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
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 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
Feel Like Makin' Love ( Supershy & Robert | |
Albatross - 2018 Master Fleetwood Mac | |
Force majeure Gaspard Augé & Ju | |
Music Sounds Better Wit Stardust & Benjam | |
Before the Lobotomy Green Day | |
Night Patrol Lifelike | |
Show Me the Right NEIL FRANCES | |
Novacaine - Demo Green Day | |
Another Chance - Radio Roger Sanchez | |
Lady - Hear Me Tonight Modjo |