- list all string that have
estimate_that is not followed byrequest
estimate_((?!request))
- list all string that start
log_message, even it's precedded withspacecharacter ortabcharacter
^[\t ]*log_message
| # encrypt all files with the header | |
| ```bash | |
| 7z a -p"pbVfdPs27Dc" -mhe hello.7z file1.bin file2.doc files.* | |
| ``` | |
| ## https://bytefreaks.net/gnulinux/bash/create-an-encrypted-7zip-archive-with-encrypted-header-as-well-no-filenames-are-visible | |
| # need to install xbindkeys xdotool | |
| # map for the logitech mx master (change volume using the side wheel, and change chrome browser tab using side button | |
| # thumb wheel up => increase volume | |
| # create file ~/.xbindkeysrc with this content, then load settings using 'xbindkeys --poll-rc' | |
| "pactl set-sink-volume @DEFAULT_SINK@ +2%" | |
| b:6 | |
| # thumb wheel down => lower volume | |
| "pactl set-sink-volume @DEFAULT_SINK@ -2%" |
| # install jmeter 5 | |
| `File` -> `Templates...` -> `Recording with Think Time` | |
| than configure your browser(firefox for example) to use `config` from `Http Test script recorder` | |
| generate a report file (-JmyPauseProperty=0 is for running the test without pauses ,start no pauses) | |
| `./jmeter -JmyPauseProperty=0 -n -t ~/Desktop/jmeter/tsouhaieberp.jmx -l ~/Desktop/erpResults.jtl` | |
| generate a dashboard (make sure that the dashboard folder is empty) |
| function myStringify(obj, maxDeepLevel = 2) { | |
| if (obj === null) { | |
| return 'null'; | |
| } | |
| if (obj === undefined) { | |
| return 'undefined'; | |
| } | |
| if (maxDeepLevel < 0 || typeof obj !== 'object') { | |
| return obj.toString(); |
| # path on linux /usr/share/dbeaver/dbeaver.ini | |
| # path on macos /Applications/DBeaverEE.app/Contents/Eclipse/dbeaver.ini | |
| -vm | |
| /usr/bin/java | |
| -startup | |
| plugins/org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar | |
| --launcher.library | |
| plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426 | |
| -vmargs | |
| -javaagent:/home/tunknown/.apps/dbeaver/dbeaver-agent.jar |
| dpkg-deb -R ./Brackets.Release.1.14.64-bit.deb Brackets | |
| sed -i 's/libcurl3/libcurl3 | libcurl4/' Brackets/DEBIAN/control | |
| dpkg-deb -b Brackets Brackets-fixed.deb | |
| sudo apt install -f ./Brackets-fixed.deb |
| livejasmin.com | |
| bongacams.com | |
| chaturbate.com | |
| pornhub.com | |
| xvideos.com | |
| xhamster.com | |
| xnxx.com | |
| pornhubpremium.com | |
| 51.la | |
| youporn.com |
estimate_ that is not followed by requestestimate_((?!request))
log_message, even it's precedded with space character or tab character^[\t ]*log_message
| set tabstop=2 " Size of a hard tabstop (ts). | |
| set shiftwidth=2 " Size of an indentation (sw). | |
| set expandtab " Always uses spaces instead of tab characters (et). | |
| set softtabstop=0 " Number of spaces a <Tab> counts for. When 0, featuer is off (sts). | |
| set autoindent " Copy indent from current line when starting a new line. | |
| set smarttab " Inserts blanks on a <Tab> key (as per sw, ts and sts). | |
| set number " show number | |
nginx default config file path /etc/nginx/nginx.conf