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
// Dependencies required in Cargo.toml | |
// clap = { version = "3.1.7", features = ["derive"] } | |
// deque = "0.3.2" | |
// ignore = "0.1.6" | |
// num_cpus = "1.13.1" | |
use clap::Parser; | |
use deque::{Stealer, Stolen}; | |
use ignore::WalkBuilder; | |
use num_cpus; |
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
onEnter : (String -> msg) -> Attribute msg | |
onEnter tagger = | |
let | |
isEnter code = | |
if code == 13 then | |
Decode.succeed "" | |
else | |
Decode.fail "" | |
decodeEnter = | |
Decode.andThen isEnter keyCode |
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
From the WebKit documentation at: | |
http://www.opensource.apple.com/source/WebKit/WebKit-7533.16/chromium/src/mac/WebInputEventFactory.mm | |
// Of Mice and Men | |
// --------------- | |
// | |
// There are three types of scroll data available on a scroll wheel CGEvent. | |
// Apple's documentation ([1]) is rather vague in their differences, and not | |
// terribly helpful in deciding which to use. This is what's really going on. | |
// |
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
$font-size: 1em | |
$line-height: 1.5em | |
@mixin column($width, $offset) | |
margin-left: $offset | |
width: $width | |
float: left | |
padding: 0 $line-height/2 0 $line-height/2 | |
-webkit-box-sizing: border-box | |
box-sizing: border-box |