Skip to content

Instantly share code, notes, and snippets.

View ethanlee16's full-sized avatar
🏠
Working from home

Ethan Lee ethanlee16

🏠
Working from home
View GitHub Profile
[
{
"name": "Imm Thai Street Food",
"review": "We had always wanted to try Imm Thai for the longest time, but pre-covid 19 was always dissuaded by the huge line whenever we were walking by.",
"image": "https://s3-media0.fl.yelpcdn.com/bphoto/Kdz3LFh_nxkfpcHTJ4LHJg/348s.jpg",
"priceRange": 2,
"address": "2068 University Ave, Downtown Berkeley"
},
{
"name": "Gypsy's Trattoria Italiana",
@ethanlee16
ethanlee16 / manifest.json
Created October 15, 2018 22:48
A base Chrome extension manifest for a New Tab page
{
"name": "My New Tab Page",
"version": "1.0",
"description": "A description for your New Tab page goes here.",
"manifest_version": 2,
"chrome_url_overrides" : {
"newtab": "your_html_file_name.html"
}
}
@ethanlee16
ethanlee16 / disable-google-slides-nav-helper.user.js
Last active June 8, 2020 18:00
Disables Google Slides navigation helper in presenter mode with Alt- or Option-H.
// ==UserScript==
// @name Disable Google Slides Presentation Helper
// @namespace https://ethanl.ee/
// @version 1.1
// @description Use key "Alt/Option-H" to hide the slides navigator in presentation mode.
// @author Ethan Lee
// @match http*://docs.google.com/presentation/d/*
// @grant none
// ==/UserScript==

Keybase proof

I hereby claim:

  • I am ethanlee16 on github.
  • I am ethanlee (https://keybase.io/ethanlee) on keybase.
  • I have a public key ASDdkdjnwc3kBEKXEAB4mX0WzEDNYWn0Qrn-xvaeF28q0Qo

To claim this, I am signing this object:

/*
Lo-Dash 2.4.1 (Custom Build) lodash.com/license | Underscore.js 1.5.2 underscorejs.org/LICENSE
Build: `lodash underscore exports="amd,commonjs,global,node" -o ./dist/lodash.underscore.js`
*/
window.Modernizr = function(d, h, p) {
function u(d, h) {
return typeof d === h
}
@ethanlee16
ethanlee16 / gist:f04d7c1a52033b43c3d3
Created June 1, 2015 06:18
Bootstrap media queries
/* Large desktops and laptops */
@media (min-width: 1200px) {
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
}