-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: combine GitHub Pages Jekyll template with existing work
- also change 'Agustin' rather than 'Agus'
- Loading branch information
Showing
93 changed files
with
3,515 additions
and
40 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
.jekyll-cache | ||
.jekyll-metadata | ||
.DS_Store | ||
_site | ||
*~ |
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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
title: "Software Design by Example in Roc" | ||
repository: roc-lang/book-of-examples | ||
editors: | ||
- "rtfeldman" | ||
- "Anton-4" | ||
- "gvwilson" | ||
lang: en | ||
|
||
baseurl: /book-of-examples | ||
destination: docs | ||
|
||
defaults: | ||
- scope: | ||
path: "" # an empty string here means all files in the project | ||
values: | ||
layout: "default" | ||
|
||
exclude: | ||
- CODE_OF_CONDUCT.md | ||
- GOVERNANCE.md | ||
- LICENSE.md | ||
- README.md | ||
- Gemfile | ||
- Gemfile.lock | ||
- '.#*' | ||
- '*~' | ||
|
||
plugins: | ||
- jekyll-redirect-from | ||
- jekyll-sitemap |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
- family: "Bhattarai" | ||
personal: "Shritesh" | ||
github: "shritesh" | ||
|
||
- family: "Boswell" | ||
personal: "Luke" | ||
github: "lukewilliamboswell" | ||
|
||
- family: "Collard" | ||
personal: "Sophie" | ||
github: "sophiecollard" | ||
|
||
- family: "Davis" | ||
personal: "Ashley" | ||
github: "ashleydavis" | ||
|
||
- family: "Dowling" | ||
personal: "Eli" | ||
github: "faldor20" | ||
|
||
- family: "Dziamura" | ||
personal: "Kyril" | ||
github: "wontem" | ||
|
||
- family: "Feldman" | ||
personal: "Richard" | ||
github: "rtfeldman" | ||
|
||
- family: "Georgiev" | ||
personal: "Hristo" | ||
github: "hristog" | ||
|
||
- family: "Hajagos" | ||
personal: "Norbert" | ||
github: "HajagosNorbert" | ||
|
||
- family: "Hajagos" | ||
personal: "Norbert" | ||
github: "HajagosNorbert" | ||
|
||
- family: "Hinson" | ||
personal: "Stuart" | ||
github: "stuarth" | ||
|
||
- family: "McGuigan" | ||
personal: "Monica" | ||
github: "monmcguigan" | ||
|
||
- family: "Schmalzried" | ||
personal: "Fabian" | ||
github: "FabHof" | ||
|
||
- family: "Van Doren" | ||
personal: "Isaac" | ||
github: "isaacvando" | ||
|
||
- family: "Van Moere" | ||
personal: "Anton" | ||
github: "Anton-4" | ||
|
||
- family: "Wilson" | ||
personal: "Greg" | ||
github: "gvwilson" | ||
|
||
- family: "Woudenberg" | ||
personal: "Jasper" | ||
github: "jwoudenberg" | ||
|
||
- family: "Zubiaga" | ||
personal: "Agustin" | ||
github: "agu-z" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# 1 | ||
|
||
# A | ||
|
||
# B | ||
|
||
# C | ||
|
||
# D | ||
|
||
# E | ||
|
||
# F | ||
|
||
- key: functional_programming | ||
en: | ||
term: "functional programming" | ||
def: > | ||
A programming paradigm in which programs map existing values to new values. | ||
# G | ||
|
||
# H | ||
|
||
# I | ||
|
||
# J | ||
- key: json | ||
en: | ||
term: JSON (JavaScript Object Notation) | ||
def: > | ||
A way to represent data by combining Booleans, numbers, and character strings | ||
in lists and key-value structures. | ||
# K | ||
|
||
# L | ||
|
||
# M | ||
|
||
# N | ||
|
||
# O | ||
|
||
# P | ||
|
||
# Q | ||
|
||
# R | ||
|
||
# S | ||
|
||
# T | ||
|
||
# U | ||
|
||
# V | ||
|
||
# W | ||
|
||
# X | ||
|
||
# Y | ||
|
||
# Z |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
chapters: | ||
- intro | ||
- backup | ||
- diff | ||
- json | ||
- binary | ||
- ci | ||
- editor | ||
- parser | ||
- template | ||
- svg | ||
- match | ||
- completion | ||
- proptest | ||
- des | ||
- ftp | ||
- gallery | ||
- finale | ||
appendices: | ||
- license | ||
- references | ||
- glossary | ||
- conduct | ||
- governance |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
- key: "roc_tutorial" | ||
author: "Various authors" | ||
title: "The Roc Language Tutorial" | ||
url: "https://www.roc-lang.org/tutorial" | ||
details: > | ||
Last viewed 2024-03-29. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
- slug: "backup" | ||
title: "File Backup" | ||
github: | ||
- "wontem" | ||
|
||
- slug: "binary" | ||
title: "Binary Data Packing" | ||
github: | ||
- "FabHof" | ||
|
||
- slug: "ci" | ||
title: "Continuous Integration" | ||
github: | ||
- "jwoudenberg" | ||
|
||
- slug: "completion" | ||
title: "Autocompletion" | ||
github: | ||
- "faldor20" | ||
|
||
- slug: "conduct" | ||
title: "Code of Conduct" | ||
|
||
- slug: "des" | ||
title: "Discrete Event Simulation" | ||
github: | ||
- "HajagosNorbert" | ||
|
||
- slug: "diff" | ||
title: "File Diffing" | ||
github: | ||
- "hristog" | ||
|
||
- slug: "editor" | ||
title: "A Text Editor" | ||
github: | ||
- "lukewilliamboswell" | ||
|
||
- slug: "finale" | ||
title: "Conclusion" | ||
github: | ||
- "gvwilson" | ||
|
||
- slug: "ftp" | ||
title: "File Transfer" | ||
github: | ||
- "HajagosNorbert" | ||
|
||
- slug: "gallery" | ||
title: "A Thumbnail Gallery" | ||
github: | ||
- "ashleydavis" | ||
|
||
- slug: "glossary" | ||
title: "Glossary" | ||
|
||
- slug: "governance" | ||
title: "Governance" | ||
|
||
- slug: "intro" | ||
title: "Introduction" | ||
github: | ||
- "rtfeldman" | ||
- "Anton-4" | ||
|
||
- slug: "json" | ||
title: "JSON Encoding and Decoding" | ||
github: | ||
- "monmcguigan" | ||
|
||
- slug: "license" | ||
title: "License" | ||
|
||
- slug: "match" | ||
title: "Pattern Matching" | ||
github: | ||
- "stuarth" | ||
|
||
- slug: "parser" | ||
title: "An HTML Parser" | ||
github: | ||
- "agu-z" | ||
|
||
- slug: "proptest" | ||
title: "Property-Based Testing" | ||
github: | ||
- "sophiecollard" | ||
|
||
- slug: "references" | ||
title: "References" | ||
|
||
- slug: "svg" | ||
title: "SVG Rendering" | ||
github: | ||
- "shritesh" | ||
|
||
- slug: "template" | ||
title: "HTML Templates" | ||
github: | ||
- "isaacvando" |
Oops, something went wrong.