One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Here are several different ways to test a TCP port without telnet.
$ cat < /dev/tcp/127.0.0.1/22
SSH-2.0-OpenSSH_5.3
^C
$ cat < /dev/tcp/127.0.0.1/23
| # My first layered neural network thingy, | |
| # Whooooo. | |
| # No Theano just yet. Maybe Numpy. | |
| # Numpy will require me to express everything | |
| # with as little iteration as possible. That's | |
| # what bugs me about that library >_<. You can | |
| # only hope everything broadcasts correctly! | |
| import numpy | |
| import theano |
| # How nessecary is this? | |
| class Gene: | |
| def __init__(self, inNeuron, outNeuron, weight = 1): | |
| # inNeuron and outNeuron represent array indices | |
| self.inNeuron = inNeuron | |
| self.outNeuron = outNeuron | |
| self.weight = weight | |
| def compareOuts(self, otherGene): | |
| if self.outNeuron < otherGene.outNeuron: return -1 | |
| elif self.outNeuron > otherGene.outNeuron: return 1 |
| // Rob Trew @complexpoint 2015 | |
| function run() { | |
| "use strict"; | |
| var blnUseKeyboardMaestro = false; | |
| // EDIT TO NAMES OF TWO ALTERNATIVE SOUND OUTPUT DEVICES | |
| var dctSources = { // A unique substring for each is enough | |
| primary: "Internal", | |
| secondary: "Elgato" |
| // This works on all devices/browsers, and uses IndexedDBShim as a final fallback | |
| var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB; | |
| // Open (or create) the database | |
| var open = indexedDB.open("MyDatabase", 1); | |
| // Create the schema | |
| open.onupgradeneeded = function() { | |
| var db = open.result; | |
| var store = db.createObjectStore("MyObjectStore", {keyPath: "id"}); |
| /* | |
| Delta Compression by Glenn Fiedler. | |
| This source code is placed in the public domain. | |
| http://gafferongames.com/2015/03/14/the-networked-physics-data-compression-challenge/ | |
| */ | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <assert.h> | |
| #include <string.h> |
| diff --git a/file.c b/file.c | |
| index 6faa5a3..e3af329 100644 | |
| --- a/file.c | |
| +++ b/file.c | |
| @@ -1,26 +1,25 @@ | |
| #include <stdio.h> | |
| -// Frobs foo heartily | |
| -int frobnitz(int foo) | |
| +int fib(int n) |
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
| curl -XDELETE http://localhost:9200/test/articles | |
| curl -XPUT http://localhost:9200/test/_mapping/articles -d '{ | |
| "properties": { | |
| "content": { | |
| "type": "string", | |
| "position_offset_gap": 100 | |
| } | |
| } | |
| }' |