This is a test of the emergency broadcasting system
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
--- | |
layout: default | |
title: Working With GitHub Pages | |
--- | |
<div class="container"> | |
<div class="blurb"> | |
<h1>Working With GitHub Pages</h1> | |
<p>During today's session, we will learn how to build a personal website using GitHub Pages. <a href="/about">Learn about Git, GitHub, and GitHub Pages</a></p> | |
</div><!-- /.blurb --> |
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
--- | |
layout: default | |
--- | |
<h1>{{ page.title }}</h1> | |
<p class="meta">{{ page.date | date_to_string }}</p> | |
<div class="post"> | |
{{ content }} | |
</div> |
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
--- | |
layout: post | |
title: My First Post | |
date: 2015-04-03 | |
--- | |
Write something about your experience in this workshop. |
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
--- | |
layout: default | |
title: GitHub Pages Blog | |
--- | |
<h1>{{ page.title }}</h1> | |
<ul class="posts"> | |
{% for post in site.posts %} | |
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li> | |
{% endfor %} |
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
permalink: /blog/:year/:month/:day/:title |
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
--- | |
layout: feed | |
--- | |
<?xml version="1.0" encoding="utf-8"?> | |
<feed xmlns="http://www.w3.org/2005/Atom"> | |
<title>GitHub Pages Blog</title> | |
<link href="http://ramona2020.github.io/blog/atom.xml" rel="self"/> | |
<link href="http://ramona2020.github.io/blog"/> | |
<updated>{{ site.time | date_to_xmlschema }}</updated> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> | |
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" | |
schematypens="http://purl.oclc.org/dsdl/schematron"?> | |
<TEI xmlns="http://www.tei-c.org/ns/1.0"> | |
<teiHeader> | |
<fileDesc> | |
<titleStmt> | |
<!--In the line below, insert the title of the poem. If the poem begins with an article, remove leading article from the title in the element value - and include the complete title in a rend attribute.--> | |
<title>Abel et Caïn</title> |
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
Converting files in Windows folder | |
[http://www.windows-commandline.com/rename-file-extensions-bulk/](http://www.windows-commandline.com/rename-file-extensions-bulk/) | |
rename *.log *.txt | |
Convert batch of files in Pandoc | |
for /r "startfolder" %i in (*.htm *.html) do pandoc -f html -t markdown "%~fi" -o "%~dpni.txt" | |
Batch delete files from Windows folder | |
1. Navigate to folder and use command line: | |
del /S *.html |
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
let $uri := fn:encode-for-uri( "http://bioimages.vanderbilt.edu/vanderbilt/7-314#2002-06-14") | |
let $json := fetch:text("http://api.gbif.org/v1/occurrence/search?occurrenceID=" || $uri) | |
let $json := fn:parse-json($json) | |
let $latitude := $json?results?1?decimalLatitude | |
let $longitude := $json?results?1?decimalLongitude | |
let $identifier := $json?results?1?identifier | |
return map { | |
"type": "Feature", | |
"geometry": map { | |
"type": "Point", |