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
The sample text is here: https://gist.github.com/0474c33e403ab243019c | |
Undo justification: replace all newline characters with two spaces | |
regex: "\n\b" | |
subst: "\ \ " | |
Replace all paragraph markers with actual paragraphs | |
regex: "-P-" |
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
Book the First -- Recalled to Life | |
Chapter I | |
The Period | |
It was the best of times, it was the worst of times, it was the age of | |
wisdom, it was the age of foolishness, it was the epoch of belief, it | |
was the epoch of incredulity, it was the season of Light, it was the | |
season of Darkness, it was the spring of hope, it was the winter of |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="JavaScript Refresher"> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
p { | |
color: red; | |
} |
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
// Adapted from generic web server example as part of IDE created by David Mellis and Tom Igoe. | |
#include "Arduino.h" | |
#include <Ethernet.h> | |
#include <SPI.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#define DEBUG false |
NewerOlder