"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
// ==UserScript== | |
// @name myNTU Search | |
// @version 1.1 | |
// @match https://my.ntu.edu.tw/* | |
// @grant none | |
// ==/UserScript== | |
document.getElementById('searchText').removeAttribute('disabled') | |
document.getElementById('search').onclick = null |
In ubuntu 16.04 docker container
Get correct glibc version source code
This is for gdb debug and pwn, reverse
go to launchpad, apt source
cannot get specific version, check version by apt-cache policy libc6
, the version is 2.23-0ubuntu11
, even 0ubuntu11
need to be the same with source. Finally, run dpkg-source -x glibc_2.23-0ubuntu11.dsc
.
Only get source:
Compile with cuda support, tested with nvidia/cuda:9.0-devel and nvidia/cuda:10.0-devel
docker run --gpus all --rm -i -t -v $(pwd)/JohnTheRipper-1.8.0-jumbo-1:/JohnTheRipper-1.8.0-jumbo-1 nvidia/cuda:9.0-devel bash
apt-get update
dist=$(. /etc/os-release;echo $ID$VERSION_ID)
if [ "$dist" = "ubuntu18.04" ]; then apt-get install -y sudo gcc-4.8 g++-4.8 libssl1.0-dev zlib1g-dev nvidia-opencl-dev
System: Ubuntu 18.04
solution: tools: iw, hostapd, iptables, udhcpd, udhcpc, macchanger
This is where I started: How do I create a WiFi hotspot sharing wireless internet connection (single adapter)?
The answer replied by Purushoth is not correct
I couldn't find "Edit Connections" from gnome desktop environment, so I tried other tools I could find (nmcli
, nmtui
).