Mary Shaw: of SWE fame, foundational work in modularity and SW architecture
- Good summary on special characters in Emacs minibuffers and in general: http://ergoemacs.org/emacs/emacs_line_ending_char.html
- On replacement by newline: https://stackoverflow.com/a/613029
toggle-truncate-lines
andvisual-line-mode
- Join particular windows:
C-u C-x 0
- Org mode table commands: https://orgmode.org/manual/Built_002din-Table-Editor.html
- in particular M + S + Left to delete a column
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
<div> | |
<table id="cfps" class="sortable" | |
style="margin-top:200px;text-align:center;font-size:small"> | |
<!-- filled by js --></table> | |
<script type="text/javascript" src="Papers/cfp.js"></script> | |
<script type="text/javascript"> | |
fillCFPs("cfps"); | |
var sorter = new TINY.table.sorter("sorter"); | |
sorter.head = "head"; | |
sorter.asc = "asc"; |
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
module GenericChapter where | |
-- | We define our own "Polynomial functor" type class. | |
-- Declaring an instance for this type class means to state a rule in | |
-- the 14.1 rule system for "poly" (static semantics). The respective | |
-- implementation of @pfmap@ realises the dynamic semantics (evaluation). | |
class PolyFunc p where | |
pfmap :: (a -> b) -> p a -> p b |