UserCSS to replace images with their alt text on twitter.
Version 1.0.0
- A-theme: images with alt text are replaced, images without are left alone
- B-theme: images with alt text are replaced, images without are removed (blanked)
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 |
/* Public Domain (or CC0) */ | |
a.media-image[title]::after, | |
a.media-item[title]::after { | |
content: 'ALT'; | |
position: absolute; | |
bottom: 0.2em; | |
background: rgba(0, 0, 0, 0.6); | |
padding: 0.2em 0.3em; | |
font-size: 0.7em; |
#!/usr/bin/env bash | |
set -euo pipefail | |
url="https://update.code.visualstudio.com/latest/linux-x64/insider" | |
target="$HOME/.local/share/vscode" | |
xattr="user.vscode.updatename" | |
mkdir -p "$target" | |
cd "$target" |
[PROFILE] | |
[TITLE:WELL-PREPPED (0XABADIDEA STYLE)] | |
[SKILL:1:MINING:5] | |
[SKILL:1:HAMMER:2] | |
[SKILL:1:SWIMMING:2] | |
[SKILL:1:MELEE_COMBAT:1] | |
[SKILL:2:MINING:5] | |
[SKILL:2:SWORD:2] | |
[SKILL:2:CROSSBOW:2] | |
[SKILL:2:SWIMMING:1] |
handle | hint | location | outcome |
---|---|---|---|
@adamlearnsrust | deadfeed | usa | gone |
@panoftheday | goodbot | n/a | simple follow |
@fernentity | undecided | ? | stay |
@frustlang | rustbot | ? | ehh... gone |
@Enigmaris | fanfic writer | usa | simple follow |
@Lun_rlambda | rusty | ? | locked... gone |
@Askellie_ut | nsfw artist | aus | gone |
@scienceandroses | low-volume leftie scientist | nz | list:soc |
// reduced further from | |
// https://github.com/mafintosh/echo-servers.c/blob/master/tcp-echo-server.c | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <unistd.h> |