Skip to content

Instantly share code, notes, and snippets.

@g00fy-
g00fy- / tmux-cheatsheet.markdown
Created March 14, 2016 21:31 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@g00fy-
g00fy- / tinder-api-documentation.md
Created September 27, 2016 08:27 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

Tinder API documentation

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)

Note: this was written in April/May 2014 and the API may have changed since. I have nothing to do with Tinder, nor their API, and I do not offer any support for anything you may build on top of this

API Details

@g00fy-
g00fy- / tevm-example.ts
Last active November 4, 2024 13:11
tevm
import { createMemoryClient, walletActions } from 'tevm'
import { HttpTransportConfig, fallback, http, parseUnits } from 'viem';
import { mainnet } from 'viem/chains'
const options: HttpTransportConfig = {
timeout: 5000,
async onFetchRequest(request: Request) {
console.log(`Fetching ${request.url.toString()}`, await request.clone().text())
},
async onFetchResponse(response) {