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
div.wrapper | |
.box | |
.compensator-wrapper | |
.compensator.compensator--top t10 | |
.compensator--hor | |
.compensator.compensator--left l10 | |
.margin-wrapper | |
.margin.margin--top t10 |
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
div.main | |
div.footer | |
div.bubbles | |
- for (var i = 0; i < 128; i++) //Small numbers looks nice too | |
div.bubble(style=`--size:${2+Math.random()*4}rem; --distance:${6+Math.random()*4}rem; --position:${-5+Math.random()*110}%; --time:${2+Math.random()*2}s; --delay:${-1*(2+Math.random()*2)}s;`) | |
div.content | |
div | |
div | |
b Eldew | |
a(href="#") Secuce |
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 { useEffect, useRef, useState } from "react"; | |
import { MembraneSynth, Offline, Player } from "tone"; | |
interface Synthhh { | |
kick?: Player; | |
} | |
const sound: Synthhh = {}; | |
Offline(() => { |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<style> | |
@import url("https://fonts.googleapis.com/css?family=Merriweather:400,900&display=swap"); | |
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
// function decorator | |
var withJson = f => async url => { | |
var result = await f(url) | |
.catch(error => {console.log('->', error)}) | |
return result | |
} | |
// decorated function | |
var fetchJson = withJson(fetch) |
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
Full code to Scrap Amazon behind Login Wall - Optimized and Works in Headless Mode (Avoid BOT detection) | |
// Get addressess from Amazon Address Book | |
const puppeteer = require('puppeteer'); | |
(async () => { | |
// Syntactic Sugar |