```go {linenos=table,hl_lines=[8,"15-17"],linenostart=199, lineanchors=big }
// GetTitleFunc returns a func that can be used to transform a string to
// title case.
//
// The supported styles are
//
// - "Go" (strings.Title)
// - "AP" (see https://www.apstylebook.com/)
// - "Chicago" (see https://www.chicagomanualofstyle.org/home.html)
This file contains 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
/* | |
* Copyright (c) 2016-present Arctic Ice Studio <[email protected]> | |
* Copyright (c) 2016-present Sven Greb <[email protected]> | |
* | |
* Project: Nord | |
* Version: 0.2.0 | |
* Repository: https://github.com/arcticicestudio/nord | |
* License: MIT | |
* References: | |
* https://www.w3.org/TR/css-variables |
This file contains 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
""" | |
Sidenote and Margin Tags | |
---------- | |
This implements a Liquid-style tags margin and side notes | |
for Pelican | |
Syntax | |
------ | |
{% newthought 'Start of new paragraph' %} |
This file contains 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
(* This is a near copy of the script found on Veritrope.com. | |
I took the example template for handling mail messages and the | |
Export Evernote Items to DayOne and combined them for my own use. | |
// SUPPORT VERITROPE! | |
If this AppleScript was useful to you, please take a second to show your love here: | |
http://veritrope.com/support | |
// SCRIPT INFORMATION AND UPDATE PAGE |
This file contains 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
[INFO] Working directory: /Users/mandaris/.jenkins/scm-sync-configuration/checkoutConfiguration | |
Nov 06, 2013 11:38:29 AM hudson.plugins.scm_sync_configuration.SCMManipulator checkinFiles | |
SEVERE: [checkinFiles] Problem during SCM commit : fatal: '[email protected]/mandaris/jenkins_configuration.git' does not appear to be a git repository | |
fatal: Could not read from remote repository. | |
Please make sure you have the correct access rights | |
and the repository exists. | |
Nov 06, 2013 11:38:29 AM hudson.plugins.scm_sync_configuration.ScmSyncConfigurationBusiness processCommitsQueue | |
SEVERE: Error while processing commit queue : Error while checking in file to scm repository |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- # | |
from __future__ import unicode_literals | |
AUTHOR = u'Mandaris' | |
SITENAME = u'Quotidian Quest' | |
SITEURL = u'quotidianquest.com' | |
TIMEZONE = u'US/Pacific' | |
DEFAULT_LANG = u'en' |