- Check for an existing
.gitignorefile in the project directory
ls -a| ;; Jon Dolan ;; | |
| ;; V1.0 - March 5th, 2017 ;; | |
| ;; Windows emulator for Yakuake/Guake written in AHK (https://autohotkey.com) ;; | |
| ;; Provies drop down capabilities to whatever Windows terminal program you please ;; | |
| ;; By default, this script uses Bitvise xterm with the hotkey F12 ;; | |
| ;; But it is configurable by changing the global variables below ;; | |
| ;; To compile this script after changing it to your liking: ;; |
ts error: libdvbpsi error (PSI decoder): TS duplicate (received 0, expected 1) for PID 0
ts error: libdvbpsi error (PSI decoder): TS duplicate (received 0, expected 1) for PID 4095
| #!/data/data/com.termux/files/usr/bin/bash | |
| # | |
| # This is a termux-url-opener script to do diffrent tasks on my Android phone | |
| # | |
| # | |
| # | |
| # How to use this script | |
| ############################# | |
| # | |
| # Install git |
| # Description: Boxstarter Script | |
| # Author: David Peter Hansen | |
| # Based on Boxstarter script by Jess Frazelle | |
| # Last Updated: 2017-11-10 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| /** | |
| ** Postman as of the date of this writing does not support auto-refreshing of Oauth-2 tokens. | |
| ** This is an exmaple on how in one can refresh their Oauth-2 tokens just using the pre-request scripts. | |
| ** Pre-requisites: You need to have a refresh token. You can use the Postman app to get one. | |
| **/ | |
| // Set all these variables in an environment or at collection level | |
| let tokenUrl = pm.variables.get('tokenUrl'), | |
| clientId = pm.variables.get('clientId'), | |
| clientSecret = pm.variables.get('clientSecret'), |
| { | |
| "globals" : | |
| { | |
| "alwaysShowTabs" : true, | |
| "defaultProfile" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "initialCols" : 120, | |
| "initialRows" : 30, | |
| "keybindings" : | |
| [ | |
| { |
| function Measure-ChildItem { | |
| <# | |
| .SYNOPSIS | |
| Recursively measures the size of a directory. | |
| .DESCRIPTION | |
| Recursively measures the size of a directory. | |
| Measure-ChildItem uses win32 functions, returning a minimal amount of information to gain speed. Once started, the operation cannot be interrupted by using Control and C. The more items present in a directory structure the longer this command will take. | |
| This command supports paths longer than 260 characters. |
# @ your EC2 instance
sudo apt update
sudo apt install openjdk-8-jre unzip
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
unzip sdk-tools-linux-4333796.zip -d android-sdk
sudo mv android-sdk /opt/
export ANDROID_SDK_ROOT=/opt/android-sdk