git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Thanks to @seejee for making this for me!!!
The goal of this is to have an easily-scannable reference for the most common syntax idioms in C# and Rust so that programmers most comfortable with C# can quickly get through the syntax differences and feel like they could read and write basic Rust programs.
What do you think? Does this meet its goal? If not, why not?
git config core.editor "'C:\Program Files (x86)\Notepad++\notepad++.exe' -multiInst -notabbar -nosession -noPlugin" |
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
The purpose of this tutorial is to walk through the required steps to upgrade NXT chip (or pocketchip) from debian jessie to debian buster.
If you would like to start your Chip from scratch, follow the steps in the Preparation section.
A linux host machine, recommended Ubuntu 18.04. However I managed to do it with 20.10 with some tweak.
https://freeware.palmclub.nl/ | |
http://www.mobyware.org/palm-os-software-download-all-1-date.html | |
https://archive.org/details/tucows?and[]=subject%3A%22palm+pilot%22 | |
https://www.oldhandhelds.com/?dir=Palm%20Os/Games | |
http://users.ics.aalto.fi/praiko/palm/ (select freeware) | |
https://tinyapps.org/palm.html (small useful apps) | |
https://palmopensource.com/palmdb.php | |
https://mariomasta64.me/palm/ | |
http://web.archive.org/web/20081021095630/http://www.freewarepalm.com/listall.shtml |
# CoilSnake code :) pls don't hurt me | |
import array | |
import copy | |
import os | |
from zlib import crc32 | |
InvalidArgumentError = ValueError | |
OutOfBoundsError = ValueError | |
def check_range_validity(range, size): |