- Site: https://graphite.dev
- Docs: https://docs.graphite.dev/
- Stacked PRs allow you to easily work like so:
- Work on branch
ACQ-000-part-A
(which is based on master) - Work on branch
ACQ-000-part-B
(which is based on part-A)
- Work on branch
{ | |
"resourceType": "Bundle", | |
"id": "2d335c5f-b100-447a-b434-afe57a7063fa", | |
"meta": { | |
"lastUpdated": "2024-10-17T11:47:55.633+00:00" | |
}, | |
"type": "searchset", | |
"total": 3, | |
"link": [ { | |
"relation": "self", |
{ | |
"resourceType": "Bundle", | |
"id": "2d335c5f-b100-447a-b434-afe57a7063fa", | |
"meta": { | |
"lastUpdated": "2024-10-17T11:47:55.633+00:00" | |
}, | |
"type": "searchset", | |
"total": 3, | |
"link": [ | |
{ |
{ | |
"resourceType": "Bundle", | |
"id": "2d335c5f-b100-447a-b434-afe57a7063fa", | |
"meta": { | |
"lastUpdated": "2024-10-17T11:47:55.633+00:00" | |
}, | |
"type": "searchset", | |
"total": 3, | |
"link": [ | |
{ |
import bs58 from 'bs58'; | |
import promptSync from 'prompt-sync'; | |
// Initialize prompt | |
const prompt = promptSync(); | |
// Prompt the user for the base58 private key | |
const privateKeyBase58 = prompt('Enter your base58-encoded private key: '); | |
// Decode the base58-encoded private key from Phantom |
ACQ-000-part-A
(which is based on master)ACQ-000-part-B
(which is based on part-A)#! /bin/bash | |
eval $(ssh-agent) | |
#assuming this is the path of the key, change as needed | |
ssh-add ~/.ssh/id_ed25519 |
type -p curl >/dev/null || (sudo apt update && sudo apt install curl -y) | |
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/g>&& sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \ | |
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg>&& sudo apt update \ | |
&& sudo apt install gh -y |
#!/bin/bash | |
sudo apt install git -y | |
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash | |
sudo apt install git-lfs meld -y | |
git config --global user.name "John Doe" | |
git config --global user.email "[email protected]" | |
git config --global core.editor "nano" | |
git config --global diff.tool "meld" | |
git config --global merge.tool "meld" | |
git config --global help.autocorrect 1 |
#! /bin/bash | |
curl micro.mamba.pm/install.sh | bash | |
source ~/.bashrc | |
#Assuming I've pulled the environment.yml file from my repo | |
micromamba create -n learn-bayes -f environment.yml -c conda-forge | |
micromamba activate learn-bayes |
# Author: Nissan Dookeran | |
# Email: [email protected] | |
# Date Last Updated: 12-Dec-2022. | |
wsl install Ubuntu-20.04 | |
## General tooling | |
winget install SlackTechnologies.Slack | |
winget install Google.Chrome | |
winget install Mozilla.Firefox |