-
SEKTION - Suspension Rail
- Price: $19.05
- Article Number: 602.615.27
- Qty: 6
-
ENKÖPING - Door
- Price: $73.04
- Article Number: 305.059.56
$mode = Read-host "How do you like your mouse scroll (0 or 1)?"; Get-PnpDevice -Class Mouse -PresentOnly -Status OK | ForEach-Object { "$($_.Name): $($_.DeviceID)"; Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters" -Name FlipFlopWheel -Value $mode; "+--- Value of FlipFlopWheel is set to " + (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters").FlipFlopWheel + "`n" } |
'use strict'; | |
var helpers = {}; | |
/** | |
* Execute function asynchronously | |
* @param fn : function to execute async | |
* @param cb : callback to call if provided | |
*/ | |
helpers.async = function(fn, cb) { |
When you get an error code in with the domain kCFStreamErrorDomainSSL, you can generally find the error codes in SecureTransport.h which is in /System/Library/Frameworks/Security.framework. Here are the error codes: | |
enum { | |
errSSLProtocol = -9800, /* SSL protocol error */ | |
errSSLNegotiation = -9801, /* Cipher Suite negotiation failure */ | |
errSSLFatalAlert = -9802, /* Fatal alert */ | |
errSSLWouldBlock = -9803, /* I/O would block (not fatal) */ | |
errSSLSessionNotFound = -9804, /* attempt to restore an unknown session */ | |
errSSLClosedGraceful = -9805, /* connection closed gracefully */ | |
errSSLClosedAbort = -9806, /* connection closed via error */ |
#define PRETTY //Comment out when you no longer need to read JSON to disable pretty print system-wide | |
#define USEFLOAT //Use floats for numbers instead of doubles (enable if you're getting too many significant digits in string output) | |
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
/* | |
* http://www.opensource.org/licenses/lgpl-2.1.php | |
* JSONObject class |
{ | |
"\UF729" = moveToBeginningOfParagraph:; // home | |
"\UF72B" = moveToEndOfParagraph:; // end | |
"$\UF729" = moveToBeginningOfParagraphAndModifySelection:; // shift-home | |
"$\UF72B" = moveToEndOfParagraphAndModifySelection:; // shift-end | |
"^\UF729" = moveToBeginningOfDocument:; // ctrl-home | |
"^\UF72B" = moveToEndOfDocument:; // ctrl-end | |
"^$\UF729" = moveToBeginningOfDocumentAndModifySelection:; // ctrl-shift-home | |
"^$\UF72B" = moveToEndOfDocumentAndModifySelection:; // ctrl-shift-end | |
} |
##The Alpha M. Eating Plan Credits/Source: Aaron Marino, iamalpham.com. Documenting here for prosperity. At the time this was posted, this text is freely available on his web site.
The strategy is pretty straight-forward. Follow the formula by picking items and portions from the appropriate categories. Your metabolism will get rolling. If you feel you need more food, simply increase portion size.
######Beverage:
var arrayOfObjects = [{key1: 'foo1', key2: 'bar1'}, {key1: 'foo2', key2: 'bar2'}]; | |
var keyNameToCheck = "key1"; | |
var valueToFind = 'foo1'; | |
function doesArrayOfObjectsContainValueForKey(array, keyName, value){ | |
var res = array.filter(function(obj){ | |
return obj[keyName] === value; | |
}); | |
return res.length === 0 ? false : true; |
# reference stackoverflow : http://stackoverflow.com/questions/352098/how-can-i-pretty-print-json | |
node -e "console.log(JSON.stringify(JSON.parse(require('fs').readFileSync(process.argv[1])), null, 4));" [FILENAME] |