Skip to content

Instantly share code, notes, and snippets.

View ohong's full-sized avatar
🦁
Exploring

Oscar Hong ohong

🦁
Exploring
View GitHub Profile
<!-- Proyecto Diaz Coffee Landing Page - Shopify Liquid Template -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ shop.name }} - Rebuilding Farms, Brewing Legacies</title>
{{ 'base.css' | asset_url | stylesheet_tag }}
@ohong
ohong / Google-Fellows-prompt.md
Last active April 24, 2025 14:49
This is the Deep Research prompt I used to get profiles on known Google Fellows, which was later converted into a thread and essay.

Write a detailed report covering every known Google Fellow (i.e. Level 10 or above internally). A list of them are included below, although you may find others if you can confirm that they are in fact a Google Fellow.

Write a short profile of each engineer, a few points for evidence of their extraordinary engineering prowess, most likely reasons they were promoted to Google Fellow, their most notable contributions at Google (e.g. leading major projects, invention, etc.) and an estimate of how much their direct contributions are responsible for Google's current market cap and your reasoning.

For example (this is hypothetical), if their work directly optimised Search by 10% and Search makes up roughly ~50% of Google's overall market cap (currently $1.9 trillion USD), then you can estimate their work to be valued at $95B.

Add all their contributions together for a cumulative total of enterprise value created by all Google Fellows all-time (again, in terms of contribution to market cap).

Conclude with a disc

@ohong
ohong / Brewfile
Created April 4, 2025 00:52
Oscar's Tools & Apps
# Command line tools
brew 'ata' # ChatGPT in the terminal
brew 'cask' # Extension to brew supporting installation of graphical applications
brew 'ffmpeg' # Complete solution to record, convert and stream audio and video
brew 'gh' # GitHub's CLI
brew 'git' # Version control
brew 'htop' # Interactive process viewer, an enhanced version of top
brew 'imagemagick' # Command-line tool for manipulating images
brew 'mailsy' # Command-line email client or email utility
brew 'mas' # Mac App Store command-line interface
@ohong
ohong / oh-new-machine-setup.md
Last active January 5, 2022 13:39
How I set up a new machine (2021 M1 MacBook Pro)

Setting up a new computer

#dev

Here are the settings I change & apps I install when setting up a new computer for development and general productivity. If you have any suggestions for macOS tips or new apps I should try, tweet me @oscrhong.

Settings

  • Set my caps lock key to be escape
  • Hide icons on Desktop — defaults write com.apple.finder CreateDesktop false && killall Finder

Dock preferences

  • automatically hide
import json
import requests
import time
try:
from urllib.parse import urljoin, urlencode
except ImportError:
from urllib import urlencode
from urlparse import urljoin
<!DOCTYPE html>
<html>
<head>
<style>
.red {
background-color: red;
}
.green {
background-color: green;
}