This file contains 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
var countryData = []; | |
var countrySection; | |
var countryList; | |
var maxFetchRows = 20; | |
var currentListMarker = 0; | |
var testWin = Titanium.UI.createWindow({ | |
top:20, |
This file contains 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
/* | |
* Sample implementation of collapsable list view sections in Titanium (Common JS) | |
* by Renato Costa (renato (dot) duino (at) gmail (dot) com) | |
*/ | |
var indicatorOpened = '[-]'; | |
var indicatorClosed = '[+]'; | |
var exampleList; | |
//Simple window for demo purposes |
This file contains 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 | |
# Thanks to all the nice folks @seemoo-lab for making this possible. | |
# See: https://github.com/seemoo-lab/nexmon | |
# This script should be run as root (i.e: sudo ./nexmon.sh) from the /home/pi/ directory! | |
function info { | |
tput bold; | |
tput setaf 3; | |
echo $1; |