- Casos nuevos por día.
- Datos tomados a mano de los informes diarios en PDF. Puede haber errores de tipeo etc.
- Los
-unknownindican que el PDF no distingue de qué provincia son, o dice "10 casos de estas 4 provincias" pero no cuántos de cada una.
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 python | |
| from sys import argv, stdout | |
| from os import system, remove, path | |
| from urlparse import urlparse | |
| import re | |
| import dfu | |
| import ssl | |
| import math | |
| import json | |
| import getopt |
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
| class { | |
| a(struct b | |
| struct b ; |
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
| - move.l #168430090,squares | |
| - move.l #168430090,squares+4 | |
| - move.l #168430090,squares+8 | |
| - move.l #168430090,squares+12 | |
| - move.l #168430090,squares+16 | |
| - move.l #168430090,squares+20 | |
| - move.l #168430090,squares+24 | |
| - move.l #168430090,squares+28 | |
| - move.l #168430090,squares+32 | |
| - move.l #168430090,squares+36 |
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 "AppDelegate.h" | |
| #import <CoreGraphics/CoreGraphics.h> | |
| #import "objc-insanity.h" | |
| void initializeAppDelegate() | |
| { | |
| Class c = objc_allocateClassPair(objc_getClass("NSObject"), "AppDelegate", 0); |
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
| Fotos del recorrido de wardriving en ekoparty: | |
| https://www.mapillary.com/map/s/oD-OI0qWR_i4LkclzudDUw | |
| Coordenadas en GeoJSON: | |
| https://a.mapillary.com/v3/sequences/oD-OI0qWR_i4LkclzudDUw?client_id=MkJKbDA0bnZuZlcxeTJHTmFqN3g1dzo1YTM0NjRkM2EyZGU5MzBh | |
| Para descargarlo en GPX: | |
| curl -H "Accept: application/gpx+xml" https://a.mapillary.com/v3/sequences/oD-OI0qWR_i4LkclzudDUw?client_id=MkJKbDA0bnZuZlcxeTJHTmFqN3g1dzo1YTM0NjRkM2EyZGU5MzBh | |
| Ideal para correlacionar el GPX con las redes Wi-Fi que encontraron :) |
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
| {% if use_ssl|default(False) %} | |
| <VirtualHost *:80> | |
| {{ self.common() }} | |
| {{ self.redirect() }} | |
| </VirtualHost> | |
| <VirtualHost *:443> | |
| {{ self.common() }} |
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 doesn't work: | |
| ClangParseJob::run: For URL "/home/nicolas/src/kdevelop/kdevplatform/documentation/standarddocumentationview.cpp" | |
| ClangParseJob::run: define: "_GNU_SOURCE" = "1" | |
| ClangParseJob::run: define: "_LP64" = "1" | |
| ClangParseJob::run: define: "_STDC_PREDEF_H" = "1" | |
| ClangParseJob::run: define: "__ATOMIC_ACQUIRE" = "2" | |
| ClangParseJob::run: define: "__ATOMIC_ACQ_REL" = "4" | |
| ClangParseJob::run: define: "__ATOMIC_CONSUME" = "1" | |
| ClangParseJob::run: define: "__ATOMIC_HLE_ACQUIRE" = "65536" | |
| ClangParseJob::run: define: "__ATOMIC_HLE_RELEASE" = "131072" |
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
| --- | |
| - hosts: default | |
| remote_user: root | |
| vars: | |
| users: | |
| - foo | |
| - bar | |
| - baz | |
| - quux | |
| keys: {} |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| aws_lambda.bootstrap.py | |
| Amazon Lambda | |
| Copyright (c) 2013 Amazon. All rights reserved. | |
| Lambda runtime implemention | |
| """ | |
| from __future__ import print_function |