- certificate--which tells your devices that Apple trust you
- a app id
- a test device
- a provisioning profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pull docker image | |
docker pull breakwa11/shadowsocksr | |
# run | |
docker run -d --name ssr0 -p 1202:51348 -e METHOD="aes-256-cfb" -e PROTOCOL="auth_sha1_v4" -e OBFS="http_simple" -e PASSWORD="HelloWorld" breakwa11/shadowsocksr | |
#ss | |
docker pull mritd/shadowsocks | |
docker run -d --name ss -p 6443:6443 mritd/shadowsocks -s "-s 0.0.0.0 -p 6443 -m chacha20 -k password --fast-open" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd\Program Files\Microsoft Office\Office16 | |
cd\Program Files (x86)\Microsoft Office\Office16 | |
cscript OSPP.VBS /sethst:kms.digiboy.ir | |
cscript OSPP.VBS /actcscript OSPP.VBS /dstatus | |
slmgr.vbs /ckms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.8 | |
MAINTAINER ettingshausen <[email protected]> | |
WORKDIR / | |
ENV NPC_VERSION 0.23.1 | |
RUN set -x && \ | |
wget --no-check-certificate https://github.com/cnlh/nps/releases/download/v${NPC_VERSION}/linux_amd64_client.tar.gz && \ | |
mkdir \npc && \ | |
mv linux_amd64_client* /npc && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install ffmpeg | |
ffmpeg -i /path/to/input/file /path/to/output.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -d --name sonarqube --restart always \ | |
-v /root/docker/snonarqube/data:/opt/sonarqube/data \ | |
-v /root/docker/snonarqube/logs:/opt/sonarqube/logs \ | |
-v /root/docker/snonarqube/extensions:/opt/sonarqube/extensions \ | |
--privileged=true \ | |
-p 7000:9000 -p 7092:9092 \ | |
172.16.0.91:8089/sonarqube:latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "======== start clean docker containers logs ========" | |
logs=$(find /var/lib/docker/containers/ -name *-json.log) | |
for log in $logs | |
do | |
echo "clean logs : $log" | |
cat /dev/null > $log |
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
To get the list of your installed applications:
Lookup the open port:
iptables -L -n
Add new open port:
//open 8080 port
iptables -I IN_public_allow -p tcp --dport 8080 -j ACCEPT