I hereby claim:
- I am wtype on github.
- I am wtype (https://keybase.io/wtype) on keybase.
- I have a public key whose fingerprint is 2D1C 58AD 890B 9309 3100 3EA2 D726 E610 0814 9A6B
To claim this, I am signing this object:
| (() => { | |
| console.clear(); | |
| console.log('%c Searching for duplicates... ', 'background:#8b83fc;color:black'); | |
| const seenJobs = {}; | |
| const runningInterval = 1500; | |
| let currentPage = window.location.search; | |
| let jobListSize = 0; | |
| let passes = 0; |
I hereby claim:
To claim this, I am signing this object:
| import matplotlib.pyplot as plt | |
| from wordcloud import WordCloud | |
| import requests | |
| from bs4 import BeautifulSoup | |
| def is_wanted_element(element): | |
| if element.parent.name in ['style', 'script', 'head', 'title', 'meta', '[document]']: | |
| return False | |
| return True |
| const net = require('net'); | |
| function findUnusedPort() { | |
| return new Promise((resolve, reject) => { | |
| const server = net.createServer(); | |
| // Bind to port 0 to ask the kernel to find a | |
| // local port from a range of open addresses. | |
| // Close the connection once a port is found. | |
| server.listen(0, () => { |
| const cook = (() => { | |
| const tones = ['🏻', '🏼', '🏽', '🏾', '🏿']; | |
| const people = ['🧑', '👩', '👨']; | |
| return () => { | |
| const randomTone = tones[Math.floor(Math.random() * tones.length)]; | |
| const randomPerson = people[Math.floor(Math.random() * people.length)]; | |
| const cook = randomPerson + randomTone + '' + '🍳'; | |
| return cook; | |
| }; | |
| })(); |
| import fs from 'fs'; | |
| import path from 'path'; | |
| import sharp from 'sharp'; | |
| function addPngExtension(path: string) { | |
| return path.split(".").at(0) + ".png"; | |
| } | |
| function ensureDir(dirPath: string): Promise<void> { | |
| return new Promise((resolve, reject) => { |