Skip to content

Instantly share code, notes, and snippets.

View arthurgousset's full-sized avatar

Arthur Gousset arthurgousset

View GitHub Profile
@thesamesam
thesamesam / xz-backdoor.md
Last active June 8, 2025 01:04
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.

Background

@Jesse-Sawa
Jesse-Sawa / sanity-check.test.ts
Created September 26, 2022 18:08
Sanity check for staged ASv2 contracts. Has dependencies on associated ABI files
import { ContractKit, newKit } from "@celo/contractkit";
import { Contract } from "web3-eth-contract";
import {
ESCROW_CONTRACT,
FA_CONTRACT,
ODIS_PAYMENTS_CONTRACT,
} from "./constants";
// STAGING (private testnet)
const STAGING_RPC = "http://127.0.0.1:8545";
@ww9
ww9 / gist_blog.md
Last active April 23, 2025 12:56
Using Gist as a blog #blog

Blogging with Gist

Gist simplicity can turn blogging into a liberating experience.

Pros Cons
✅ Free, simple, fast, hassle-free ❌ Image upload in comments only
✅ Tagging ❌ No post pinning
✅ Search ❌ Doesn't look like a blog
✅ Revisions ❌ Unfriendly URLs
@seanh
seanh / user_stories.md
Last active February 20, 2025 15:51
My notes on user stories

User Stories

Reading list

  • [Mark Shead: Creating Good User Stories][Mark Shead]
  • [GOV.UK Service manual: Writing user stories][GOV.UK]
  • [Mike Cohn's blog posts about user stories][Mike Cohn]
  • [Mike Cohn: User Stories Applied (book)][User Stories Applied]
@santisbon
santisbon / Search my gists.md
Last active June 3, 2025 07:26
How to search gists.

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html

@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 12, 2025 17:42
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@cgthayer
cgthayer / docker-n00b.md
Last active April 3, 2025 20:06
Docker Notes for n00bs

Basics

Images are read-only templates, but you can diff and push them to save many versions. Containers are instances of images, that are also directories and usually a single running process.

Images can be layered, you start from a base and make changes. Containers are versioned so that you can make changes and save the filesystem state as a new Image.

@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active June 6, 2025 14:11
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@jonschlinkert
jonschlinkert / markdown-cheatsheet.md
Last active April 23, 2025 17:58
A better markdown cheatsheet.
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 11, 2025 23:59
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname