Skip to content

Instantly share code, notes, and snippets.

View curtiswilkinson's full-sized avatar

Curtis Tate Wilkinson curtiswilkinson

View GitHub Profile

Motivation

  • expression-oriented programming one of the great advances of FP
  • expressions plug together like legos, making more malleable programming experience in-the-small

Examples

Write in an expression-oriented style, scoping variables as locally as possible:

@curtiswilkinson
curtiswilkinson / template.html
Last active April 7, 2016 05:34
List ebooks on account page
<div class="col-xs-12">
<hr>
<h1>Digital Downloads Available On Your Account</h1>
<div id="ebook-list">
<div class="row">
[%site_value id:'footer_javascript'%]
[%thumb_list type:'orders' %]
[%param *header%]
[%/param%]
[%param *body%]
@brandonsheppard
brandonsheppard / gist:88fcc88b1ae7b93d8b11
Created September 15, 2014 04:33
Generate a sitemap with B@SE
<ul>
[%content_menu content_type:'category' limit:''%]
[%param header%]
<li>Categories
<ul>
[%/param%]
[%param *level_1%]
<li><a href="[@url@]">[@name@]</a>
[%if [@next_level@]%]
<ul>