Skip to content

Instantly share code, notes, and snippets.

View garyhtou's full-sized avatar
🪄
merge wand™️

Gary Tou garyhtou

🪄
merge wand™️
View GitHub Profile

g.co, Google's official URL shortcut (update: or Google Workspace's domain verification, see bottom), is compromised. People are actively having their Google accounts stolen.

Someone just tried the most sophisticated phishing attack I've ever seen. I almost fell for it. My mind is a little blown.

  1. Someone named "Chloe" called me from 650-203-0000 with Caller ID saying "Google". She sounded like a real engineer, the connection was super clear, and she had an American accent. Screenshot.

  2. They said that they were from Google Workspace and someone had recently gained access to my account, which they had blocked. They asked me if I had recently logged in from Frankfurt, Germany and I said no.

  3. I asked if they can confirm this is Google calling by emailing me from a Google email and they said sure and sent me this email and told me to look for a case number in it, which I saw in

@palkan
palkan / double_query.txt
Created November 15, 2022 02:25
Syntax Tree doubles query
# Usage:
# gem install syntax_tree
# stree double_query.txt spec/**/*.rb
#
CallNode[
receiver: NilClass,
message: Ident[value: "double" | "instance_double"],
arguments: ArgParen[
arguments: Args[
parts: [StringLiteral | VarRef[value: Const], BareAssocHash]
@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": "*",