- "uBlock Origin"
- "uMatrix"
- "Decentraleyes"
- "Session Boss" / "Tab Session Manager"
- "Stylus"
- "Auto Tab discard"
- "New Tab Override"
- "Open Tabs Next to Current"
En test:
--[[ | |
local function ✆(✕,✖) | |
local ☻ = ✕+✖ | |
return ☻ | |
end | |
return ✆ | |
]]-- | |
local function 🐅(😸, 😹) | |
local 😼 = 😸 + 😹 |
local a = 1 | |
local function a() return a end | |
assert( type( a() ) == "function" ) | |
local a = 1 | |
local a; function a() return a end | |
assert( type( a() ) == "function" ) | |
local a = 1 | |
local a = function() return a end |
#include <stdio.h> | |
int main(void) { | |
printf("C C CCCCC C C CCC C C CCC CCCC C CCCC\n"); | |
printf("C C C C C C C C C C C C C C C C\n"); | |
printf("CCCCC CCCC C C C C C C C C C CCCC C C C\n"); | |
printf("C C C C C C C C C C C C C C C C C\n"); | |
printf("C C CCCCC CCCCC CCCCC CCC C C CCC C C CCCCC CCCC\n"); | |
return 0; | |
} |
#!/bin/sh | |
# source: https://gist.github.com/tst2005/797af97fd263677da9e3eede873887ac | |
for i in $* | |
do | |
echo "$i" | |
openssl x509 -subject -issuer -enddate -noout -in $i \ | |
| sed -e 's#, \([^ ]\+\) = #/\1=#g' -e 's,^\(subject\|issuer\)=\([^ ]\+\) = ,\1= /\2=,g' | |
echo "--------" |
--[[ print("a") | |
print("b") | |
]]-- print("c") | |
print("D") --[[ | |
print("e") | |
print("f") ]]-- | |
--[[-- print("a") | |
print("b") | |
--]]-- print("c") --[[-- |
-- inline=false | |
local cfgl = | |
{ indent='' -- like parentindent | |
, prefixindent="" -- use indent | |
, prefix="{\n" | |
, suffixindent=nil -- use indent | |
, suffix="}\n" | |
, itemindent='\\t ' -- use indent | |
, itemprefix="" | |
, itemsuffix=",\n" |
#!/bin/sh | |
sumfile="$(mktemp)" | |
tmpfile="$(mktemp)" | |
trap "rm -f -- '$tmpfile' '$sumfile'" EXIT | |
verbose=false | |
cmd='auto' | |
hashvalue='' | |
while [ $# -gt 0 ]; do | |
case "$1" in | |
('-v') verbose=true;; |
#!/bin/sh | |
deadlink() { | |
local NO_ABS=false | |
local NO_REL=false | |
while [ $# -gt 0 ]; do | |
case "$1" in | |
('-h'|'--help') | |
echo "Usage: $0 [--na|--no-absolute]|[--nr|--no-relative] [--] <directory>"; | |
exit 0; |
#!/bin/sh | |
filters() { | |
if [ $# -le 1 ]; then | |
local grepopt='' | |
case "$1" in | |
('no '?*) set -- "${1#no }"; grepopt='-v' ;; | |
esac | |
case "$1" in | |
(*'=ANY') | |
grep $grepopt -- '\<'"${1%=*}"'=ANY\>'; return $? |
En test: