-
The Food Assembly CartoDB datavizs :
beer vs wine: https://nerik.cartodb.com/viz/8e8052fc-392c-11e5-ad92-0e853d047bba/public_mapproducers torque: https://nerik.cartodb.com/viz/94f0d86e-379c-11e5-ba38-0e0c41326911/public_map- the tomato summer wave/mapping the seasonality of a product
- food assemblies Voronoi
- food assemblies <-> producers : how close are they ?
- Bordeaux forever: "Pain au chocolat" vs "Chocolatines"
- a closer view at an assembly and its relations to producers and members : urban, countryside, Paris/Province, abroad...
-
Bosphorus Express
###Erik Escoffier - front-end geo-developer
- use my developer background as a starting point to explore all things geographical : cartography, geospatial analysis, datavisualization...
- design and code new creative ways to interact with maps and data.
- work on projects that have a true technical and/or social impact, in an open-source-friendly environment.
- Living in Madrid, Spain
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
grunt.registerTask('mapbox', function() { | |
var version = this.options().version; | |
console.log('mapbox v' + version); | |
var baseUrl = 'https://api.tiles.mapbox.com/mapbox.js/v'+version+'/'; | |
//async task | |
var done = this.async(); | |
//reset mapbox folder in bower_components |
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
On the Phenomenon of Bullshit Jobs | |
(original posted on http://www.strikemag.org/bullshit-jobs/, site currently down) | |
Ever had the feeling that your job might be made up? That the world would keep on turning if you weren’t doing that thing you do 9-5? David Graeber explored the phenomenon of bullshit jobs for our recent summer issue – everyone who’s employed should read carefully… | |
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 | |
# Allows full automation for ad-hoc "over the air" distribution of iOs apps | |
# 1. creates a signed ipa file from an already built .app file | |
# 2. generates a plist file | |
# 3. generates a php file allowing users to install the app with a link (this php files replaces in the plist the url part with the url of the php file) | |
# 4. (optional) makes a zip file of all the files which you can give to the client | |
# 5. uploads all the files to a webserver via FTP | |
# Erik Escoffier http://nerik.me |
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
<ios deployment="4.0" devices="ipad" /> | |
<ios deployment="4.0" binaries="armv7" /> |
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
function makeTiles() | |
{ | |
_tilesContainer = new Sprite(); | |
_tiles = new Array(); | |
var line:Array<Tile>; | |
var tile:Tile; | |
for (i in 0...Constants.GRID_H) |
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
for (i in 0...Constants.GRID_H) | |
{ | |
line = new Array(); | |
for (j in 0...Constants.GRID_W) | |
{ | |
tile = new Tile(j,i); | |
tile.x = j * Constants.CELL_W; |
NewerOlder