Skip to content

Instantly share code, notes, and snippets.

Avatar
🖼️
Creating

Scott Killen ScottKillen

🖼️
Creating
View GitHub Profile
View numbering-snippet.css
ol {
list-style-type: upper-roman;
}
ol ol {
list-style-type: upper-alpha;
}
ol ol ol {
list-style-type: decimal;
@ScottKillen
ScottKillen / minimal-tweak-active.css
Created December 21, 2022 04:08
Tweaks accented text in minimal theme for Obsidian for readability.
View minimal-tweak-active.css
#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;
}
View annotation template.md

[!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 / 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)
View obsidian-vii-callouts.css
/* 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 */
@ScottKillen
ScottKillen / print.css
Last active May 26, 2023 05:15
PDF export stylesheet for obsidian
View print.css
/* Obsidian snippet to style output of pdf exports
*/
@media print {
/* set your preferred fonts here.
*/
:root {
--body-font-family: "Newsreader Text", TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
View randomQuote.js
const apiUrl = "http://api.quotable.io/random?tags=";
async function start() {
var quote;
var cite;
const response = await fetch(apiUrl);
const data = await response.json();
if (response.ok) {
// Update DOM elements
@ScottKillen
ScottKillen / Daily Note Template.md
Last active April 8, 2022 15:14
Note templates for Obsidian
View Daily Note Template.md
Error in user YAML: (<unknown>): did not find expected ',' or ']' while parsing a flow sequence at line 1 column 10
---
aliases: ["<% tp.date.now("MMMM Do, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMMM D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMM D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("MMM. D, YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M/D/YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M-D-YYYY", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("YYYY-MM-DD", 0, tp.file.title, "YYYY.MM.DD") %>","<% tp.date.now("M.D.YYYY", 0, tp.file.title, "YYYY.MM.DD") %>",]
tags: DailyNote <%tp.file.title.split('-')[0]%>
---

📆 <%tp.file.title%>

« [[<%tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>]] | [[<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>]] »


View gist:decf46c9b6e0c66ecd4b47bd045ab403
GMail: https://mail.google.com/mail/
GSuite Mail: https://mail.google.com/a/gsuitedomain.com/mail/
View QOwnNotes-settings.ini
[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
@ScottKillen
ScottKillen / github_labels.json
Last active December 30, 2017 20:38
GitHub Labels
View github_labels.json
[
{ "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" },