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 |
| #include <filesystem> | |
| #include <iostream> | |
| namespace fs = std::filesystem; | |
| namespace { | |
| void PrintUsage(const wchar_t *exePath) { | |
| std::wcout << L"usage: " << exePath | |
| << L"watchlist_dir source_dir0 [source_dir1 ...]"; |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\qbittorrent.exe] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\qbittorrent.exe\PerfOptions] | |
| "CpuPriorityClass"=dword:00000001 | |
| "IoPriority"=dword:00000000 | |
| "PagePriority"=dword:00000001 |
| #!/bin/sh | |
| set -e | |
| if [ $EUID -ne 0 ] then | |
| echo >&2 'run as root' | |
| exit 1 | |
| fi | |
| mount -o remount,rw /system |
| 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); |
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 |
| #!/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 |
| #!/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() { |
| @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"); |
Moved here: https://github.com/hg/lnav-formats
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 renamed