Skip to content

Instantly share code, notes, and snippets.

@Gerschel
Gerschel / instructions.md
Created November 23, 2020 04:22 — forked from richlander/instructions.md
Installing .NET Core 3.0 on Linux ARM64

Installing .NET Core on Linux ARM64

The following intructions can be used to install .NET Core on Linux ARM64.

Pro tip: Check out .NET Core Docker files to determine the exact instructions for installing .NET Core builds, for example .NET Core 3.1 ARM32 SDK Dockerfile.

Installing .NET Core Globally

The following instructions install the latest .NET Core globally. It isn't required to do that, but it provides the best experience.

@Gerschel
Gerschel / binarysearchtree.py
Created January 24, 2017 02:46 — forked from pcalcao/binarysearchtree.py
Binary Search Tree implementation, supporting article in http://intothewebs.tumblr.com
#!/etc/python
class BinarySearchTree():
def __init__(self, parent=None):
self.key = None
self.value = None
self.left = None
self.right = None
@Gerschel
Gerschel / README.rst
Created January 17, 2017 10:14 — forked from dupuy/README.rst
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.

@Gerschel
Gerschel / README.md
Created January 12, 2017 02:52 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation

@Gerschel
Gerschel / 0_reuse_code.js
Created December 12, 2016 08:44
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console