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
. | |
|-- README | |
|-- lib | |
| |-- lightsource | |
| | |-- auth.rb | |
| | |-- model | |
| | | `-- model | |
| | | |-- xampl-gen.sh | |
| | | `-- xml | |
| | | `-- lightsource.xml |
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
<div id='content'> | |
<div class='wide'> | |
<div class='top'></div> | |
<div class='txt'> | |
<div id='galleryPages'> | |
<div> | |
<script type='text/javascript'> | |
$().ready(function(){ | |
jQuery("#itunesfeature").itunesFeature(); | |
}); |
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
server { | |
listen 80 default; | |
server_name _; | |
access_log /var/log/nginx/engine.log; | |
server_name_in_redirect off; | |
location / { | |
proxy_pass http://127.0.0.1:8080/; | |
include /etc/nginx/proxy.conf; | |
} | |
} |
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
proxy_redirect off; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
client_max_body_size 10m; | |
client_body_buffer_size 128k; | |
proxy_connect_timeout 90; | |
proxy_send_timeout 90; | |
proxy_read_timeout 90; | |
proxy_buffers 32 4k; |
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
Error: 500 Internal Server Error | |
Error: Template path "app/views/_js.html.ejs" not found | |
at Error. (/Users/kuccello/Development/SoldierOfCode/Projects/TaskMap/vendor/geddy-core/lib/errors.js:39:13) | |
at [object Object].partial (/Users/kuccello/Development/SoldierOfCode/Projects/TaskMap/vendor/geddy-core/lib/controller.js:343:15) | |
at Object.partial (/Users/kuccello/Development/SoldierOfCode/Projects/TaskMap/vendor/geddy-core/lib/controller.js:327:28) | |
at [object Object]. (eval at (/Users/kuccello/.node_libraries/geddy-core/lib/fleegix.js:1:13157)) | |
at [object Object].process (/Users/kuccello/.node_libraries/geddy-core/lib/fleegix.js:1:13157) | |
at /Users/kuccello/Development/SoldierOfCode/Projects/TaskMap/vendor/geddy-core/lib/templates.js:92:13 | |
at fs:81: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
taskmap.js | |
------------- | |
var sys = require('sys'); | |
sys.puts("Loading taskmap..."); | |
var Taskmap = function () { | |
this.respondsWith = ['html', 'json', 'txt']; | |
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
require 'rubygems' | |
require 'term/ansicolor' | |
COLORS = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white'] | |
class String | |
include Term::ANSIColor | |
end | |
(0..15).each do |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
/* | |
* Fork & Refactor of https://gist.github.com/246761 | |
* -> Credit: Noah Sloan <http://noahsloan.com> | |
*/ | |
/** | |
* Simple webserver with logging. Serves whatever files are reachable from | |
* the directory where node is running. Supports Windows port of node. | |
*/ | |
var fs = require('fs'), |
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
<html> | |
<head> | |
<title>Hello</title> | |
</head> | |
<body> | |
<h1>Hello World!</h1> | |
<p>Greetings from the internet!</p> | |
</body> | |
</html> |
OlderNewer