Add nerd wordlist

This commit is contained in:
Amolith 2021-12-20 23:33:43 -05:00
parent 8ccbce977f
commit 626212e049
Signed by: Amolith
GPG Key ID: 5548AD9930655715
3 changed files with 183 additions and 2 deletions

View File

@ -0,0 +1,179 @@
./configure
.deb
.i2p
.onion
.torrent
Alpine Linux
AMD
APK
AppArmor
AppImage
Apple
Apple M1
Arch Linux
AwesomeWM
Bash
BitTorrent
Brainfuck
Budgie
CLI
CPU
CSS
Canonical
CentOS
Chrome
Chromium
Codeberg
Compiler
Debian
Dell XPS
Dotfiles
DuckDuckGo
EFF
Ecosia
Emacs
Enlightenment
FSF
Fediverse
Fedora
Firefox
Flatpak
Framework
FreeBSD
FreeNet
GNOME
GNU
GPU
GTK
GUI
Gentoo
GhostBSD
Git
GitHub
GitLab
Gitea
Golang
Google
HTML
Haskell
IPFS
IRC
InfoSec
Intel
JavaScript
KDE
Kakoune
Kali Linux
Kernel
LSP
LXDE
LXQT
Librem 5
Linus Torvalds
Lisp
Lua
Mastodon
MATE
Matrix
Microsoft
Misskey
Mozilla
MySQL
Neovim
NetBSD
NoSQL
Node.js
Nvidia
OpenBSD
OpenRC
OpenVPN
Openbox
Operating System
PHP
PID
POSIX
Pantheon
Pine64
Pinephone
Pleroma
Pop!_OS
PostgreSQL
Python
Qt
Qtile
Qwant
RMS
RedHat
RedHat Enterprise Linux
Ricing
Rust
S6
SELinux
SQL
Self-Hosting
Server
Snap
SourceHut
Stallman
StartPage
Suckless
Sysadmin
System tray
System76
TUI
Text editor
Thinkpad
Toolchain
Tor
Ubuntu
VS Code
Vim
Wayland
Window manager
Windows
Wireguard
Wireshark
XFCE
XMPP
Yggdrasil
ZSH
ZorinOS
awk(1)
cat(1)
cd(1)
doas(1)
dwm
ed(1)
elementaryOS
fzf
grep(1)
gzip
i3
iOS
iPadOS
iptables
less(1)
ls(1)
lzma
macOS
make(1)
mksh
pgrep(1)
pkill(1)
pwd(1)
r/unixporn
Repository
runit(1)
sed(1)
sleep(1)
sqlite
su(1)
sudo(1)
sway
systemd
Tarball
Terminal
traceroute(1)
TTY
Xorg
zstd

View File

@ -9,7 +9,8 @@ var (
Default = load("/default.txt") Default = load("/default.txt")
Duet = load("/duet.txt") Duet = load("/duet.txt")
Undercover = load("/undercover.txt") Undercover = load("/undercover.txt")
Expanded = load("/expanded.txt") Expanded = load("/expanded.txt")
Nerd = load("/nerd.txt")
) )
func load(filename string) words.List { func load(filename string) words.List {

View File

@ -17,5 +17,6 @@ func TestLen(t *testing.T) {
testLen(t, "Default", static.Default, 400) testLen(t, "Default", static.Default, 400)
testLen(t, "Duet", static.Duet, 400) testLen(t, "Duet", static.Duet, 400)
testLen(t, "Undercover", static.Undercover, 390) testLen(t, "Undercover", static.Undercover, 390)
testLen(t, "Expanded", static.Undercover, 673) testLen(t, "Expanded", static.Expanded, 672)
testLen(t, "Nerd", static.Nerd, 179)
} }