- install java (if not) get path of it via `ls -l /etc/alternatives/java` for JAVA_HOME
- mkdir android, cd android
- git clone git://git.sv.gnu.org/emacs.git git checkout feature/android
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/bash | |
# assign keyboard shortcut to bash thirds.sh | |
# run shortcut on the window to resize | |
# it auto cycles to the position (0)left, (1)middle, (2)right | |
# create a counter file to store positions | |
counter="thirds-counter.txt" | |
if [[ -f $counter ]]; then | |
count=$(<$counter) | |
else |
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
/* | |
Create Tables and select the one you need to input data. | |
Create Validations Table for each Table as TableName-Val. | |
Create Three Fields as Text in Validations Table as Column, Regex, Remark | |
Enter Column Names to Validate into Column Field in Validation Table. | |
Give Regex to validate and Remark to show when invalid data entered. | |
*/ | |
/* Ask to input data in table whose validation table exists. */ | |
let allTables = base.tables.filter(table => table.name.endsWith("-Val")).map(table => table.name.slice(0,-4)) |