- Base reference: https://www.reddit.com/r/TheSilphRoad/comments/7pq1cx/how_i_created_a_map_of_potential_exraids_and_how/
- Export geojson from Overpass Turbo
- 2018.04 nest/ex areas query: https://overpass-turbo.eu/s/ytm
- You have to run a query before you can export
- I think it can be an empty resultset too, try it
- You can and should define the boundary manually
- Add S2 cells with OSMCoverer
./osmcoverer -excludecellfeatures -skipmarkerless -grid=14 input.geojson- This will create an output directory
- Convert with Geojson.io
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
| #!/usr/bin/env bash | |
| #-- CONFIGURATION | |
| transparent_alpha=0 | |
| maximized_alpha=100 | |
| interval=0.5 | |
| #-- | |
| alpha_prop_list=() | |
| for prop in $(xfconf-query -c xfce4-panel -p /panels -l); do |
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
| Verifying my Blockstack ID is secured with the address 1PmXo962nyg3XiFDL6DMkdUwiGdbKHZqxs https://explorer.blockstack.org/address/1PmXo962nyg3XiFDL6DMkdUwiGdbKHZqxs |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #define NL printf("\n") | |
| int LOG = 0; | |
| /* math */ |
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
| This Gist will collect all code or random notes from out web-dev crash-course. |
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
| # /usr/lib/node_modules | |
| # npm list -g --depth=0 | |
| /usr/lib | |
| +-- babel-eslint@8.2.6 | |
| +-- eslint@5.3.0 | |
| +-- eslint-config-standard@11.0.0 | |
| +-- eslint-plugin-html@4.0.5 | |
| +-- eslint-plugin-import@2.13.0 | |
| +-- eslint-plugin-node@7.0.1 |
So we have all these types like Int, Float, String, Map String Int, [Maybe String], etc. What do all these types have in common? Well, essentially, they're "normal" types where we can make a value for them. Just as values have types, types have "kinds". In this case, just as 4 : Int, Int : *, and just as "Hello" : String, String : *. That is to say, all these normal types (the types of plain old values) have kind *.
Now, in OCaml, you have type parametricity, but only over types of kind *. Let's give an example of a type that's not of kind *.
Map : * -> * -> *
We apply this "type constructor" (which is a kind of "type function", just like constructors are a kind of function) to the type Int : *.
Map Int : * -> *
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
| # ~/.XCompose | |
| ### Based on the en_US.UTF locale. ### | |
| include "/usr/share/X11/locale/en_US.UTF-8/Compose" | |
| ### Populated with Kragen's additions. ### |
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
| // ==UserScript== | |
| // @id iitc-plugin-CSV@pad | |
| // @name IITC plugin: Ingress KML Exporter | |
| // @category Keys | |
| // @version 1.0.20160105.02 | |
| // @namespace https://github.com/jonatkins/ingress-intel-total-conversion | |
| // @updateURL https://gist.github.com/Dron007/33205981b11ab4cadb31/raw/f425c125f236256998f143f385249006c0442223/iitc-plugin-ingressKML-exporter.user.js | |
| // @downloadURL https://gist.github.com/Dron007/33205981b11ab4cadb31/raw/f425c125f236256998f143f385249006c0442223/iitc-plugin-ingressKML-exporter.user.js | |
| // @description Exports portals currently in view for use with Google Map ( KML Format ). | |
| // @include https://www.ingress.com/intel* |