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
cls | |
cd \ | |
echo %PROGRAMFILES% | |
echo %PROGRAMDATA% | |
echo %USERPROFILE% | |
echo %PATH% | |
echo %JAVA_HOME% | |
java -version | |
javac -version | |
python -V |
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
....... .. . . . . WEWI ............. | |
..... . . . WEWILL$ . ............. | |
... .. .... .. ........ .. ..$WEWILLC .. ............... | |
... ... .... WEWILLCON ............. | |
... ...... .. . .. ... . ..WEWILLCON.. ... ............. | |
...... .... . .... ... .....WEWILLCO .... ............... | |
... .. . WEWILLC. ............. | |
... . .... WEWIL.. ............. | |
... . ... . ~O+.. ..:MDDD... ............. | |
..... . .. . ..WEWILLCONTRO. ..LYOUWEWILLCONT............. |
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
var win = Ti.UI.createWindow({ | |
backgroundColor: 'white', | |
fullscreen: false | |
}); | |
var data = []; | |
for(var i=0;i<20;i++){ | |
var descriptionRow = Ti.UI.createTableViewRow({ | |
height:100, |
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
Titanium.UI.setBackgroundColor('#000'); | |
var win1 = Ti.UI.createWindow({ | |
backgroundColor:'white', | |
fullscreen:false, | |
exitOnClose:true | |
}); | |
var minDate = new Date(2011,11,1); |
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
Ti.UI.setBackgroundColor('#000'); | |
var tabGroup = Ti.UI.createTabGroup(); | |
var win1 = Ti.UI.createWindow({ | |
title:'Tab 1', | |
backgroundColor:'#fff' | |
}); | |
var tab1 = Ti.UI.createTab({ | |
title:'Tab 1', |
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
var stateful = require('statefulModule'); | |
var score = require('scoreModule'); | |
var window = Ti.UI.createWindow({ | |
backgroundColor:'white', | |
fullscreen:false, | |
title:'Click window to score' | |
}); | |
window.addEventListener('click', function() { |
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
data='<th scope="col" style="padding-top:0">Heading one</th> </tr><tr class="odd"> <td>May 2011</td> <td>dfgibwsd</td> '; | |
var regExArr = [ | |
{ | |
"regex":"<td.*>[\\S\\s]*</td>", | |
"modifier":"gi", | |
"action":"match" | |
} | |
] | |
var resultsArray = []; | |
for(var i=0,ilen=regExArr.length;i<ilen;i++){ |
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
Titanium.UI.setBackgroundColor('#000'); | |
var win1 = Titanium.UI.createWindow({ | |
backgroundColor:'white', | |
exitOnClose:true, | |
layout:'vertical', | |
title:'win1: Main Window' | |
}); | |
Ti.App.addEventListener('fromWebview',function(e){ |
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
Copyright (c) 2011 Peter Hillerström, http://peter.vasb.fi/ | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including | |
without limitation the rights to use, copy, modify, merge, publish, | |
distribute, sublicense, and/or sell copies of the Software, and to | |
permit persons to whom the Software is furnished to do so, subject to | |
the following conditions: | |
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
893 AndroidRuntime D Shutting down VM | |
893 dalvikvm W threadid=1: thread exiting with uncaught exception (group=0x4001d800) | |
893 TiUncaughtHandler E (main) [59,33533] Sending event: exception on thread: main msg:java.lang.IllegalStateException: call to | |
getView on a Window; Titanium 1.5.2,2011/01/11 12:45,e8ed10... | |
893 TiUncaughtHandler E java.lang.IllegalStateException: call to getView on a Window | |
893 TiUncaughtHandler E at ti.modules.titanium.ui.WindowProxy.getView(WindowProxy.java:57) | |
893 TiUncaughtHandler E at org.appcelerator.titanium.util.TiAnimationBuilder.render(TiAnimationBuilder.java:176) | |
893 TiUncaughtHandler E at org.appcelerator.titanium.util.TiAnimationBuilder.render(TiAnimationBuilder.java:133) | |
893 TiUncaughtHandler E at org.appcelerator.titanium.view.TiUIView.processProperties(TiUIView.java:419) | |
893 TiUncaughtHandler E at ti.modules.titanium.ui.TiUIWindow.p |
NewerOlder