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
| # http://stackoverflow.com/questions/21320585/cannot-set-up-a-scrapy-project | |
| export DYLD_LIBRARY_PATH=$HOME/anaconda/lib |
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
| # With help from http://wiki.openstreetmap.org/wiki/Overpass_API/Language_Guide#Query_by_element_id | |
| sudo pip install overpass | |
| overpass --timeout 500 'way(272386359)' test.geojson |
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
| #via https://github.com/mysqludf/lib_mysqludf_json | |
| #and https://github.com/mysqludf/lib_mysqludf_json/issues/2 | |
| git clone [email protected]:mysqludf/lib_mysqludf_json.git | |
| cd lib_mysqludf_json | |
| gcc -v $(/usr/local/bin/mysql_config --cflags) -shared -fPIC -o lib_mysqludf_json.so lib_mysqludf_json.c | |
| sudo ln -s lib_mysqludf_json.so /Applications/XAMPP/xamppfiles/lib/mysql/plugin/. |
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
| npm install -g geojson-pick; npm install -g geojson-random; npm install -g geojson-extent; npm install -g geojson-summary; npm install -g geojson-flatten; npm install -g geojson-rewind; npm install -g geojsonhint; npm install -g geojsonio-cli; npm install -g togeojson; npm install -g csv2geojson; npm install -g tokml; npm install -g geojson2dsv; npm install -g wellknown; npm install -g topojson; pip install geojson |
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
| # Doogal downloads: | |
| DOOGAL_SITE=http://www.doogal.co.uk/files/ | |
| DOOGAL_DATADIR=data_raw/doogal | |
| all: $(DOOGAL_DATADIR)/postcodes_cut.csv | |
| # PURPOSE: Create directory structure | |
| setup: | |
| mkdir -p data_raw data_intermediate data_deploy log |
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
| RUBY_CONFIGURE_OPTS=--with-openssl-dir=/usr/local/Cellar/openssl/1.0.1e rbenv install 2.0.0-p451 |
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
| Thank you for your application. Having conducted electronic searches, we have been unable to confirm your identity and/or obtain verification of your residence at the specified address. | |
| In order to proceed with your application, we would be grateful if you would provide us with one item from Group A and one item from Group B - from the list below. This will enable us to verify your identity and your current address as shown on your application. | |
| Please note that we are unable to accept the same document for address verification and identity. If you are sending original documents, we would recommend that they are sent by recorded delivery. If certified copies are to be sent, they must be certified by someone who is not related to you. | |
| We will of course return any original documents by recorded delivery. | |
| Do not send us original Group A documents. Copies MUST be certified by an independent person (not a family member), who must also provide their full name, address and daytime telephone contact number. Please |
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
| SCRIPT_STR('classify_polarity(.arg1,algorithm="bayes",verbose=TRUE)[,4]', | |
| ATTR([CommentText]) | |
| ) | |
| SCRIPT_STR('classify_emotion(.arg1,algorithm="bayes",verbose=TRUE)[,7]', | |
| ATTR([CommentText]) | |
| ) |
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
| SCRIPT_REAL(" | |
| xdata <- .arg1 | |
| ydata <- .arg2 | |
| indices <- which( abs(ydata) < 0.01 ) | |
| ndata <- length( ydata ) | |
| weights <- rep(1, ndata) | |
| weights[indices] = 0 | |
| model <- lm( ydata ~ xdata + I(xdata^2), weights=weights ) |