Gritos desde /dev/null http://changux.co Most recent posts at Gritos desde /dev/null posterous.com Tue, 21 Feb 2012 05:47:31 -0800 Un campusero desayuna en Alcatraz http://changux.co/un-campusero-desayuna-en-alcatraz http://changux.co/un-campusero-desayuna-en-alcatraz
Media_httpdistilleryi_syofi

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Fri, 17 Feb 2012 15:21:10 -0800 OSX Lion: Resurrect older Java.app's without Rosetta http://changux.co/osx-lion-resurrect-older-javaapps-without-ros http://changux.co/osx-lion-resurrect-older-javaapps-without-ros http://hints.macworld.com/article.php?story=20110725083719120

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Wed, 15 Feb 2012 13:57:00 -0800 gremwell magictree native app for OSX http://changux.co/gremwell-magictree-native-app-for-osx http://changux.co/gremwell-magictree-native-app-for-osx
MagicTree is a penetration tester productivity tool. It is designed to allow easy and straightforward data consolidation, querying, external command execution and (yeah!) report generation. In case you wonder, "Tree" is because all the data is stored in a tree structure, and "Magic" is because it is designed to magically do the most cumbersome and boring part of penetration testing - data management and reporting.

The application was written in Java, then running in operating systems with sun-jvm is not very complex (java -jar file.jar or double click --if you have the file association--). I prefer to have it in the application folder (to access with Quicksilver/Launchpad/blah..) and with application menus built inside of osx so i decided to turn it into a native application (.app corresponding to version 1.1 of MT)

To download, click:

Screen_shot_2012-02-15_at_4
The MD5 hash is:

MD5 (magictree1.1.zip) = 09d17885821924be89f906b9aca8f254

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Thu, 09 Feb 2012 17:50:00 -0800 mitmproxy over OSX 10.7 http://changux.co/mitmproxy-over-osx-107 http://changux.co/mitmproxy-over-osx-107

Mitmproxy is an SSL-capable man-in-the-middle HTTP proxy. It provides a console interface that allows traffic flows to be inspected and edited on the fly. In other words is like a tcpdump from http.

To install:
  1. Check your python version (you need 2.6.x or 2.7.x). If have any trouble with this, install macports and "sudo port install python26"
  2. Download urwid from here and next, uncompress and "sudo python setup.py install"
  3. Checkout the source code with git "git clone https://github.com/cortesi/mitmproxy.git"
  4. Install using the setup.py script "sudo python setup.py install". This is the output:
# python setup.py install
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'install_requires' warnings.warn(msg)
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/libmproxy
copying libmproxy/__init__.py -> build/lib/libmproxy
copying libmproxy/cmdline.py -> build/lib/libmproxy
copying libmproxy/controller.py -> build/lib/libmproxy
copying libmproxy/dump.py -> build/lib/libmproxy
copying libmproxy/encoding.py -> build/lib/libmproxy
copying libmproxy/filt.py -> build/lib/libmproxy
copying libmproxy/flow.py -> build/lib/libmproxy
copying libmproxy/proxy.py -> build/lib/libmproxy
copying libmproxy/script.py -> build/lib/libmproxy
copying libmproxy/tnetstring.py -> build/lib/libmproxy
copying libmproxy/utils.py -> build/lib/libmproxy
copying libmproxy/version.py -> build/lib/libmproxy
creating build/lib/libmproxy/console
copying libmproxy/console/__init__.py -> build/lib/libmproxy/console
copying libmproxy/console/common.py -> build/lib/libmproxy/console
copying libmproxy/console/connlist.py -> build/lib/libmproxy/console
copying libmproxy/console/connview.py -> build/lib/libmproxy/console
copying libmproxy/console/help.py -> build/lib/libmproxy/console
copying libmproxy/console/kveditor.py -> build/lib/libmproxy/console
creating build/lib/libmproxy/contrib
copying libmproxy/contrib/__init__.py -> build/lib/libmproxy/contrib
copying libmproxy/contrib/pyparsing.py -> build/lib/libmproxy/contrib
creating build/lib/libmproxy/resources
copying libmproxy/resources/ca.cnf -> build/lib/libmproxy/resources
copying libmproxy/resources/cert.cnf -> build/lib/libmproxy/resources
running build_scripts
creating build/scripts-2.7
copying and adjusting mitmproxy -> build/scripts-2.7
copying and adjusting mitmdump -> build/scripts-2.7
changing mode of build/scripts-2.7/mitmproxy from 644 to 755
changing mode of build/scripts-2.7/mitmdump from 644 to 755
running install_lib
creating /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/__init__.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/cmdline.py -> /Library/Python/2.7/site-packages/libmproxy
creating /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/__init__.py -> /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/common.py -> /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/connlist.py -> /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/connview.py -> /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/help.py -> /Library/Python/2.7/site-packages/libmproxy/console
copying build/lib/libmproxy/console/kveditor.py -> /Library/Python/2.7/site-packages/libmproxy/console
creating /Library/Python/2.7/site-packages/libmproxy/contrib
copying build/lib/libmproxy/contrib/__init__.py -> /Library/Python/2.7/site-packages/libmproxy/contrib
copying build/lib/libmproxy/contrib/pyparsing.py -> /Library/Python/2.7/site-packages/libmproxy/contrib
copying build/lib/libmproxy/controller.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/dump.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/encoding.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/filt.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/flow.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/proxy.py -> /Library/Python/2.7/site-packages/libmproxy
creating /Library/Python/2.7/site-packages/libmproxy/resources
copying build/lib/libmproxy/resources/ca.cnf -> /Library/Python/2.7/site-packages/libmproxy/resources
copying build/lib/libmproxy/resources/cert.cnf -> /Library/Python/2.7/site-packages/libmproxy/resources
copying build/lib/libmproxy/script.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/tnetstring.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/utils.py -> /Library/Python/2.7/site-packages/libmproxy
copying build/lib/libmproxy/version.py -> /Library/Python/2.7/site-packages/libmproxy
byte-compiling /Library/Python/2.7/site-packages/libmproxy/__init__.py to __init__.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/cmdline.py to cmdline.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/__init__.py to __init__.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/common.py to common.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/connlist.py to connlist.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/connview.py to connview.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/help.py to help.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/console/kveditor.py to kveditor.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/contrib/__init__.py to __init__.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/contrib/pyparsing.py to pyparsing.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/controller.py to controller.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/dump.py to dump.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/encoding.py to encoding.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/filt.py to filt.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/flow.py to flow.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/proxy.py to proxy.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/script.py to script.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/tnetstring.py to tnetstring.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/utils.py to utils.pyc
byte-compiling /Library/Python/2.7/site-packages/libmproxy/version.py to version.pyc
running install_scripts
copying build/scripts-2.7/mitmdump -> /usr/local/bin
copying build/scripts-2.7/mitmproxy -> /usr/local/bin
changing mode of /usr/local/bin/mitmdump to 755
changing mode of /usr/local/bin/mitmproxy to 755
running install_egg_info
Writing /Library/Python/2.7/site-packages/mitmproxy-0.6-py2.7.egg-info

Using:

All you need is execute the command "mitmproxy" in a terminal and configure your preferred browser to use the manual proxy at: localhost port 8080.

So nice and very useful with the uncomfortable "calls to home" from certain apps and web apps.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Sat, 04 Feb 2012 04:07:00 -0800 El primer uniforme de @tomasgarcia_a http://changux.co/el-primer-uniforme-de-tomasgarciaa http://changux.co/el-primer-uniforme-de-tomasgarciaa

Img_0875

Y ese día llegó, Tomás va al colegio. Aquí él exhibiendo lo que es su uniforme.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Wed, 01 Feb 2012 03:20:26 -0800 Cuando falla el sistema en publicidad http://changux.co/cuando-falla-el-sistema-en-publicidad http://changux.co/cuando-falla-el-sistema-en-publicidad

P32

¿Acaso una pantalla azul en una valla no es publicidad también?

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Thu, 26 Jan 2012 09:52:00 -0800 Полкан or Polkan is a Centaur http://changux.co/or-polkan-is-a-centaur http://changux.co/or-polkan-is-a-centaur
Polkan in Russian mythology - Hercules, the centaur or polupes-kinokefal. The hero of "The Tale of the Beauvais-king." (from Russian Wikipedia[1])

Polkan or Palkan (from Italian. Pulicane, «dog breed") - the character "A Tale of Beauvais prince," the centaur (a creature with the body half human, half horse), in some versions - kinokefal (pesey with his head), wield enormous power and speeds (jumps can travel long distances - the "seven miles per gallop"). The story first appears as an enemy of Bova, but after a battle with him is his loyal friend and ally. Polkan helps win Bove sent against the enemies of ratification, virtually invulnerable in battle. However Polkan knows about his imminent death from the clutches of the lion and killed while protecting his wife and children from these predators.
The Italian chivalric poem, Andrea da Barberino, "The French kings," which served (in a prose translation in Old Belarusian dialect) source of the Russian novel, Pulikane - polupes, poluchelovek, the son of a noble Christian seniors, who have come together with a dog (a common mythology and folklore motif of the marriage of humans and animals Wed Minotaur). [2]
Image Polkan firmly entrenched in Russian folklore and folk art XVII-beginning of XX century. In the epics Polkan pesiglavets referred to as, in some subjects Idolische replace rotten in others - is in the retinue of Prince Vladimir in the number of "strong warriors." In the cheap popular editions of XVIII-XIX century, it was completely identified with the centaur (as a false etymology polukon), and the most popular among the artists enjoyed the scene of his battle with Bovoy. In folk crafts such as toys Kargopol it also often depicted with the body of a horse, with a frequent image in the form of Polkan polucheloveka-polupsa with a club.
The name used Polkan composer Nikolai Rimsky-Korsakov and librettist V. Belsky: so was named governor of the opera "The Golden Cockerel" based on "Tales of the Golden Cockerel" by A. Pushkin.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Fri, 13 Jan 2012 11:29:49 -0800 Prime Rib to eat! http://changux.co/prime-rib-to-eat http://changux.co/prime-rib-to-eat
Media_httpdistilleryi_tciyz

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Thu, 29 Dec 2011 14:03:00 -0800 Pidiendo las cosas a la "2.0 way" http://changux.co/pidiendo-las-cosas-a-la-20-way http://changux.co/pidiendo-las-cosas-a-la-20-way
No me gusta usar eso de web 2.0, de hecho comparto parcialmente la visión de Tim Berners-lee[1] acerca de ella, sin embargo y en esta oportunidad, quiero compartir una "original forma" de pedir un permiso ;)

Por cierto, dije: ¡si!* 

* Aplican restricciones, es decir menos a @kataldana :)

[1] http://www.skorks.com/2008/08/why-web-20-sucks/

 

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Fri, 16 Dec 2011 12:34:06 -0800 Y con ustedes, Tomás en su grado! http://changux.co/y-con-ustedes-tomas-en-su-grado http://changux.co/y-con-ustedes-tomas-en-su-grado
Media_httpdistilleryi_dfdvc

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Sat, 03 Dec 2011 19:47:11 -0800 Chewbacca feels my force! http://changux.co/chewbacca-feels-my-force http://changux.co/chewbacca-feels-my-force
Media_httpdistilleryi_fpgtn

Taken at Gap - Market

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Mon, 28 Nov 2011 11:37:00 -0800 Traceroute from satellite Internet http://changux.co/traceroute-from-satellite-internet http://changux.co/traceroute-from-satellite-internet

Is very interesting the "path" behind a satellite internet.

To check later, some details about the connection:

http://ip-reports.org/12.130.119.0/ (see)

Other interesting question, how works the wireless connection to share the satellite wan? Some useful info:

Screen_shot_2011-11-28_at_9

Channel 36? this is a 5Gz channel.

The OUI 00:24:51:xx:xx:xx is for wireless Cisco Equipment.

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Fri, 11 Nov 2011 08:50:00 -0800 El flash del fin del mundo http://changux.co/el-flash-del-fin-del-mundo-el-111111-a-las-11 http://changux.co/el-flash-del-fin-del-mundo-el-111111-a-las-11

El 11.11.11 a las 11, flash se actualiza en mi móvil a la versión 11.1, esto es como un fantasma que se despide.

Media_httpdistilleryi_uitze

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Tue, 25 Oct 2011 18:04:00 -0700 IPv6 y el Internet de las cosas http://changux.co/ipv6-y-el-internet-de-las-cosas http://changux.co/ipv6-y-el-internet-de-las-cosas

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Sun, 16 Oct 2011 15:16:47 -0700 El corán tallado en las paredes #granada #alhambra http://changux.co/el-coran-tallado-en-las-paredes-granada-alham http://changux.co/el-coran-tallado-en-las-paredes-granada-alham
Media_httpimagesinsta_gfusb

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Sun, 16 Oct 2011 15:09:48 -0700 El angel sin nariz! #alhambra #granada http://changux.co/el-angel-sin-nariz-alhambra-granada http://changux.co/el-angel-sin-nariz-alhambra-granada
Media_httpimagesinsta_bughh

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Thu, 13 Oct 2011 03:59:32 -0700 Superman extraña a su papá (muy tierno) http://changux.co/superman-extrana-a-su-papa-muy-tierno http://changux.co/superman-extrana-a-su-papa-muy-tierno
Media_httpimagesinsta_rvsjc

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Thu, 13 Oct 2011 03:00:48 -0700 Principe de Asturias en #cpmilenio http://changux.co/principe-de-asturias-en-cpmilenio http://changux.co/principe-de-asturias-en-cpmilenio
Media_httpimagesinsta_niwdh

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Wed, 12 Oct 2011 06:46:00 -0700 First 259,200,000 decimal digits of Euler-Mascheroni Constant http://changux.co/first-259200000-decimal-digits-of-euler-masch http://changux.co/first-259200000-decimal-digits-of-euler-masch

The last year, I calculated the euler-macheroni's constant to solve a problem in our office.

This is the validation process info:

Screen_shot_2011-10-12_at_3

 

We have the first 259,200,000 decimals, on the following link you can download the different parts that divided the numbers:

The order to download files is attached, each file (1MB) has 1048576 decimals (248 files). After download, you can concatenate the file with cat command.

Bye!

1048576 euleraa.zip
1048576 eulerab.zip
1048576 eulerac.zip
1048576 eulerad.zip
1048576 eulerae.zip
1048576 euleraf.zip
1048576 eulerag.zip
1048576 eulerah.zip
1048576 eulerai.zip
1048576 euleraj.zip
1048576 eulerak.zip
1048576 euleral.zip
1048576 euleram.zip
1048576 euleran.zip
1048576 eulerao.zip
1048576 eulerap.zip
1048576 euleraq.zip
1048576 eulerar.zip
1048576 euleras.zip
1048576 eulerat.zip
1048576 eulerau.zip
1048576 eulerav.zip
1048576 euleraw.zip
1048576 eulerax.zip
1048576 euleray.zip
1048576 euleraz.zip
1048576 eulerba.zip
1048576 eulerbb.zip
1048576 eulerbc.zip
1048576 eulerbd.zip
1048576 eulerbe.zip
1048576 eulerbf.zip
1048576 eulerbg.zip
1048576 eulerbh.zip
1048576 eulerbi.zip
1048576 eulerbj.zip
1048576 eulerbk.zip
1048576 eulerbl.zip
1048576 eulerbm.zip
1048576 eulerbn.zip
1048576 eulerbo.zip
1048576 eulerbp.zip
1048576 eulerbq.zip
1048576 eulerbr.zip
1048576 eulerbs.zip
1048576 eulerbt.zip
1048576 eulerbu.zip
1048576 eulerbv.zip
1048576 eulerbw.zip
1048576 eulerbx.zip
1048576 eulerby.zip
1048576 eulerbz.zip
1048576 eulerca.zip
1048576 eulercb.zip
1048576 eulercc.zip
1048576 eulercd.zip
1048576 eulerce.zip
1048576 eulercf.zip
1048576 eulercg.zip
1048576 eulerch.zip
1048576 eulerci.zip
1048576 eulercj.zip
1048576 eulerck.zip
1048576 eulercl.zip
1048576 eulercm.zip
1048576 eulercn.zip
1048576 eulerco.zip
1048576 eulercp.zip
1048576 eulercq.zip
1048576 eulercr.zip
1048576 eulercs.zip
1048576 eulerct.zip
1048576 eulercu.zip
1048576 eulercv.zip
1048576 eulercw.zip
1048576 eulercx.zip
1048576 eulercy.zip
1048576 eulercz.zip
1048576 eulerda.zip
1048576 eulerdb.zip
1048576 eulerdc.zip
1048576 eulerdd.zip
1048576 eulerde.zip
1048576 eulerdf.zip
1048576 eulerdg.zip
1048576 eulerdh.zip
1048576 eulerdi.zip
1048576 eulerdj.zip
1048576 eulerdk.zip
1048576 eulerdl.zip
1048576 eulerdm.zip
1048576 eulerdn.zip
1048576 eulerdo.zip
1048576 eulerdp.zip
1048576 eulerdq.zip
1048576 eulerdr.zip
1048576 eulerds.zip
1048576 eulerdt.zip
1048576 eulerdu.zip
1048576 eulerdv.zip
1048576 eulerdw.zip
1048576 eulerdx.zip
1048576 eulerdy.zip
1048576 eulerdz.zip
1048576 eulerea.zip
1048576 eulereb.zip
1048576 eulerec.zip
1048576 eulered.zip
1048576 euleree.zip
1048576 euleref.zip
1048576 eulereg.zip
1048576 eulereh.zip
1048576 eulerei.zip
1048576 eulerej.zip
1048576 eulerek.zip
1048576 eulerel.zip
1048576 eulerem.zip
1048576 euleren.zip
1048576 eulereo.zip
1048576 eulerep.zip
1048576 eulereq.zip
1048576 eulerer.zip
1048576 euleres.zip
1048576 euleret.zip
1048576 eulereu.zip
1048576 eulerev.zip
1048576 eulerew.zip
1048576 eulerex.zip
1048576 eulerey.zip
1048576 eulerez.zip
1048576 eulerfa.zip
1048576 eulerfb.zip
1048576 eulerfc.zip
1048576 eulerfd.zip
1048576 eulerfe.zip
1048576 eulerff.zip
1048576 eulerfg.zip
1048576 eulerfh.zip
1048576 eulerfi.zip
1048576 eulerfj.zip
1048576 eulerfk.zip
1048576 eulerfl.zip
1048576 eulerfm.zip
1048576 eulerfn.zip
1048576 eulerfo.zip
1048576 eulerfp.zip
1048576 eulerfq.zip
1048576 eulerfr.zip
1048576 eulerfs.zip
1048576 eulerft.zip
1048576 eulerfu.zip
1048576 eulerfv.zip
1048576 eulerfw.zip
1048576 eulerfx.zip
1048576 eulerfy.zip
1048576 eulerfz.zip
1048576 eulerga.zip
1048576 eulergb.zip
1048576 eulergc.zip
1048576 eulergd.zip
1048576 eulerge.zip
1048576 eulergf.zip
1048576 eulergg.zip
1048576 eulergh.zip
1048576 eulergi.zip
1048576 eulergj.zip
1048576 eulergk.zip
1048576 eulergl.zip
1048576 eulergm.zip
1048576 eulergn.zip
1048576 eulergo.zip
1048576 eulergp.zip
1048576 eulergq.zip
1048576 eulergr.zip
1048576 eulergs.zip
1048576 eulergt.zip
1048576 eulergu.zip
1048576 eulergv.zip
1048576 eulergw.zip
1048576 eulergx.zip
1048576 eulergy.zip
1048576 eulergz.zip
1048576 eulerha.zip
1048576 eulerhb.zip
1048576 eulerhc.zip
1048576 eulerhd.zip
1048576 eulerhe.zip
1048576 eulerhf.zip
1048576 eulerhg.zip
1048576 eulerhh.zip
1048576 eulerhi.zip
1048576 eulerhj.zip
1048576 eulerhk.zip
1048576 eulerhl.zip
1048576 eulerhm.zip
1048576 eulerhn.zip
1048576 eulerho.zip
1048576 eulerhp.zip
1048576 eulerhq.zip
1048576 eulerhr.zip
1048576 eulerhs.zip
1048576 eulerht.zip
1048576 eulerhu.zip
1048576 eulerhv.zip
1048576 eulerhw.zip
1048576 eulerhx.zip
1048576 eulerhy.zip
1048576 eulerhz.zip
1048576 euleria.zip
1048576 eulerib.zip
1048576 euleric.zip
1048576 eulerid.zip
1048576 eulerie.zip
1048576 eulerif.zip
1048576 eulerig.zip
1048576 eulerih.zip
1048576 eulerii.zip
1048576 eulerij.zip
1048576 eulerik.zip
1048576 euleril.zip
1048576 eulerim.zip
1048576 eulerin.zip
1048576 eulerio.zip
1048576 eulerip.zip
1048576 euleriq.zip
1048576 eulerir.zip
1048576 euleris.zip
1048576 eulerit.zip
1048576 euleriu.zip
1048576 euleriv.zip
1048576 euleriw.zip
1048576 eulerix.zip
1048576 euleriy.zip
1048576 euleriz.zip
1048576 eulerja.zip
1048576 eulerjb.zip
1048576 eulerjc.zip
1048576 eulerjd.zip
1048576 eulerje.zip
1048576 eulerjf.zip
1048576 eulerjg.zip
1048576 eulerjh.zip
1048576 eulerji.zip
1048576 eulerjj.zip
1048576 eulerjk.zip
1048576 eulerjl.zip
1048576 eulerjm.zip
201730 eulerjn.zip

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux
Fri, 07 Oct 2011 10:54:52 -0700 @raficap no quiere compartir su jamón http://changux.co/raficap-no-quiere-compartir-su-jamon http://changux.co/raficap-no-quiere-compartir-su-jamon
Media_httpimagesinsta_bdguc

Taken at FERMASA (Feria de Muestras de Armilla)

Permalink | Leave a comment  »

]]>
http://files.posterous.com/user_profile_pics/1146371/Photo_on_2011-04-08_at_23.50__3.jpg http://posterous.com/users/37loQ2K63dER ChanGux ChanGux