Skip to content

Instantly share code, notes, and snippets.

View esirK's full-sized avatar
🎯
Focusing

Isaiah King'ori esirK

🎯
Focusing
View GitHub Profile
@johnpolacek
johnpolacek / .gitconfig
Last active May 8, 2024 04:05
My current .gitconfig aliases
[alias]
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
brD = branch -D
merged = branch --merged
st = status
aa = add -A .
const request = require('request');
const cheerio = require('cheerio');
const url = 'https://browser.geekbench.com/';
async function getData(url) {
let requests = [];
return new Promise((resolve, reject) => {