Skip to content

Instantly share code, notes, and snippets.

View ScottKillen's full-sized avatar
🖼️
Creating

Scott Killen ScottKillen

🖼️
Creating
View GitHub Profile
@ScottKillen
ScottKillen / Markdown cheatsheet.md
Created November 28, 2017 12:50
Markdown cheatsheet

Header 1

Header 2

Header 3 ### (Hashes on right are optional)

Header 4

Header 5

Markdown plus h2 with a custom ID ## {#id-goes-here}

Link back to H2

This is a paragraph, which is text surrounded by whitespace. Paragraphs can be on one

@ScottKillen
ScottKillen / github_labels.json
Last active December 30, 2017 20:38
GitHub Labels
[
{ "name": "Priority: Low", "color": "#009800" },
{ "name": "Priority: Medium", "color": "#fbca04" },
{ "name": "Priority: High", "color": "#eb6420" },
{ "name": "Priority: Critical", "color": "#e11d21" },
{ "name": "Status: Abandoned", "color": "#000000" },
{ "name": "Status: Accepted", "color": "#009800" },
{ "name": "Status: Available", "color": "#bfe5bf" },
{ "name": "Status: Blocked", "color": "#e11d21" },
{ "name": "Status: Completed", "color": "#006b75" },
[SettingsExport]
platform=windows
[General]
ActiveNoteHistoryItem=@Variant(\0\0\0\x7f\0\0\0\x10NoteHistoryItem\0\0\0\0(\0W\0\x65\0l\0\x63\0o\0m\0\x65\0 \0t\0o\0 \0Q\0O\0w\0n\0N\0o\0t\0\x65\0s\0\0\0\0\0\0\0\0\0\0\0\0)
LastUpdateCheck=@DateTime(\0\0\0\x10\0\0\0\0\0\0%\x84\xe7\x4\xe7\x12\x15\0)
NoteHistory-1=@Variant(\0\0\0\t\0\0\0\x1\0\0\0\x7f\0\0\0\x10NoteHistoryItem\0\0\0\0(\0W\0\x65\0l\0\x63\0o\0m\0\x65\0 \0t\0o\0 \0Q\0O\0w\0n\0N\0o\0t\0\x65\0s\0\0\0\0\0\0\0\0\0\0\0\0)
NoteHistoryCurrentIndex-1=0
PiwikClientId=7aea4643dc1d09b4
SearchEngineId=2
GMail: https://mail.google.com/mail/
GSuite Mail: https://mail.google.com/a/gsuitedomain.com/mail/
{"seaLevel":63,"heightScale":100,"lowerLimitScale":512,"upperLimitScale":512,"depthNoiseScaleX":200,"depthNoiseScaleZ":200,"depthNoiseScaleExponent":0.5,"mainNoiseScaleX":80,"mainNoiseScaleY":160,"mainNoiseScaleZ":80,"baseSize":8.5,"stretchY":12,"biomeDepthWeight":1,"biomeDepthOffset":0,"biomeScaleWeight":4,"biomeScaleOffset":0,"useCaves":true,"useDungeons":true,"dungeonChance":8,"useStrongholds":true,"useVillages":true,"useMineShafts":true,"useTemples":true,"useRavines":true,"useWaterLakes":true,"waterLakeChance":22,"useLavaLakes":true,"lavaLakeChance":94,"useLavaOceans":false,"fixedBiome":-1,"biomeSize":4.5,"riverSize":8,"dirtSize":42,"dirtCount":10,"dirtMinHeight":0,"dirtMaxHeight":256,"gravelSize":46,"gravelCount":5,"gravelMinHeight":0,"gravelMaxHeight":256,"graniteSize":50,"graniteCount":5,"graniteMinHeight":0,"graniteMaxHeight":255,"dioriteSize":50,"dioriteCount":5,"dioriteMinHeight":0,"dioriteMaxHeight":255,"andesiteSize":50,"andesiteCount":5,"andesiteMinHeight":0,"andesiteMaxHeight":255,"coalSize":33,
@ScottKillen
ScottKillen / obsidian-vii-callouts.css
Created December 3, 2022 05:12 — forked from vii33/obsidian-vii-callouts.css
Obsidian Notes - Change callout color and icon (admonitions)
/* Settings for all callouts / admonitions: */
.callout {
background-color: hsl(220, 16%, 16%);
}
/* Settings for individual callouts / admonitions: */
.callout[data-callout="important"] { /* same name as in callout to be changed */
--callout-color: 19, 203, 232; /* rgb only */

[!quote] Title by [[author]] via [[publication]]. Published on date. Accessed on today. Text of the quote.

Brief explanation of why I saved this quote, and any other associated thoughts it gave me about connections, expansions, etc. The annotation, basically.

@ScottKillen
ScottKillen / minimal-tweak-active.css
Created December 21, 2022 04:08
Tweaks accented text in minimal theme for Obsidian for readability.
#calendar-container .active,
.flair.mod-pop,
.horizontal-tab-nav-item.is-active,
.linter-navigation-item-selected,
.nav-file-title.is-active,
.vertical-tab-nav-item.is-active,
.community-item.is-selected,
.mod-cta {
text-shadow: 1px 1px 1px black;
}
ol {
list-style-type: upper-roman;
}
ol ol {
list-style-type: upper-alpha;
}
ol ol ol {
list-style-type: decimal;
/* Remove the pin */
.workspace-tab-header[aria-label="Note file name without .md"] .workspace-tab-header-status-container .mod-pinned {
display: none;
}