I hereby claim:
- I am chrisl8 on github.
- I am christenlofland (https://keybase.io/christenlofland) on keybase.
- I have a public key ASD4jT78CB5aAqr2I_7rO89YqW6cStMlYNshZe5oSMqaOQo
To claim this, I am signing this object:
| var _instance_num := -1 | |
| var _instance_socket: TCPServer | |
| func _init() -> void: | |
| if OS.is_debug_build(): | |
| _instance_socket = TCPServer.new() | |
| for n in range(0,4): | |
| if _instance_socket.listen(5000 + n) == OK: | |
| _instance_num = n | |
| break |
I hereby claim:
To claim this, I am signing this object:
| /* ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! ATTENTION! | |
| You MUST edit the following settings based on the physical layout | |
| of your robot! | |
| For each QUESTION: | |
| UNCOMMENT '#define' lines for any included items, | |
| COMMENT '#define' lines for anything that is not included. | |
| For each SETTING: | |
| Set the variable as required, noting that usually these are ignored if the preceding QUESTION is commented out. | |
| Example, My robot has a "Thing1", but not a "Thing2" |
| // Source: https://gist.github.com/domenic/3889970 | |
| // Just sticking the parts in one spot and playing with them. | |
| function getTweetsFor() { | |
| var ajaxOptions = { | |
| url: '...', | |
| ... | |
| }; | |
| return new RSVP.Promise(function(resolve, reject) { |
| var sqlTable = require('./sqlTable'); | |
| function insertIntSqlTable(aThing) { | |
| 'use strict'; | |
| sqlTable.pool.query('INSERT INTO aTable (things) VALUES (?)', [aThing], function(err, rows, fields) { | |
| if (err) console.log('SQL Error: ' + err); | |
| }); | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Test Junk</title> | |
| <meta charset="utf-8"> | |
| <style> | |
| @media (max-width: 800px) { | |
| #hideme { | |
| display: none; | |
| } |