this is a test
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- Generated by: TmTheme-Editor --> | |
| <!-- ============================================ --> | |
| <!-- app: http://tmtheme-editor.herokuapp.com --> | |
| <!-- code: https://github.com/aziz/tmTheme-Editor --> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Ariake</string> |
This file contains hidden or 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
| test |
This file contains hidden or 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
| test |
This file contains hidden or 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
| //hello RheinNeckarJS | |
| import { | |
| green, | |
| cyan, | |
| bold, | |
| yellow, | |
| red | |
| } from "https://deno.land/std/fmt/colors.ts"; |
This file contains hidden or 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
| let link = (try { | |
| let name = s.stream.get("channel")?.get("name")?.as_str()?; | |
| (try { | |
| let url = format!("https://twitch.tv/{}", name) | |
| .parse::<typed_html::types::Uri>().ok()?; | |
| html!(<a href={url}>{ text!(name) }</a>): | |
| Box<elements::FlowContent<String>> | |
| }: Option<Box<elements::FlowContent<String>>>) | |
| .unwrap_or_else(|| Box::new(dom::TextNode::new(name))) |
This file contains hidden or 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
| .\" Automatically generated by Pod::Man 4.07 (Pod::Simple 3.32) | |
| .\" | |
| .\" Standard preamble: | |
| .\" ======================================================================== | |
| .de Sp \" Vertical space (when we can't use .PP) | |
| .if t .sp .5v | |
| .if n .sp | |
| .. | |
| .de Vb \" Begin verbatim text | |
| .ft CW |
This file contains hidden or 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
| multi advent('day07', '2', Str $in) { | |
| my SetHash %prereqs = parse-prereqs($in); | |
| my $time = 0; | |
| my @queue; | |
| while %prereqs || @queue { | |
| my @available = %prereqs.grep(!*.value).map(*.key).sort; | |
| # Assign as many free workers to available tasks as possible. | |
| while @queue < 5 && @available { |
This file contains hidden or 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
| #!/usr/bin/env perl6 | |
| my $*INPUT; | |
| proto MAIN(Str $day, Str $part) { | |
| $*INPUT = ('input/' ~ $day).IO.slurp; | |
| {*} | |
| } | |
| multi MAIN('day01', 1) { |
NewerOlder