$ keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "C=US, O=Android, CN=Android Debug"| #!/bin/sh | |
| # Pick a uuid for the app (or reuse existing one). | |
| if ! [ -f installApp.uuid ]; then | |
| uuidgen > installApp.uuid | |
| fi | |
| UUID=$(cat installApp.uuid) | |
| #create supporting folders | |
| TOPDIR="/Users/Apple/Library/Application Support/iPhone Simulator/7.0/Applications/$UUID/" | |
| mkdir -p "$TOPDIR" | |
| mkdir -p "$TOPDIR/Documents" |
| <?php | |
| define('OAUTH2_CLIENT_ID', ''); | |
| define('OAUTH2_CLIENT_SECRET', ''); | |
| $authorizeURL = 'https://github.com/login/oauth/authorize'; | |
| $tokenURL = 'https://github.com/login/oauth/access_token'; | |
| $apiURLBase = 'https://api.github.com/'; | |
| session_start(); |
-
Download the NeverWare's ChromeOS build from http://www.neverware.com/freedownload
-
Extract the *.bin.zip
-
Convert it to VDI.
vboxmanage convertdd chromiumos_image.bin chromiumos_image.vdi -
mv chromiumis_image.vdi C:\t\v\chromeos\
| ## This Script is intended to be used for Querying remaining time and resetting Terminal Server (RDS) Grace Licensing Period to Default 120 Days. | |
| ## Developed by Prakash Kumar (prakash82x@gmail.com) May 28th 2016 | |
| ## www.adminthing.blogspot.com | |
| ## Disclaimer: Please test this script in your test environment before executing on any production server. | |
| ## Author will not be responsible for any misuse/damage caused by using it. | |
| Clear-Host | |
| $ErrorActionPreference = "SilentlyContinue" | |
| ## Display current Status of remaining days from Grace period. |
Starting with Windows 10 build 1709, Windows integrates a port of OpenSSH, client and server.
This note describes how to install and configure the OpenSSH server sshd and run PowerShell scripts on a remote Windows server, from a Unix system, using SSH and public key authentication (no password).
Note: The way OpenSSH has been integrated in Windows 10 has changed a lot between versions 1709 and 21H2 of Windows 10. The Gist was updated several times to reflect the changes. This version applies to Windows 10 21H2.
| # The part .data=0x08000000 should be replaced with the correct base offset of the ROM. | |
| # The value 0x08000000 is valid for STM32. | |
| arm-none-eabi-objcopy -I binary -O elf32-little --change-section-address .data=0x08000000 input.bin output.elf |
| # Adjust the following variables as necessary | |
| REMOTE=origin | |
| BRANCH=$(git rev-parse --abbrev-ref HEAD) | |
| BATCH_SIZE=500 | |
| # check if the branch exists on the remote | |
| if git show-ref --quiet --verify refs/remotes/$REMOTE/$BRANCH; then | |
| # if so, only push the commits that are not on the remote already | |
| range=$REMOTE/$BRANCH..HEAD | |
| else |
Run terminal below commands
$ sudo pkill usbmuxd
$ sudo killall -STOP -c usbd
```
| #!/bin/sh | |
| mkdir ~/tmp | |
| cd ~/tmp | |
| # See | |
| # Typical ARM triples (see "armv7l-linux-gnueabi") | |
| # https://bgamari.github.io/posts/2019-06-12-arm-terminology.html | |
| # GCC -march options | |
| # https://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html |