Skip to content

Instantly share code, notes, and snippets.

View u-u-z's full-sized avatar
🧶
play blender

Remi_IO u-u-z

🧶
play blender
View GitHub Profile
@kconner
kconner / macOS Internals.md
Last active June 10, 2024 08:38
macOS Internals

macOS Internals

Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.

Starting Points

How to use this gist

You've got two main options:

@u-u-z
u-u-z / README.md
Created July 21, 2022 18:17 — forked from MJeorrett/README.md
Private Ethereum network using Clique

DRAFT

Assume working directory of ~/playground/ethereum and that terminal windows are all opened here.

Create account

$ geth --datadir ./node1 account new

You will be prompted to enter and confirm a password. This will create a "keystore" directory in your working directory with the key for the created account saved in it.

@troyfontaine
troyfontaine / 1-setup.md
Last active June 8, 2024 22:21
Signing your Git Commits on MacOS

Methods of Signing Git Commits on MacOS

Last updated March 13, 2024

This Gist explains how to sign commits using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.

Additionally, 1Password now supports signing Git commits with SSH keys and makes it pretty easy-plus you can easily configure Git Tower to use it for both signing and ssh.

For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.

@Artoria2e5
Artoria2e5 / devise.zh-CN.yml
Last active December 5, 2023 04:35
Devise 4.2.6 zh files
# Chinese (China) translations for Devise 4.2.1
# 4.2.0: By HealthGrid at https://gist.github.com/HealthGrid/2d702b38aa6ffe0233f27d3d5be9250f
# 4.2.1: By Artoria2e5 (this file)
# - Fixes pluralization problems (zh only takes "other")
# - Misc translation improvements, you know what these grammar things are.
# - Should be minor enough to claim CC0 for my changes.
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
zh-CN:
devise:
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy
@v4lour
v4lour / AssemblyLanguage.md
Last active April 12, 2022 03:07
汇编语言(王爽著)笔记

汇编语言(王爽著)笔记

@v4lour

第一章 基础知识

汇编语言是直接在硬件上工作的编程语言,由以下3类指令组成:

  • 汇编指令:机器码的助记符,有对应的机器码
  • 伪指令:没有对应的机器码,由编译器执行