Skip to content

Instantly share code, notes, and snippets.

View azamah's full-sized avatar
💭
I may be slow to respond.

Danilo Nader azamah

💭
I may be slow to respond.
View GitHub Profile
@azamah
azamah / app.js
Created March 8, 2019 22:38 — forked from dawsontoth/app.js
Rate my app in Appcelerator Titanium Mobile
/**
* The following snippet will ask the user to rate your app the second time they launch it.
* It lets the user rate it now, "Remind Me Later" or never rate the app.
*/
var win = Ti.UI.createWindow({ backgroundColor: '#fff' });
win.addEventListener('open', checkReminderToRate);
win.add(Ti.UI.createLabel({ text: 'This is a simple app that will remind you to rate it.' }));
win.open();
function checkReminderToRate() {
@azamah
azamah / git.md
Created July 20, 2018 21:02 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

#GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda