- http://www.errorify.com/ - source maps
- http://errorception.com/ - translate error messages to English
- http://www.exceptionhub.com/
- http://jserrlog.appspot.com/
- http://www.muscula.com/ - source maps, translate error messages to English
- https://www.airbrake.io/ - tracekit, source maps
- http://www.errorstack.com/
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
{ | |
"jshint_options": | |
{ | |
"browser" : false, | |
"camelcase" : true, | |
"curly" : true, | |
"devel" : false, | |
"indent" : false, | |
"jquery" : 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
<?php | |
/** | |
* ProcessWire PagesToJSON Module | |
* | |
* Adds the ability to output a PageArray as JSON | |
* Original code from RC here: http://processwire.com/talk/topic/1417-export-array-to-json-format/ | |
* Don't for get to add header("Content-type: application/json"); to pages that output JSON only | |
* | |
* ProcessWire 2.x |
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
/*******************************/ | |
/* app.js | |
*/ | |
/*******************************/ | |
// this sets the background color of the master UIView (when there are no windows/tab groups on it) | |
Titanium.UI.setBackgroundColor('#000'); | |
var baseWin = Titanium.UI.createWindow({ | |
backgroundColor:'red', |
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 win = Titanium.UI.currentWindow; | |
var menuOpen = false; | |
var lbl = Titanium.UI.createLabel({ | |
color:'#FFF', | |
text:'Base', | |
right:0 | |
}); | |
win.add(lbl); |
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
#!C:\ruby\bin | |
require 'yaml' | |
require 'cgi' | |
require 'net/http' | |
require 'uri' | |
# configure multiple project settings below | |
SVNLOOK = `E:\Subversion\bin\svnlook.exe' | |
LOG_FILE = 'C:\temp\svn-hooks.log' |