- Understanding how uid and gid work in Docker containers Jan 2017
- Processes In Containers Should Not Run As Root Sept 2017
Prior to Docker supporting User Namespaces
Prior to Docker supporting User Namespaces
1) Install cloudflared using homebrew: | |
brew install cloudflare/cloudflare/cloudflared | |
2) Create /usr/local/etc/cloudflared/config.yaml, with the following content | |
proxy-dns: true | |
proxy-dns-upstream: | |
- https://1.1.1.1/dns-query | |
- https://1.0.0.1/dns-query |
I’m looking for any tips or tricks for making chrome headless mode less detectable. Here is what I’ve done so far:
Set my args as follows:
const run = (async () => {
const args = [
'--no-sandbox',
'--disable-setuid-sandbox',
'--disable-infobars',
import poplib | |
import email | |
from base64 import b64decode | |
pop3_server = 'pop.gmail.com' | |
pop3_port = '995' | |
username = '[email protected]' | |
password = 'XXXXXXXXXXXXXX' | |
M = poplib.POP3_SSL(pop3_server, pop3_port) |
apt-get install python-pip
pip install shadowsocks
sudo ssserver -p 443 -k password -m aes-256-cfb --user nobody -d start
先从windows系统复制文件simsun.ttf到你的虚拟机下(c:\windows\fonts\
),在CrossOver下打开regedit
(命令行方式)
找到HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements
,删除下面的项目simsun 宋体 新宋体
package main | |
import ( | |
"bytes" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"errors" | |
"io" | |
"io/ioutil" |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.foobar.ifconfiglo</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/sbin/ifconfig</string> |
;Disable and Enable Synaptics touchpad using Keyboard Shortcut on Windows 10 | |
;CTRL+F9 to enable the Synaptics Touchpad | |
^F9:: | |
Run C:\Windows\System32\control.exe main.cpl ;Open Mouse Properties | |
Sleep 1000 ;Wait one second | |
if WinExist("Mouse Properties") { | |
WinActivate ;Make Mouse Properties the active Window | |
Send, ^+{TAB} ;Go to last tab | |
Send, !E ;Alt+E to enable touchpad |