- Tahrir academy https://www.youtube.com/channel/UCV_CVB7S7pWC_khhcyvGxwg https://www.youtube.com/watch?v=8xEnmCVS8VU&list=PLBei6dkcMlV8FhIvFocvhIvOC4Iuf3UrD critical thinking
- Arabic Competitive Programming https://www.youtube.com/channel/UC8OxKsmAyrGAfBiluhpLkbA
- Code Masry https://www.youtube.com/channel/UCNy1EO4T0EM4w3I3-1-AnbA
- Da7eee7 - الدحيح https://www.youtube.com/channel/UCqW7G8SmyeEeQYzLOk5tdSg
- HunaSV | هنا السيلكون فالي https://www.youtube.com/channel/UCG7d4InIrwfF9MZd__TQ71w
- Mohamed Elsherif (Ask Developer Hangout) https://www.youtube.com/channel/UCi9DV7ai7a8-XgRt5iH9d7Q
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
// add all items to collection | |
Alloy.Collections.Fugitive.reset([{ | |
"name" : "Jeff Haynie" | |
}, { | |
"name" : "Nolan Wright" | |
}, { | |
"name" : "Don Thorp" | |
}, { | |
"name" : "Marshall Culpepper" | |
}, { |
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 = Titanium.UI.currentWindow; | |
var ind=Titanium.UI.createProgressBar({ | |
width:200, | |
height:50, | |
min:0, | |
max:1, | |
value:0, | |
style:Titanium.UI.iPhone.ProgressBarStyle.PLAIN, | |
top:10, |
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.Media.showCamera({ | |
allowEditing: true, | |
success: function(event) { | |
var image = event.media; | |
var pxhr = Titanium.Network.createHTTPClient(); | |
pxhr.onerror = function() { | |
Ti.UI.createNotification({ | |
message:'Upload failed, please try again.' | |
}).show(); | |
} |