HUG
A function call syntax for KDL.
HUG is several things:
- A strict KDL superset: all KDL is valid HUG.
/* ==UserStyle== | |
@name Twitter.com reorder stats | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description Moves the new stats button after the regular stuff. | |
@author passcod | |
==/UserStyle== */ | |
@-moz-document url-prefix("twitter.com/home") { | |
article [role="group"] > :nth-child(1) { |
fn main() { | |
vec![ | |
// real data | |
[0xa2, 0x0c, 0x49, 0xe6, 0x07, 0x0b, 0x06, 0x01, 0x16, 0x00], // start | |
[0x02, 0x0c, 0x49, 0xe6, 0x07, 0x0b, 0x06, 0x01, 0x20, 0x26], // load | |
[0x22, 0x0c, 0x49, 0xe6, 0x07, 0x0b, 0x06, 0x01, 0x20, 0x26], // stable | |
[0xa2, 0x0c, 0x49, 0xe6, 0x07, 0x0b, 0x06, 0x01, 0x20, 0x2a], // idle | |
] | |
.into_iter() | |
.map(decode) |
{"E0004":"mir_build","E0005":"mir_build","E0010":"const_eval","E0013":"const_eval","E0015":"const_eval","E0023":"typeck","E0025":"typeck","E0026":"typeck","E0027":"typeck","E0029":"typeck","E0030":"mir_build","E0033":"typeck","E0034":"typeck","E0038":"trait_selection","E0040":"typeck","E0044":"typeck","E0045":"typeck","E0046":"typeck","E0049":"typeck","E0050":"typeck","E0053":"typeck","E0054":"typeck","E0055":"trait_selection","E0057":"typeck","E0059":"typeck","E0060":"typeck","E0061":"typeck","E0062":"typeck","E0063":"typeck","E0067":"typeck","E0069":"typeck","E0070":"typeck","E0071":"typeck","E0072":"trait_selection","E0075":"typeck","E0076":"typeck","E0077":"typeck","E0080":"middle","E0081":"typeck","E0084":"typeck","E0091":"typeck","E0092":"typeck","E0093":"typeck","E0094":"typeck","E0106":"typeck","E0107":"typeck","E0109":"typeck","E0116":"typeck","E0117":"typeck","E0118":"typeck","E0119":"trait_selection","E0120":"typeck","E0121":"typeck","E0124":"typeck","E0128":"resolve","E0130":"ast_passes","E0131":" |
A function call syntax for KDL.
HUG is several things:
your.zone.tld { | |
ready | |
cancel | |
loop | |
log | |
loadbalance round_robin | |
auto { | |
directory /local/zones (.*) {1} | |
} |
UserCSS to replace images with their alt text on twitter.
Version 1.0.0
/* Credits: | |
Inspo/mockup: https://twitter.com/daytonaBandcamp/status/1365937476133548035 | |
CSS started by @passcod | |
Finished/improved by YOUR NAME HERE | |
t r a n s r i g h t s | |
*/ | |
:root { | |
--twitter-xp-bg: #f9f9f7; | |
--twitter-xp-border: #a0a9c6; |
(If this file is included in a project, you can find the list of current caretakers at the bottom.)
In a small classical open-source project, maintainers do a lot, and if maintainers don't have time to do a lot, usually the project stalls. Finding new maintainers is hard because few people actively want to take over all the responsibilities of a project. There must be a different way.
With Caretaker Maintainership, "Maintainers" become "Caretakers". Caretakers' only mandatory responsibility is to grant Releasers commit and publish access to the project.
use async_io::Timer; | |
use async_std::task::{spawn, Context, Poll}; | |
use std::{future::Future, pin::Pin, time::Duration}; | |
/// Awaits a future or spawns it out after a duration of time. | |
/// | |
/// If timeout is reached, the future is not dropped, but instead is spawned out as a free task, | |
/// and `None` is returned. | |
/// | |
/// # Examples |