Add nerd wordlist
This commit is contained in:
parent
8ccbce977f
commit
626212e049
|
@ -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
|
|
@ -9,7 +9,8 @@ var (
|
|||
Default = load("/default.txt")
|
||||
Duet = load("/duet.txt")
|
||||
Undercover = load("/undercover.txt")
|
||||
Expanded = load("/expanded.txt")
|
||||
Expanded = load("/expanded.txt")
|
||||
Nerd = load("/nerd.txt")
|
||||
)
|
||||
|
||||
func load(filename string) words.List {
|
||||
|
|
|
@ -17,5 +17,6 @@ func TestLen(t *testing.T) {
|
|||
testLen(t, "Default", static.Default, 400)
|
||||
testLen(t, "Duet", static.Duet, 400)
|
||||
testLen(t, "Undercover", static.Undercover, 390)
|
||||
testLen(t, "Expanded", static.Undercover, 673)
|
||||
testLen(t, "Expanded", static.Expanded, 672)
|
||||
testLen(t, "Nerd", static.Nerd, 179)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue