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 ( | |
| "net/http" | |
| "io/ioutil" | |
| "encoding/json" | |
| "fmt" | |
| ) |
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
| # github.com/tarm/goserial | |
| gcc did not produce error at completed:1 | |
| on input: | |
| #line 5 "/Users/jojofabe/workspace/go/github.com/macmania/gosphero-tour/src/github.com/tarm/goserial/serial_posix.go" | |
| #include <termios.h> | |
| #include <unistd.h> | |
| #include <sys/types.h> /* for size_t below */ |
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
| // +build !windows,cgo | |
| package serial | |
| // #include <termios.h> | |
| // #include <unistd.h> | |
| import "C" | |
| // TODO: Maybe change to using syscall package + ioctl instead of cgo |
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
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| }); |
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 simplenlg; | |
| import static spark.Spark.*; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import java.util.Properties; | |
| import java.util.List; | |
| import simplenlg.framework.*; |