Skip to content

Instantly share code, notes, and snippets.

View vvonchain's full-sized avatar
🎯
Focusing

vvonchain

🎯
Focusing
View GitHub Profile
@theconektd
theconektd / github.css
Created April 30, 2012 02:11
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
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
@yuwen41200
yuwen41200 / .zshrc
Last active November 7, 2024 19:40
Custom .zshrc File
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/ywpu/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="agnoster"
@pmkay
pmkay / top-brew-packages.txt
Last active October 25, 2025 05:12 — forked from r5v9/top-brew-packages.txt
Top homebrew packages
node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
python3: Interpreted, interactive, object-oriented programming language
coreutils: GNU File, Shell, and Text utilities
pkg-config: Manage compile and link flags for libraries
chromedriver: Tool for automated testing of webapps across many browsers
awscli: Official Amazon AWS command-line interface
automake: Tool for generating GNU Standards-compliant Makefiles
@liamzebedee
liamzebedee / NOTES.md
Last active May 23, 2022 19:16
Zero Knowledge Proofs - Web3 Summit

Zero Knowledge Proofs workshop @ Decentralize Now!

In a circuit we generate a proof of this relation: inputs(public and private) => circuit => output

We have inputs, a defined circuit, and an output.

The proof is something that proves this relation, without revealing the private input.

Some examples of circuits:

  • Merkle trees
  • UXTO's (for scalable coins)
@mkfares
mkfares / zsh-keyboard-shortucts.md
Last active November 12, 2025 11:52
Common zsh Keyboard Shortcuts on macOS Catalina

Common zsh Keyboard Shortcuts on macOS

Navigation

CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward

@ih2502mk
ih2502mk / list.md
Last active November 21, 2025 00:07
Quantopian Lectures Saved
@TrevorFSmith
TrevorFSmith / md
Last active February 1, 2022 07:09
Reading list topics for an informed metaverse discussion
# Metaverse reading list
## Society
Standards collaboration and governance
- Patents: protection, licensing
- Brands and trademarks
- Limited liability and warranty
- Consensus, competition, and conflicting goals
- Standards development processes
@merlinmann
merlinmann / wisdom.md
Last active November 14, 2025 03:16
Merlin's Wisdom Project (Draft)

Merlin's Wisdom Project

Or: “Everybody likes being given a glass of water.”

By Merlin Mann.

It's only advice for you because it had to be advice for me.

@kevinjalbert
kevinjalbert / import-raindrop-highlights-into-readwise.rb
Last active February 28, 2025 22:51
Import Raindrop.io Highlights into Readwise
#!/usr/bin/env ruby
require "httparty"
require "nokogiri"
require "open-uri"
require "uri"
RAINDROP_AUTH_TOKEN="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
READWISE_AUTH_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
LAST_SAVED_HIGHLIGHT=000000000 # <- Keeps track of import position (Updates automatically)