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
package com.example.app; | |
import android.os.AsyncTask; | |
import android.util.Log; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.NameValuePair; | |
import org.apache.http.client.ClientProtocolException; | |
import org.apache.http.client.HttpClient; | |
import org.apache.http.client.entity.UrlEncodedFormEntity; |
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
# For an explanation of the steroids.config properties, see the guide at | |
# http://guides.appgyver.com/steroids/guides/project_configuration/config-application-coffee/ | |
steroids.config.name = "Steroids Tutorial" | |
# -- Initial Location -- | |
steroids.config.location = "http://localhost/index.html" | |
# -- Tab Bar -- | |
steroids.config.tabBar.enabled = true |
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
03-17 15:35:32.755 30899-30908/? A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdf911ea5 (code=1), thread 30908 (FinalizerDaemon) | |
03-17 15:35:33.165 435-503/? E/InputDispatcher﹕ channel '42c4e248 com.gamerushapp.gamerush/com.gamerushapp.gamerush.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed! | |
03-17 15:35:56.055 31004-31013/com.gamerushapp.gamerush A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xbe083c1c (code=1), thread 31013 (FinalizerDaemon) | |
03-17 15:35:56.495 435-503/? E/InputDispatcher﹕ channel '42c51638 com.gamerushapp.gamerush/com.gamerushapp.gamerush.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed! |
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
Show hidden characters
{ | |
"selector": "source.js", | |
"cmd": ["jshint", "$file"], | |
"file_regex": "JSHint: (.+)\\]", | |
"line_regex": "(\\d+),(\\d+): (.*)$", | |
"osx": { | |
"path": "/usr/bin/npm:/usr/local/share/npm/bin:/usr/local/bin:/opt/local/bin" |
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
creating 1 turny per 1 game | |
/Users/rover/.nvm/v0.10.26/lib/node_modules/mongodb/lib/mongodb/connection/base.js:242 | |
throw message; | |
^ | |
TypeError: Object function (){ | |
send = function(msg) { | |
console.log("populateDb: gamesAll: res: send: msg="+msg); | |
}; | |
} has no method 'send' |
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
// no such record insert | |
> use test | |
switched to db test | |
> show collections | |
system.indexes | |
test | |
> db.test.find() | |
{ "_id" : ObjectId("533d5ec091d39080c18ec8ba"), "_accountId" : "100000057408993" } | |
> |
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
RoverMR:transitions rover$ pwd | |
/Users/rover/Documents/Dev/Famous/examples/src/famous/transitions | |
RoverMR:transitions rover$ grunt serve | |
Warning: Task "serve" not found. Use --force to continue. | |
Aborted due to warnings. |
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
function getEvents($scope, $http) { | |
$http.get('http://adaptivedev.com:5432/events'). | |
success(function(data) { | |
$scope.event = data; | |
}); | |
} |
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
RoverMR:webapp rover$ sudo npm install -g cordova ionic | |
npm http GET https://registry.npmjs.org/cordova | |
npm http 304 https://registry.npmjs.org/cordova | |
npm http GET https://registry.npmjs.org/ionic | |
npm http 304 https://registry.npmjs.org/ionic | |
npm http GET https://registry.npmjs.org/ionic/-/ionic-1.0.14.tgz | |
npm http 200 https://registry.npmjs.org/ionic/-/ionic-1.0.14.tgz | |
npm ERR! tar pack Error reading /Users/rover/tmp/npm-17449/1402850106338-0.5961648433003575/package | |
npm ERR! TypeError: Cannot call method 'filter' of undefined | |
npm ERR! at Packer.IgnoreReader.addIgnoreRules (/usr/local/lib/node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore/ignore.js:148:13) |
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
RoverMR:www rover$ cat js/app.js | |
// Ionic Starter App | |
// angular.module is a global place for creating, registering and retrieving Angular modules | |
// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html) | |
// the 2nd parameter is an array of 'requires' | |
//angular.module('starter', ['ionic']) | |
angular.module('todo', ['ionic']); | |
.run(function($ionicPlatform) { |
OlderNewer