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
| // The Nordic UART Service | |
| static const uint8_t uart_base_uuid[] = {0x71, 0x3D, 0, 0, 0x50, 0x3E, 0x4C, 0x75, 0xBA, 0x94, 0x31, 0x48, 0xF1, 0x8D, 0x94, 0x1E}; | |
| static const uint8_t uart_tx_uuid[] = {0x71, 0x3D, 0, 3, 0x50, 0x3E, 0x4C, 0x75, 0xBA, 0x94, 0x31, 0x48, 0xF1, 0x8D, 0x94, 0x1E}; | |
| static const uint8_t uart_rx_uuid[] = {0x71, 0x3D, 0, 2, 0x50, 0x3E, 0x4C, 0x75, 0xBA, 0x94, 0x31, 0x48, 0xF1, 0x8D, 0x94, 0x1E}; | |
| static const uint8_t uart_base_uuid_rev[] = {0x1E, 0x94, 0x8D, 0xF1, 0x48, 0x31, 0x94, 0xBA, 0x75, 0x4C, 0x3E, 0x50, 0, 0, 0x3D, 0x71}; | |
| uint8_t txPayload[TXRX_BUF_LEN] = {0,}; | |
| uint8_t rxPayload[TXRX_BUF_LEN] = {0,}; | |
| GattCharacteristic txCharacteristic (uart_tx_uuid, txPayload, 1, TXRX_BUF_LEN, |
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
| // ATLMIMETypeImageJPEGPreview, ATLMIMETypeTextPlain defined in Altas to present the MIME tpye for the medias | |
| self.layerClient = [LYRClient clientWithAppID:YOUR_APP_ID]; | |
| self.layerClient.autodownloadMIMETypes = [NSSet setWithObjects:ATLMIMETypeImageJPEGPreview, ATLMIMETypeTextPlain, nil]; | |
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
| #pragma mark -MFMEssageComposeViewControllerDelegate | |
| - (void)messageComposeViewController:(MFMessageComposeViewController *)controller | |
| didFinishWithResult:(MessageComposeResult)result { | |
| switch(result) { | |
| case MessageComposeResultCancelled: | |
| // user canceled sms | |
| [self dismissViewControllerAnimated:YES completion:nil]; | |
| break; |
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
| // This #include statement was automatically added by the Particle IDE. | |
| #include "TM1637Display/TM1637Display.h" | |
| TM1637Display display(4, 5); // connect CLK to D4, DIO to D5 | |
| int followers = 0; // or start with number that in your profile | |
| void setup() | |
| { | |
| Serial.begin(9600); | |
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
| <?php | |
| class Custom_Module_Model_Observer { | |
| public function customRedirect() { | |
| $url = Mage::helper('core/url')->getCurrentUrl(); | |
| $url = Mage::getSingleton('core/url')->parseUrl($url); | |
| $path = $url->getPath(); | |
| $action = Mage::app()->getRequest()->getActionName(); | |
| $pattern = '/[.*]?\/custommodule\/index\/[.*]?|[.*]?\/admin[$.*]?/'; |
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
| #!/bin/bash | |
| # install node.js - v4 and v6 have problem running strong-pm? | |
| curl -sL https://rpm.nodesource.com/setup_5.x | bash - | |
| apt-get install -y nodejs git | |
| # install strong-pm | |
| npm install -g strong-pm | |
| # or sudo sl-pm-install --http-auth user:password | |
| sudo sl-pm-install |
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 boto3 | |
| dynamodb = boto3.resource('dynamodb') | |
| table = dynamodb.Table('table') | |
| response = table.scan( | |
| ProjectionExpression='#k,#s', | |
| ExpressionAttributeNames={ | |
| '#k' : 'id', #partition key |
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
| #!/bin/sh | |
| echo "Start loopback scaffolding for $1" | |
| echo "Enter name for application:" | |
| read app | |
| echo "Creating $app" |
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
| # To Update | |
| curl -sI https://nixos.org/channels/nixpkgs-unstable/nixexprs.tar.xz | awk '/Location:/ {print $2}' | |
| # compute the hash | |
| nix-prefetch-url --type 256 unpack <URL> |
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
| // const Web3 = require('web3') | |
| // const Tx = require('ethereumjs-tx'); | |
| // const web3 = new Web3(new Web3.providers.HttpProvider('http://localhost:8545')) | |
| // .... | |
| const data = contractInstance.methods.myMethods(param...).encodeABI() | |
| const tx = new Tx(null) | |
| tx.nonce = await web3.eth.getTransactionCount(hd_wallet_address) | |
| tx.from = hd_wallet_address | |
| tx.gasPrice = GAS_PRICE |