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
Node | Latitude | Longitude | |
---|---|---|---|
722 | 22.28599466 | 114.1552444 | |
724 | 22.28514213 | 114.1563129 | |
752 | 22.27957768 | 114.1655361 | |
756 | 22.27963564 | 114.1679961 | |
760 | 22.27927381 | 114.1704165 | |
762 | 22.27953399 | 114.1745641 | |
781 | 22.27525639 | 114.1799562 | |
786 | 22.28155011 | 114.1819768 | |
787 | 22.2806696 | 114.1806507 |
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
<?xml version='1.0' encoding='UTF-8'?> | |
<kml xmlns='http://www.opengis.net/kml/2.2'> | |
<Document> | |
<name>Traffic Speed Map</name> | |
<description><![CDATA[]]></description> | |
<Folder> | |
<name>Links</name> | |
<Placemark> | |
<styleUrl>#line-0BA9CC-5</styleUrl> | |
<name>722-50059</name> |
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
#!/bin/bash | |
# Usage: Git checkout to the commit you want, then run this script to print the files in the repository and its version hash. | |
files="`git ls-files`" | |
while read -r filename; do | |
hash="`git log -1 --pretty=%h ${filename}`" | |
echo -e "$filename\t$hash" | |
done <<< "$files" |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Align Box</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style type="text/css"> | |
html { | |
height: 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
<?xml version="1.0"?> | |
<root> | |
<devicevendordef> | |
<vendorname>DELUX</vendorname> | |
<vendorid>0x093a</vendorid> | |
</devicevendordef> | |
<deviceproductdef> | |
<productname>DELUX_M618</productname> | |
<productid>0x2521</productid> |
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
#!/bin/bash | |
files=`find $1/*.png` | |
while read -r srcfile; do | |
name=`basename $srcfile` | |
targetfile="${2}/${name}" | |
result=`compare -metric RMSE $srcfile $targetfile /dev/null 2>&1;` | |
if [[ $result != 0* ]]; then | |
echo "${name} = ${result}" |
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
import java.util.regex.Pattern | |
apply plugin: 'com.android.application' | |
/** | |
* Extract Git commit hash of HEAD with number of changed files | |
*/ | |
def getGitHashVersionName = { | |
try { | |
def hashOutput = new ByteArrayOutputStream() |
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
#!/bin/bash | |
while true | |
do | |
adb shell dumpsys deviceidle step | |
sleep 1 | |
done |
OlderNewer