Skip to content

Instantly share code, notes, and snippets.

View BrandenBedoya's full-sized avatar
🤔

Branden Bedoya BrandenBedoya

🤔
View GitHub Profile
@smaharj1
smaharj1 / chasebank.js
Last active July 19, 2024 22:26
Chase bank auto apply offers
/**
APPLY CHASE BANK CC OFFERS
This script helps you apply all the Chase bank credit cards automatically.
- Login to Chase and go to https://secure03b.chase.com/web/auth/dashboard#/dashboard/offers/index.
- Open 'Inspect Element'
- Go to Scripts tab and copy this script.
- Run this script.
*/

Branden Bedoya

[email protected] ✨ Github: amp5

Professional Experience


Incoming BOLD Finance Intern
Google Sunnyvale, California

@mayneyao
mayneyao / notion2blog.js
Last active June 7, 2025 05:54
Notion.so > Personal Blog | custom domain + disqus comment
const MY_DOMAIN = "agodrich.com"
const START_PAGE = "https://www.notion.so/gatsby-starter-notion-2c5e3d685aa341088d4cd8daca52fcc2"
const DISQUS_SHORTNAME = "agodrich"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
@dwaxe
dwaxe / creditcardoffers.js
Last active March 8, 2025 00:02
Automatically activate credit card cash back offers
// Bank of America: https://secure.bankofamerica.com/customer-service/deals/
document.querySelectorAll('div.deal-logo').forEach(e => e.click())
// Chase: https://secure07a.chase.com/web/auth/dashboard#/dashboard/offers/merchantFundedOffers/requestAvailableMerchantOffers
const sleep = (milliseconds) => new Promise(resolve => setTimeout(resolve, milliseconds))
flyoutClose = document.querySelector('a#flyoutClose')
addOffer = document.querySelector('a.sixersoffers__cta')
while (addOffer.text === "Add to card") {
addOffer.click()
await sleep(3000)
Process for setting up github pages with namecheap domain.
1. Go to namecheap.com, select and buy domain name.
2. Login to namecheap, go to username drop down and select dashboard.
3. Go to DomainList
4. Click manage button
5. Click Advanced DNS tab
6. Click add record and add three records:
Type: A Record | Host: @ | Value: 192.30.252.153 | TTL: Automatic
with
dau as (
-- This part of the query can be pretty much anything.
-- The only requirement is that it have three columns:
-- dt, user_id, inc_amt
-- Where dt is a date and user_id is some unique identifier for a user.
-- Each dt-user_id pair should be unique in this table.
-- inc_amt represents the amount of value that this user created on dt.
-- The most common case is
-- inc_amt = incremental revenue from the user on dt
@derhuerst
derhuerst / intro.md
Last active May 25, 2025 22:13
Installing Git on Linux, Mac OS X and Windows