This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Type Conversion JavaScript Test Question"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
This file contains 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
33015:DEBUG: Asking for id | |
33015:DEBUG: Starting to send data | |
33065:DEBUG: Completed Sending | |
33067:DEBUG: In SPI Receive | |
33067:DEBUG: Handshake complete | |
33069:DEBUG: Receiving SPI data of size 16 | |
33069:DEBUG: Reading chunk of size 16 | |
33072:DEBUG: Processing message of size 13 with clientID 3 and service ID 2 | |
33072:DEBUG: Info data service with command 177 | |
33072:DEBUG: You're gateway ID is b1e231533df17baa9acd15c2 |
This file contains 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
// Gateway done not boot and connect | |
// Had an issue with firmware and did a factory reset but now it does nto connect anymore | |
// here is what is happening: | |
// https://vine.co/v/5qwMLqKuw79 | |
Last login: Sat Aug 6 20:23:27 on console | |
Welcome to fish, the friendly interactive shell | |
Type help for instructions on how to use fish | |
markpaul@Marks-MacBook-Pro ~> particle serial monitor | |
Opening serial monitor for com port: "/dev/cu.usbmodem1411" |
This file contains 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
markpaul@Marks-MacBook-Pro ~> particle serial monitor | |
Opening serial monitor for com port: "/dev/cu.usbmodem1411" | |
3295:DEBUG: STARTING! | |
42612:DEBUG: In SPI Receive | |
42615:DEBUG: Handshake complete | |
42621:DEBUG: Receiving SPI data of size 6 | |
42625:DEBUG: Reading chunk of size 6 | |
42632:DEBUG: Processing message of size 3 with clientID 0 and service ID 1 | |
42639:DEBUG: Disconnecting Client0 | |
42643:DEBUG: Read length = 1 |
This file contains 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
// The core was plugged into the gateway. I then powered up (USB to Core) directly and took this below log. | |
// I waited for 2 mins but LED didnt change pattern and cant claim it in the console.bluz.com (It says "No Gateway Detected Yet") | |
// https://vine.co/v/5ZumqWx1Drx (video of the LED blinking and not changing) | |
3146:DEBUG: STARTING! | |
42780:DEBUG: In SPI Receive | |
42783:DEBUG: Handshake complete | |
42788:DEBUG: Receiving SPI data of size 6 | |
42793:DEBUG: Reading chunk of size 6 |
This file contains 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
#!/bin/bash | |
# Generate a tar.gz build using name and version from package.json | |
# In your app root you need a builds/ directory, this is where your tar.gz file will be placed. Or change this location in line 25 | |
# The script will ignore your node_modules and builds folders | |
# get app name from package.json | |
name=`grep "name" package.json | sed 's/,//g'` | |
name=`sed 's/"name"://g' <<< $name` | |
name=`sed 's#"# #g' <<< $name` |
This file contains 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
// E.g of a listItem Class | |
function listItem(text, onSelectFunc) { | |
this.text = text; | |
this.onSelect = function() { | |
console.log('I am selected'); | |
} | |
} | |
// E.g Collection of listItems | |
var listItems = []; |
This file contains 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
{ | |
"_id":"quotes_1319238143", | |
"_rev":"5-0eda6079e7e6e8f23dd2e0a00b5f2c75", | |
"items": | |
[ | |
{ | |
"date":1357879144069, | |
"text":"don't cry because it's over, smile because it happened.", | |
"author":"dr. seuss", | |
"style":3, |