id,
hardware_id,
name,
location_id,
activation_code,
activated,
activation_time,
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
| Index of technologies/open source tools used in Uber platform (from https://eng.uber.com/tech-stack-part-one/): | |
| Terraform | |
| Postgres | |
| Mysql | |
| Riak | |
| Cassandra | |
| Hadoop | |
| Redis | |
| Twemproxy |
I hereby claim:
- I am svp on github.
- I am svp (https://keybase.io/svp) on keybase.
- I have a public key whose fingerprint is B124 EDDE AD99 7BDB F74A B22F 9546 BDBF CCD6 E3D4
To claim this, I am signing this object:
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
| <link rel="import" href="../google-map/google-map.html"> | |
| <link rel="import" href="../core-input/core-input.html"> | |
| <link rel="import" href="../paper-calculator/paper-calculator.html"> | |
| <link rel="import" href="../paper-progress/paper-progress.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { |
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 | |
| /** | |
| * Normalise a file path string so that it can be checked safely. | |
| * | |
| * Attempt to avoid invalid encoding bugs by transcoding the path. Then | |
| * remove any unnecessary path components including '.', '..' and ''. | |
| * | |
| * @param $path string | |
| * The path to normalise. | |
| * @param $encoding string |
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
| jQuery.unparam = function (value) { | |
| if(!value) | |
| return false; | |
| var params = {}, pieces = value.split('&'), pair, i, l; | |
| for (i = 0, l = pieces.length; i < l; i++) { | |
| pair = pieces[i].split('=', 2); | |
| params[decodeURIComponent(pair[0])] = (pair.length == 2 ? decodeURIComponent(pair[1].replace(/\+/g, ' ')) : true); | |
| } | |
| return params; | |
| }; |
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
| awk -vDate=`date -d '08:01' +[%d/%b/%Y:%H:%M:%S` -vDate2=`date -d'08:02' +[%d/%b/%Y:%H:%M:%S` ' { if ($4 > Date && $4 < Date2) print $1 $2 $3 $4 " " $7 " " $9}' access_log | |
| awk -vDate=`date -d '04/29/2013 22:12:00' +[%d/%b/%Y:%H:%M:%S` -vDate2=`date -d'04/29/2013 22:13:00' +[%d/%b/%Y:%H:%M:%S` ' { if ( !match($7, "media|images|js|css|.ico") && ($9==404 || $9==301) ) print $1 $2 $3 $4 " " $7 " " $9}' access_log |