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
{ | |
"accomplishment_courses" : [], | |
"accomplishment_honors_awards" : [], | |
"accomplishment_organisations" : [], | |
"accomplishment_patents" : [], | |
"accomplishment_projects" : [ | |
{ | |
"description" : "gMessenger was built using Ruby on Rails, and the Bootstrap HTML, CSS, and JavaScript framework. It uses a Websocket-Rails integration to post a user's message content to the page in real time, with no page refresh required. gMessenger also includes custom authentication with three different permissions levels.", | |
"ends_at" : null, | |
"starts_at" : { |
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
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) | |
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
package main | |
import ( | |
"fmt" | |
solr "github.com/rtt/Go-Solr" | |
"os" | |
) | |
>>func main() { | |
s, err := solr.Init("localhost", 8983, "gowiki") |
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
var sprintf = require('sprintf').sprintf | |
Array.prototype.mysort = function() { | |
for (var i= 0; i < this.length; i++) { | |
this[i] = sprintf("%03d %s", this[i].length ,this[i]) | |
} | |
this.sort() | |
} | |
var wrench = require ('wrench'); | |
var a = wrench.readdirSyncRecursive('./'); |
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
module.exports = function(grunt) { | |
var localConfig = { | |
target: '../Build/release/' | |
}; | |
grunt.initConfig({ | |
localConfig: localConfig, | |
pkg: grunt.file.readJSON('package.json'), | |
concat: { | |
product: { | |
src: ['js/foundation/*.js'], |
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
module.exports = function(grunt) { | |
var localConfig = { | |
target: '../Build/release/' | |
}; | |
grunt.initConfig({ | |
localConfig: localConfig, | |
pkg: grunt.file.readJSON('package.json'), | |
concat: { | |
product: { | |
src: ['js/foundation/*.js'], |
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
module.exports = function(grunt) { | |
var localConfig = { | |
target: '../Build/release/' | |
}; | |
grunt.initConfig({ | |
dir: localConfig, | |
pkg: grunt.file.readJSON('package.json'), | |
concat: { | |
basic: { | |
src: ['js/foundation/*.js'], |
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
var { | |
ErrInvalidUnreadByte = errors.New("bufio: invalid use of UnreadByte") | |
ErrInvalidUnreadRune = errors.New("bufio: invalid use of UnreadRune") | |
ErrBufferFull = errors.New("bufio: buffer full") | |
ErrNegativeCount = errors.New("bufio: nagative count") | |
} |