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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
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
# Configuration file for runtime kernel parameters. | |
# See sysctl.conf(5) for more information. | |
# See also http://www.nateware.com/linux-network-tuning-for-2013.html for | |
# references: | |
# | |
# https://config.securix.org/config/securix-conf/etc/sysctl.conf | |
# https://github.com/minhdanh/Linux-Kernel-Tuning-and-Hardening/blob/master/kernel_hardening_tuning.sh | |
# https://gist.github.com/sokratisg/98d03e20fca76d4b699f | |
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
{ | |
"run_name": "ljspeech", | |
"run_description": "Tacotron ljspeech release training", | |
"audio":{ | |
// Audio processing parameters | |
"num_mels": 80, // size of the mel spec frame. | |
"num_freq": 1025, // number of stft frequency levels. Size of the linear spectogram frame. | |
"sample_rate": 16000, // DATASET-RELATED: wav sample-rate. If different than the original data, it is resampled. | |
"frame_length_ms": 50, // stft window length in ms. |
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
# Scenario | |
# You have control of one computer <remote_address> behind NAT and its public internet facing router <sshd_address>. | |
# You want to access them from another computer <local_address> that is behind another uncontrolled NAT, | |
# and also from <remote_address> to this <local_address>. | |
# Run following command in <local_address>. | |
# Enable sock5 proxy and allow remote access of local RDP | |
ssh -R 0.0.0.0:2222:127.0.0.1:3389 -D 8765 -N <sshd_address> | |
# Access remote SSH and another computer's RDP |
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 | |
####################################################### | |
# | |
# Edits the proxmox Subscription file to make it | |
# think that it has a Subscription. | |
# | |
# Will disable the annoying login message about | |
# missing subscription. | |
# |