This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"always_show_minimap_viewport": true, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "auto", | |
"font_face": "JetBrains Mono NL", | |
"font_size": 14, | |
"highlight_line": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tell application "Mail" | |
set _msgs to selection | |
set _mailbox to "@action" | |
repeat with _msg in _msgs | |
tell application "Mail" | |
move the _msg to mailbox _mailbox | |
end tell | |
end repeat | |
end tell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PS1="\n\u:\w \n→ " | |
export PS1="\n\e[0;32m\u@\h:\e[m\e[0;34m\w\e[m \n→ " | |
export EDITOR=vim | |
# simple note taking tool | |
n() { | |
$EDITOR ~/Text/"$*".txt | |
} | |
nls() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="article"> | |
{% if page.type == 'link' %} | |
<p><a href="{{ page.link }}">{{ page.title }}</a></p> | |
{{ content }} | |
<p>This item was posted on {{ page.date | date: "%B %e, %Y "}} </p> | |
{% else %} | |
<h1> {{page.title}} </h1> | |
<p>{{ page.date | date: "%B %e, %Y "}}</p> | |
{{ content }} | |
{% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<entry> | |
<title>{{ post.title }}</title> | |
{% if post.type != 'link' %} | |
<link href="http://kevrodg.net{{ post.url }}"/> | |
{% else %} | |
<link href="{{ post.link }}"/> | |
{% endif %} | |
<updated>{{ post.date | date_to_xmlschema }}</updated> | |
<id>http://kevrodg.net{{ post.id }}</id> | |
<content type="html"><![CDATA[{{ post.content }} |
NewerOlder