The official high contrast theme uses almost white scrollbars that draw too much attention and feel like looking at the sun.
Tested in:
- Rider
- IDEA
Should work everywhere since all their IDEs are repackaged IDEA with a bunch of plugins.
How to use:
The official high contrast theme uses almost white scrollbars that draw too much attention and feel like looking at the sun.
Tested in:
Should work everywhere since all their IDEs are repackaged IDEA with a bunch of plugins.
How to use:
| if ($http_user_agent ~* "foo.ai") { | |
| limit_rate 1k; | |
| default_type application/octet-stream; | |
| proxy_buffering off; | |
| alias /dev/urandom; | |
| return 200; | |
| } |
| #!/usr/bin/env python3 | |
| # vim: ft=python sw=4 sts=4 et si | |
| __license__ = "GPL v3" | |
| __author__ = "hg" | |
| from calibre.web.feeds.recipes import BasicNewsRecipe | |
| base_url = "https://mrakopedia.net" | |
| logo_url = base_url + "/logos/default.gif" |
EFCore.NamingConventions is easier to use, but it does not rename "system" tables ("AspNetUsers" and the like).
protected override void OnModelCreating(ModelBuilder builder) {
base.OnModelCreating(builder);
// keep last or newly created objects won't be renamedMoved here: https://github.com/hg/lnav-formats
| @font-face { | |
| font-family: "Lato"; | |
| src: url("Hairline.woff2") format("woff"); | |
| font-weight: 100; | |
| font-style: normal; | |
| font-display: swap; | |
| } | |
| @font-face { | |
| font-family: "Lato"; | |
| src: url("HairlineItalic.woff2") format("woff"); |
| #!/bin/bash | |
| set -euo pipefail | |
| readonly token=purely-mail-token | |
| readonly url=https://purelymail.com/api/v0 | |
| readonly domain=mail-domain.com | |
| readonly target=name@$domain | |
| request() { |
| #!/usr/bin/bash | |
| set -euo pipefail | |
| for exe in sudo rofi wg curl jq; do | |
| type "$exe" &>/dev/null || { | |
| echo >&2 "please install $exe" | |
| exit 1 | |
| } | |
| done |
explanation and source of data: https://www.spamhaus.org/statistics/tlds/
| tld | bad | score |
|---|---|---|
| okinawa | 66.4% | 3.33 |
| rest | 64.8% | 4.37 |
| surf | 52.6% | 2.48 |
| degree | 46.5% | 1.78 |
| fit | 36.3% | 2.39 |
| fyi | 35.4% | 2.28 |
| static bool setup_default_deny(bool can_exec, scmp_filter_ctx ctx) { | |
| ALLOW_CALL(rt_sigprocmask); | |
| ALLOW_CALL(poll); | |
| ALLOW_CALL(prctl); | |
| ALLOW_CALL(_llseek); | |
| ALLOW_CALL(accept); | |
| ALLOW_CALL(arch_prctl); | |
| ALLOW_CALL(bind); | |
| ALLOW_CALL(brk); |