- pdf.aminer.org/000/643/318/control_of_an_extensible_query_optimizer_a_planning_based_approach.pdf
- www.dtic.mil/dtic/tr/fulltext/u2/a428473.pdf
- IEEE Xplore Full-Text PDF:
- NoSQL query processing - Google Scholar
- IEEE Xplore Abstract - Scalable Join Queries in Cloud Data Stores
- IEEE Xplore Abstract - A comparison between several NoSQL databases with comments and notes
- JoCCASA | Abstract | Data management in cloud environments: NoSQL and NewSQL data stores
- [Performance tradeoffs for client-s
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/sh | |
OLD_DB=$1 | |
NEW_DB=$2 | |
TABLES=`echo "SHOW TABLES IN $1;" | mysql -NB` | |
IFS=" | |
" |
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
javascript:(function(){window.notifications={notifications_support:function(){return%20true;},notify:function(obj){if(obj.title%20!=window.notifications.prevmsg.title%20%26%26%20obj.description%20!=window.notifications.prevmsg.description){var%20not=window.webkitNotifications.createNotification('http://talkerapp.com/images/favicon.png',obj.title,obj.description);not.show();window.setTimeout(function(){not.cancel();},5000);}window.notifications.prevmsg=obj;},prevmsg:{}};})(); |
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
- (NSMutableURLRequest *)requestWithMethod:(NSString *)method path:(NSString *)path parameters:(NSDictionary *)parameters | |
{ | |
NSURL *url = [NSURL URLWithString:path relativeToURL:self.baseURL]; | |
OAConsumer *consumer = [[OAConsumer alloc] initWithKey:OAUTH_CONSUMER_KEY secret:OAUTH_CONSUMER_SECRET]; | |
OAHMAC_SHA1SignatureProvider *provider = [[OAHMAC_SHA1SignatureProvider alloc] init]; | |
OAMutableURLRequest *request = [[OAMutableURLRequest alloc] initWithURL:url consumer:consumer token:self.token realm:@"Bunch API" signatureProvider:provider]; | |
[request setHTTPMethod:method]; | |
[request setAllHTTPHeaderFields:self.defaultHeaders]; | |
if ([method isEqualToString:@"GET"] || [method isEqualToString:@"HEAD"]) { |
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Set-StartScreenOptions -EnableBootToDesktop | |
Install-WindowsUpdate | |
cinst 7zip.commandline | |
cinst adobereader | |
cinst adobeshockwaveplayer | |
cinst android-sdk | |
cinst AndroidStudio | |
cinst binroot |
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
Verifying I am +michaelmior on my passcard. https://onename.com/michaelmior |
I hereby claim:
- I am michaelmior on github.
- I am michaelmior (https://keybase.io/michaelmior) on keybase.
- I have a public key whose fingerprint is EAC5 89C4 44F4 68FE 7E11 3D2D D8D7 2C13 CF2D 8DDB
To claim this, I am signing this object:
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
/* | |
* Licensed to the Apache Software Foundation (ASF) under one or more | |
* contributor license agreements. See the NOTICE file distributed with | |
* this work for additional information regarding copyright ownership. | |
* The ASF licenses this file to you under the Apache License, Version 2.0 | |
* (the "License"); you may not use this file except in compliance with | |
* the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
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 -e | |
SPARK_VERSION="2.1.0-bin-hadoop2.7" | |
HADOOP_VERSION="2.7.3" | |
SHORT_USER=$(echo $USER | cut -d \\ -f2) | |
DATA_DIR=/var/tmp/$SHORT_USER/hdfs | |
IO_BPS=$((50 * 1024 * 1024)) | |
function add_to_env { | |
host=$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
#!/bin/bash -ex | |
SPARK_VERSION="2.1.0-bin-hadoop2.7" | |
HADOOP_VERSION="2.7.3" | |
SHORT_USER=$(echo $USER | cut -d \\ -f2) | |
function add_to_env { | |
host=$1 | |
value=$2 | |
ssh $host "echo '$value' | sudo tee -a /etc/environment > /dev/null" |
OlderNewer