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
T....GET_AVRINF...l | |
R....GET_AVRINF...{"Ifver":"00.08","DType":"Float","CoefWaitTime":{"Init":0,"Final":15000},"ADC":2.11500,"SysDelay":171,"EQType":"MultEQXT32","SWLvlMatch":true,"LFC":true,"Auro":true,"Upgrade":"None","CVVer":"00.01"}| | |
T....GET_AVRSTS.... | |
R....GET_AVRSTS...{"HPPlug":false,"Mic":false,"AmpAssign":"11ch","AssignBin":"0C0401020001000002000000080000000000000000000000000000000202010202020001020304060A0800000301030000","ChSetup":[{"FL":"S"},{"C":"S"},{"FR":"S"},{"SLA":"S"},{"SRA":"S"},{"SBL":"S"},{"SBR":"S"},{"TFL":"S"},{"TFR":"S"},{"TRL":"S"},{"TRR":"S"},{"SWMIX1":"E"},{"SWMIX2":"E"},{"SWMIX3":"E"},{"SWMIX4":"E"}],"BTTXStatus":false,"SpPreset":"Both","SWSetup":{"SWNum":4,"SWMode":"Standard","SWLayout":"N/A"}}. | |
T....ENTER_AUDY...w | |
R.!..ENTER_AUDY...{"Comm":"ACK"}. | |
T....SET_SETDAT...{"AmpAssign":"11ch","AssignBin":"0C0401020001000002000000080000000000000000000000000000000202010202020001020304060A0800000301030000","SpConfig":[{"FL":"S"},{"C":"S"},{"FR":"S"},{"SLA":"S"},{"SRA":"S"},{"SBL":"S"},{"SBR |
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
Calibration data below successfully loaded and will be transferred: { | |
versionEvo: 'p3.1', | |
tcName: 'tcNeuron 72.2dB', | |
bassFill: 0, | |
ocaTypeId: 'OCAFILE', | |
ocaVersion: 1, | |
title: 'Denon_AVR-X3800H_Basement_Theater_13-04-2025_13-49-39', | |
model: 'Denon AVR-X3800H', | |
ifVersionMajor: 10, | |
ifVersionMinor: 5, |
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
var opts = { endpoint : 'http://dynamodb-local:8000', apiVersion: '2012-08-10' }; | |
var localDynamo new AWS.DynamoDB(opts); | |
vogels.dynamoDriver(localDynamo); |
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
var vogels = require('vogels'), | |
Joi = require('joi'); | |
vogels.AWS.config.loadFromPath('./config.json'); | |
var Purchase= vogels.define('Purchase', { | |
hashKey : 'uid', | |
rangeKey: 'tok', | |
// enable timestamps support | |
timestamps : true, |
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
%s/^\(.*\)$/"\1"\,/ |
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
// npm install --save string-hash | |
var stringHash = require('string-hash'); | |
var d = new Date(); | |
var dateStr = d.getFullYear() + '-' + d.getMonth() + '-' + d.getDay() | |
var hashKey = dateStr + ':' + stringHash(account.id) %100; |
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
private func unrotateImage(image : UIImage) -> UIImage { | |
let size = image.size | |
UIGraphicsBeginImageContext(size) | |
image.drawInRect(CGRectMake(0, 0, size.width, size.height)) | |
let newImage = UIGraphicsGetImageFromCurrentImageContext() | |
UIGraphicsEndImageContext() | |
return newImage | |
} |
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
var AWS = require('aws-sdk'); | |
exports.handler = function(event, context) { | |
var cloudsearchdomain = new AWS.CloudSearchDomain({endpoint: 'doc-dev-cinch-accounts-ltmqj5gt5mjb5hg5eyqaf2v5hu.us-east-1.cloudsearch.amazonaws.com'}); | |
var documents = event.Records.map(function(record) { | |
var data = {id : record.dynamodb.Keys.id.S}; | |
if (record.eventName === 'REMOVE') { | |
data.type = 'delete' |
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
// | |
// ASTableViewManager.swift | |
// cinch | |
// | |
// Created by Ryan Fitzgerald on 3/9/15. | |
// Copyright (c) 2015 cinch. All rights reserved. | |
// | |
import Foundation | |
import RFSectionDelta |
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
func tableView(tableView: UITableView!, viewForHeaderInSection section: Int, delegate : PollHeaderNodeDelegate?) -> UIView! { | |
var view = tableView.dequeueReusableHeaderFooterViewWithIdentifier("Header") as? UITableViewHeaderFooterView | |
if view == nil { | |
view = UITableViewHeaderFooterView(reuseIdentifier: "Header") | |
} | |
view?.backgroundView = UIImageView() | |
let contentView = view!.contentView |
NewerOlder