I'm not usgin gdm, xdm or anything like this. Just pure X
xinit -- :1 vt1 -listen tcp
When launched
xhost +
## Exploitdb | |
https://www.exploit-db.com/ | |
## OWASP | |
https://owasp.org/ | |
https://owasp.org/www-project-juice-shop/ | |
## BurpSuite | |
https://portswigger.net/burp |
- https://medium.com/wallscope/comparing-linked-data-triplestores-ebfac8c3ad4f | |
- https://www.w3.org/TR/owl2-profiles/#OWL_2_RL | |
- https://habr.com/ru/articles/444828/ | |
- https://www.dbpedia.org/ | |
- https://www.wikidata.org/wiki/Wikidata:Main_Page |
Putting up a bounty didn't produce a solution to this, so I've spent a while figuring out the best one I could. I don't have any source confirming that this is the correct way to do it, so use at your own risk.
To convert any string into a SQLite identifier:
"
with ""
.Goland Type lookup SHIFT+CTRL+P
Goland Documentation lookup CTRL+Q
dpkg_or_whatever -i ./your_distrib_.deb_or_whatever
export VM_NAME="UbntSrv0"
#!/bin/sh | |
# i3-get-window-criteria - Get criteria for use with i3 config commands | |
# To use, run this script, then click on a window. | |
# Output is in the format: [<name>=<value> <name>=<value> ...] | |
# Known problem: when WM_NAME is used as fallback for the 'title="<string>"' criterion, | |
# quotes in "<string>" are not escaped properly. This is a problem with the output of `xprop`, | |
# reported upstream: https://bugs.freedesktop.org/show_bug.cgi?id=66807 |
sudo mysql -u root | |
use mysql; | |
update user set plugin='' where User='root'; | |
flush privileges; | |
exit; |
xrandr --output VGA1 --right-of LVDS1 | |
xrandr --output DP-1-1 --auto --left-of LVDS1 |
export WORKON_HOME=$HOME/envs | |
PROMPT="$USER@%m ${PROMPT} %/ | |
$ " |