See repo: https://github.com/patrickdappollonio/nginx-vs-caddy-benchmark
Send your feedback to @marlex or open an issue in the repo.
See repo: https://github.com/patrickdappollonio/nginx-vs-caddy-benchmark
Send your feedback to @marlex or open an issue in the repo.
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: nginx | |
replicas: 2 | |
template: |
pm uninstall --user 0 com.microsoft.appmanager | |
pm uninstall --user 0 com.google.android.youtube | |
pm uninstall --user 0 com.samsung.android.kidsinstaller | |
pm uninstall --user 0 com.netflix.partner.activation | |
pm uninstall --user 0 com.microsoft.skydrive | |
pm uninstall --user 0 com.samsung.android.sume.nn.service | |
pm uninstall --user 0 com.singtel.mysingtel | |
pm uninstall --user 0 com.android.chrome | |
pm uninstall --user 0 com.netflix.mediaclient | |
pm uninstall --user 0 com.facebook.katana |
#!/usr/bin/env bash | |
sudo apt update && sudo apt install -y git automake build-essential pkg-config libevent-dev libncurses5-dev byacc bison | |
rm -fr /tmp/tmux | |
git clone https://github.com/tmux/tmux.git /tmp/tmux | |
cd /tmp/tmux | |
git checkout 3.0 | |
sh autogen.sh | |
./configure && make | |
sudo make install |
0.nextyourcontent.com | |
006.free-counter.co.uk | |
006.freecounters.co.uk | |
0101011.com | |
0427d7.se | |
05tz2e9.com | |
06272002-dbase.hitcountz.net | |
09killspyware.com | |
0d79ed.r.axf8.net | |
0pn.ru |
Disclaimers:
adb shell
.pm uninstall -k --user 0 com.sec.android.desktopmode.uiservice
Actually, this already works using VirtualBox’s NAT networking mode in your guest. What doesn’t work is resolving domain names from the guest that are only known in the VPN network.
So if you have a a domain like w3.mycompany.com that only resolves using the VPN’s DNS, you can resolve that name from your host (which is connected to the VPN), but not from your guest by default. You won’t be able to ping w3.mycompany.com from the guest. However, if you try to ping the IP address from your guest, that works.
To solve this, VirtualBox has a nice feature to allow you to set the Host DNS resolver as the DNS proxy of a VirtualBox VM. To configure this, you first need to figure out the id of your VirtualBox VM:
$ VBoxManage list vms
Sub Español() | |
ChangeProofingLanguageToSpanish | |
End Sub | |
Sub ChangeProofingLanguageToSpanish() | |
Dim j, k As Integer | |
Dim languageID As MsoLanguageID | |
' Selecciona tu lenguaje preferido y ponlo debajo. La lista | |
' completa está en https://msdn.microsoft.com/en-us/library/aa432635.aspx |
package main | |
import ( | |
"fmt" | |
"sort" | |
) | |
type Stack struct { | |
st []int | |
ordered []int |