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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestPage.aspx.cs" Inherits="TestPage" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<title></title> | |
</head> | |
<body> | |
<form id="form1" runat="server"> |
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
requirejs = require 'requirejs' | |
# requirejs | |
requirejs.config { | |
# Pass the top-level main.js/index.js require | |
# function to requirejs so that node modules | |
# are loaded relative to the top-level JS file. | |
nodeRequire: require | |
paths: { | |
} |
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
define ['http', 'express', 'odo/config'], (http, express, config) -> | |
(plugins) -> | |
app = express() | |
# express config | |
for key, value of config.express | |
app.set key, value | |
# Configure express |
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
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"binary_file_patterns": | |
[ | |
"*min.js", | |
"*min.css" | |
], | |
"bold_folder_labels": true, |
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
# Dynamic content | |
# =============== | |
# Using a blog as an example | |
# Render content on the server | |
# ---------------------------- | |
# | |
# /admin/editpost/234 | |
app.get '/admin/editpost/:id', (req, res) => | |
id = req.query.id |
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
lanuchy | |
bump | |
z | |
highlight | |
trash | |
go-every |
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
Show hidden characters
{ | |
"cmd": ["lessc", "$file", "${file_path}/${file_base_name}.css", "--verbose"], | |
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", | |
"selector": "source.less", | |
"osx": | |
{ | |
"path": "/usr/local/bin:$PATH" | |
}, |
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
define [ | |
'd3' | |
], (d3) -> | |
class Direction | |
constructor: (options) -> | |
{ | |
@element | |
@data | |
@margin | |
@width |
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
#include <stdlib.h> | |
#include <stdio.h> | |
int main() { | |
pid_t pid; | |
int i; | |
for (i = 0; ; i++) { | |
pid = fork(); |
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
fs = require 'fs' | |
path = require 'path' | |
async = require 'odo-async' | |
isgit = require 'is-git' | |
tags = | |
open: '/Users/tcoats/Open' | |
odo: '/Users/tcoats/Odo' | |
metocean: '/Users/tcoats/MetOcean' | |
mayhem: '/Users/tcoats/Mayhem' |
OlderNewer