Skip to content

Instantly share code, notes, and snippets.

View kielmarj's full-sized avatar

Jess kielmarj

View GitHub Profile
@kielmarj
kielmarj / character-entities.md
Last active November 11, 2024 11:04
Quick reference chart for displaying special characters in html/markdown.

HTML Character Entities

Quick reference chart for displaying special characters in html/markdown.

Entity Rendered Character Description
    Non-breaking space
© © Copyright
® ® Registered trademark
Trademark
id name email age country
1 John Doe johndoe@example.com 28 USA
2 Jane Smith janesmith@example.com 34 UK
3 Mike Johnson mikej@example.com 45 Canada
4 Emily Davis emilyd@example.com 29 Australia
5 William Brown wbrown@example.com 39 Germany
6 Isabella Taylor isabellat@example.com 31 France
7 Liam White liamw@example.com 50 USA
8 Olivia Black oliviab@example.com 23 Italy
9 Noah Green noahg@example.com 44 Spain
@kielmarj
kielmarj / python-syntax-examples.md
Last active October 21, 2024 13:23
basic python syntax examples

From the Python wiki

Python syntax: Examples

print('Hello world!')

String formatting

@kielmarj
kielmarj / Free-resources.md
Last active November 11, 2024 17:59
Personal collection of links to free programming resources/reference (edited frequently)

VS Code snippet basics

Excerpts from the VS Code Docs

Tab Stops

Tab stops are specified by a dollar sign and an ordinal number e.g. $1 . $1 will be the first location, $2 will the second location, and so on. $0 is the final cursor position, which exits the snippet mode. For example, let's say we want to make an HTML div snippet and we want the first tab stop to be between the opening and closing tags. We also want to allow the user to tab outside of the tags to finish the snippet.

{