From "Atomic Habits"
- Cue
- Craving
- Response
- Reward
textarea { font-size: 1em; } | |
.skin-vector #content>* { | |
max-width: 800px; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
@media (max-width: 768px) { | |
/* Make it flex to change the order of the menus to the top */ |
I wasn't able to get support for pursuing this so I tried to prepare more information and a more serious project that end of year and start in 2016.
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
html, | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
body { |
#!/bin/bash | |
trap "exit" INT TERM ERR | |
trap "kill 0" EXIT | |
./someProcessA & | |
./someProcessB & | |
wait |
From https://www.cs.cornell.edu/courses/cs3110/2016fa/l/17-inference/notes.html
mapList = | |
let | |
xs = | |
List.range 0 1000 |> List.map (always 0) | |
in | |
benchmark "List.map" | |
(\_ -> | |
xs |> List.map (always 1) |
updateRecord = | |
benchmark "Update record with native syntax" | |
(\_ -> | |
let | |
surname = | |
emptyRecord.surname | |
in | |
{ emptyRecord | surname = surname ++ "wat" } | |
) |
Adapted from the wonderful original post: How to Use Elm at Work by Evan Czaplicki / 11 July 2016
Removed some Elm specific parts, and made
Elm
generic asX
.
Trying X
in some big JavaScript project is not very hard. Why try X
like
this? Well, tons of folks are trying out X
these days, and as they share their