brew install mongodb
Set up launchctl to auto start mongod
$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
/usr/local/opt/mongodb/
is a symlink to /usr/local/Cellar/mongodb/x.y.z
(e.g., 2.4.9
)
CACHE GIT CREDENTIALS ON UNIX | |
git config --global credential.helper cache | |
git config --global credential.helper "cache --timeout=360000" | |
ON OSX | |
git config --global credential.helper osxkeychain | |
git config --global credential.helper "cache --timeout=360000" |
http://jsbin.com/saqico/1/edit?html,js,output |
Number,Gender,NameSet,Title,GivenName,MiddleInitial,Surname,StreetAddress,City,State,StateFull,ZipCode,Country,CountryFull,EmailAddress,Username,Password,BrowserUserAgent,TelephoneNumber,TelephoneCountryCode,MothersMaiden,Birthday,Age,TropicalZodiac,CCType,CCNumber,CVV2,CCExpires,NationalID,UPS,WesternUnionMTCN,MoneyGramMTCN,Color,Occupation,Company,Vehicle,Domain,BloodType,Pounds,Kilograms,FeetInches,Centimeters,GUID,Latitude,Longitude | |
1,female,American,Mrs.,Lois,R,Guzman,"1974 Locust Street",Americus,GA,Georgia,31709,US,"United States",[email protected],Ateres,eoghusheH7,"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50",229-942-9758,1,Albright,7/13/1952,64,Cancer,MasterCard,5528180050696196,439,7/2017,253-60-6592,"1Z 169 213 49 8118 722 4",2547418964,94834535,Orange,Astronomer,"Jacob Reed and Sons","2006 Mercury Monterey",gobrookvillepa.com,O+,178.0,80.9,"5' 2""",157,6908b21b-4860-4b1c-bc09-2c6f2fc69118,32.040706,-84.217819 | |
2,female |
Step 1: Move the non duplicates (unique tuples) into a temporary table
CREATE TABLE new_table as SELECT * FROM old_table WHERE 1 GROUP BY [column to remove duplicates by];
Step 2: delete delete the old table
We no longer need the table with all the duplicate entries, so drop it!
DROP TABLE old_table;
const int stepPin = 3; | |
const int dirPin = 4; | |
const int msPins[] = {8, 9, 10}; | |
const bool msVals[5][3] = {{false, false, false}, | |
{true, false, false}, | |
{false, true, false}, | |
{true, true, false}, | |
{true, true, true}}; |
Set up port forwarding | |
You can use the forward command to set up arbitrary port forwarding, which forwards requests on a specific host port to a different port on a device. The following example sets up forwarding of host port 6100 to device port 7100: | |
adb forward tcp:6100 tcp:7100 | |
The following example sets up forwarding of host port 6100 to local:logd: | |
adb forward tcp:6100 local:logd |
var AWS = require('aws-sdk'); | |
AWS.config.update({region: 'us-east-1'}); | |
var lexruntime = new AWS.LexRuntime(); | |
var params = { | |
botAlias: '$LATEST', /* required, has to be '$LATEST' */ | |
botName: 'BOT', /* required, the name of you bot */ | |
inputText: 'TEXT', /* required, your text */ | |
userId: 'USER', /* required, arbitrary identifier */ |
greyscale | |
range: max - min | |
280-12f | |
123 - 89 | |
36,000 | |
1.0000 - 0.0000 | |
80 | |
60 - [80] - 120 | |
reference temp device set ambient thermal baseline |
remote update software | |
781234123412.zip < sever http://update.xyz.ai/clientUpdateUrl -> | |
folder/23214114133.old1.zip < local | |
================ | |
client checks url to see if file is different nbame than local file | |
if new name and new stamp download | |
explode and replace current files, |