Copy nftables.conf to /etc/nftables.conf
Install nftables
pacman -S --needed nftables iptables-nft
| package main | |
| import ( | |
| "bufio" | |
| "context" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" |
| package main | |
| import ( | |
| "context" | |
| "errors" | |
| "log" | |
| "os" | |
| "os/signal" | |
| "sync" | |
| "syscall" |
| package main | |
| import ( | |
| "context" | |
| "log" | |
| "time" | |
| "github.com/ipfs/go-ipfs/core" | |
| "github.com/ipfs/go-ipfs/core/coreapi" | |
| "github.com/ipfs/go-ipfs/core/node" |
| source /usr/lib/prezto/runcoms/zpreztorc | |
| # 'autosuggestions' after syntax-highlighting and history-substring-search | |
| # 'completion' after utility | |
| # 'environment' first | |
| # 'fasd' after completion | |
| # 'history-substring-search' after syntax-highlighting | |
| # 'syntax-highlighting' before history-substring-search, prompt | |
| zstyle ':prezto:load' pmodule \ | |
| 'environment' \ |
| #!/bin/bash | |
| shopt -s extglob | |
| # generated from util-linux source: libmount/src/utils.c | |
| declare -A pseudofs_types=([anon_inodefs]=1 | |
| [autofs]=1 | |
| [bdev]=1 | |
| [bpf]=1 | |
| [binfmt_misc]=1 |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/blevesearch/bleve" | |
| "github.com/blevesearch/bleve/analysis/lang/fr" | |
| ) | |
| type WebResource struct { |
| Computer Information: | |
| Manufacturer: Unknown | |
| Model: Unknown | |
| Form Factor: Desktop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: AuthenticAMD | |
| CPU Brand: AMD Ryzen 9 5900X 12-Core Processor | |
| CPU Family: 0x19 |
| /* gcc -m32 -O2 -Wall -shared -fPIC -ldl -o ntdll_override.so ntdll_override.c */ | |
| #define _GNU_SOURCE | |
| #include <dlfcn.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <limits.h> | |
| #include <stdlib.h> | |
| typedef void* (*wine_dlopen_func_type)(const char *filename, int flag, char *error, size_t errorsize); |