Gritos desde /dev/null http://changux.co Most recent posts at Gritos desde /dev/null posterous.com Sat, 12 May 2012 20:23:00 -0700 something about "55000 hacked twitter accounts" http://changux.co/something-about-55000-hacked-twitter-accounts http://changux.co/something-about-55000-hacked-twitter-accounts
This week, seen in several internet news portals the announcement of "hacking55000 twitter accounts. This kind of news tend to attract attention of the net and demonstrate the fragility of this. I like to spend some type observing the data published and speculate a bit. 
Yes, after concatenate the five parts of pastebin, we have 58970 records. But after this and check how many of them are unique, only 36998 are. So, until here, the announcement was not successful.
We can consider the password list a Corpus and with it, useful to linguistic analysis and text mining.
First, the most popular passwords:
Screen_shot_2012-05-11_at_10

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Order Unfiltered wordcount Occurencies
1. 315475 580 1.5573
2. 123456 489 1.3130
3. 123456789 176 0.4726
4. 102030 68 0.1826
5. 123 61 0.1638
6. 12345 53 0.1423
7. 1234 45 0.1208
8. 101010 29 0.0779
9. 242424 28 0.0752
10. 12345678 27 0.0725
11. 010203 24 0.0644
12. 1234567 24 0.0644
13. 654321 23 0.0618
14. 123123 21 0.0564
15. 121212 19 0.0510
16. 123321 16 0.0430
17. sexo 16 0.0430
18. com 16 0.0430
19. 1234567890 15 0.0403
20. junior 14 0.0376
21. gay 14 0.0376
22. gatinho 13 0.0349
23. 124578 13 0.0349
24. 0123456789 13 0.0349
25. 12345678910 12 0.0322
26. brasil 12 0.0322
27. 123654 12 0.0322
28. 202020 12 0.0322
29. 159753 12 0.0322
30. adm15575 11 0.0295
31. 212121 11 0.0295
32. 151515 11 0.0295
33. 2008 10 0.0269
34. 1010 10 0.0269
35. 252525 10 0.0269
36. fernando 10 0.0269
37. redeglobo 10 0.0269
38. 112233 10 0.0269
39. eumesmo 10 0.0269
40. 000000 10 0.0269
41. 987654321 9 0.0242
42. 141414 9 0.0242
43. 123mudar 9 0.0242
44. 789456 9 0.0242
45. 696969 9 0.0242
46. ricardo 9 0.0242
47. thiago 8 0.0215
48. alexandre 8 0.0215
49. eduardo 8 0.0215
50. 456789 8 0.0215

Very interesting, then:
  • The first 16 password are numbers.
  • The first most popular password is 315475 (a mystery to evaluate)
  • The first word is "sexo".
  • Passwords seem to predominate in portuguese (in popularity)
What is 315475?
  1. The phone prefix of Syracuse, NY (USA).
  2. One hexcolor? 580 persons love the blue?
  3. A common password from a spambot owner?
Screen_shot_2012-05-12_at_4
My vote for the spambot.

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, 04 May 2012 15:38:47 -0700 Human power to climb! http://changux.co/human-power-to-climb http://changux.co/human-power-to-climb
Photo

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, 05 Apr 2012 19:47:00 -0700 easy way to know if "flashback Trojan" infected your mac (osx lion) http://changux.co/easy-way-to-know-if-flashback-trojan-infected http://changux.co/easy-way-to-know-if-flashback-trojan-infected

This last days, many people spoke about the new "Flashback Trojan" in OSX 10.7 (for more info, click here).

The way to know if you are infected requires some work with the terminal (two commands). Some users "hate" the terminal or simply not know it is there, that is why I wrote a simple applescript (fast and dirty) that check in a click (to my dear friend Dario).

The resultant application (created with applescript editor) is included in this post (Check Flashback Trojan 0.1.zip), or you can check the source code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
display dialog "Lets go to check two simple values, if the result is not equal to OK, run some antivirus or do your job with the terminal app. Also, check http://goo.gl/3FWfA" with icon stop with title "Simple Flashback Trojan detect tool"

try
set test1 to do shell script "defaults read /Applications/Safari.app/Contents/Info LSEnvironment > /tmp/nada 2>&1; cat /tmp/nada | grep -i not"
set test1 to result

if test1 contains "does not exist" then
display dialog "Step 1: OK" with icon note
do shell script "rm -f /tmp/nada"
else
display dialog "Step 1: Something is wrong with Info LSEnvironment" with icon stop
end if
end try

try
set test2 to do shell script "defaults read ~/.MacOSX/environment DYLD_INSERT_LIBRARIES > /tmp/nada2 2>&1; cat /tmp/nada2 | grep -i not"
set test2 to result

if test2 contains "does not exist" then
display dialog "Step 2: OK" with icon note
do shell script "rm -f /tmp/nada2"
else
display dialog "Step 2: Something is wrong with DYLD_INSERT_LIBRARIES" with icon stop
end if
end try

Screen_shot_2012-04-05_at_9

0screen_shot_2012-04-05_at_9

1screen_shot_2012-04-05_at_9
Screen_shot_2012-04-06_at_12

Check_Flashback_Trojan_0.1.zip Download this file

Bye,

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, 04 Apr 2012 15:43:20 -0700 @tomasgarcia_a a lo "Dandy Style" #vintage http://changux.co/tomasgarciaa-a-lo-dandy-style-vintage http://changux.co/tomasgarciaa-a-lo-dandy-style-vintage
Media_httpdistilleryi_nidbs

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, 13 Mar 2012 19:00:00 -0700 Solving "VTDecoderXPCService quit unexpectedly" in OSX 10.7 http://changux.co/solving-vtdecoderxpcservice-quit-unexpectedly http://changux.co/solving-vtdecoderxpcservice-quit-unexpectedly
The log error is:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Process: VTDecoderXPCService [38461]
Path: /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/XPCServices/VTDecoderXPCService.xpc/Contents/MacOS/VTDecoderXPCService
Identifier: VTDecoderXPCService
Version: ??? (???)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
 
Date/Time: 2012-03-13 16:19:35.652 -0500
OS Version: Mac OS X 10.7.3 (11D50)
Report Version: 9
Sleep/Wake UUID: C7F9D4B3-1728-4AB6-B314-FBC9E4B06761
 
Crashed Thread: 3 Dispatch queue: com.apple.coremedia.videodecoder-peer-38460
 
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00007fda92700000
 
VM Regions Near 0x7fda92700000:
    MALLOC_TINY 00007fda92400000-00007fda92700000 [ 3072K] rw-/rwx SM=PRV
-->
    MALLOC_SMALL 00007fda92800000-00007fda93800000 [ 16.0M] rw-/rwx SM=PRV
 
Application Specific Information:
objc[38461]: garbage collection is OFF

VTDecoderXPCService is the sandboxing for video content in Lion. All things that are QuickTime related, audio or video, are sandboxed by this service. 
The problem is caused by a corrupt video file, in my case it was a m4v file. And because the file was on the desktop, each time I restarted, or opened a finder window that opened to the desktop folder, the error would pop up. 

However, some possible solutions are (each one, not together):

  1. Delete the file from the Desktop.
  2. Move the video/audio file to one directory (obviously, create them).
  3. Change the opening default app to another compatible, like VLC.
  4. In some cases, change the file extension to another, solves the problem.

For more info:

Screen_shot_2012-03-13_at_8

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, 27 Feb 2012 09:59:00 -0800 Luchando contra la delincuencia por vías sociales nace www.mibici.co http://changux.co/luchando-contra-la-delincuencia-por-vias-soci http://changux.co/luchando-contra-la-delincuencia-por-vias-soci
Es triste, pero la realidad en el mundo y particularmente en Colombia respecto al hurto de bicicletas es desalentadora. Somos un pais rico en paisajes, en montañas y trochas al que los amigos de lo ajeno asedian de forma minuciosa, buscando específicamente bicicletas caras y sin los escrúpulos propios que los hacen particularmente peligrosos. 
Es por eso, que intentando ayudar en la mitigación de las consecuencias de su delito (la compra de elementos robados) que se ha lanzando www.mibici.co

Para qué hacerlo

Si alguien roba no lo hace precisamente para guardar lo que hurta, lo hace para “comerciar”. Es aquí donde podemos hacer diferencia: registrando y educando a todos los demás propietarios de bicicletas a que las registren podemos ofrecer a otros "bikers" la posibilidad de buscarlas en la base de datos y así estar seguros que no estamos formando parte de la cadena del delito.

Cómo funciona

El funcionamiento es simple: te registras o accedes através de tu perfil en redes sociales, registras tu bicicleta o tus bicicletas y listo. También, hay una página donde aparecen listadas las bicicletas que han sido reportadas como robadas por sus dueños, un buscador sobre ese listado y los botones para compartir cualquier contenido fácilmente en redes sociales. 

Características del portal

  1. Accesible através de dispositivos móviles, si estas en la calle y alguien te ofrece una bici, puedes fácilmente buscarla en el listado.
  2. Puedes ingresar al portal através de tus perfiles en redes sociales, ¿para qué crear mas nombres de usuario y contraseñas si ya tienes varios?
  3. En el mismo sentido, puedes compartir el contenido relevante através de tus redes sociales: google plus, facebook, twitter y el novedoso pinterest.
  4. Puedes enterarte de modalidades y de lugares en donde suceden los hurtos, además de generar un listado de recomendaciones y precauciones de circulación.
  5. Tienes una sección de Ayuda con vídeos que explican el funcionamiento del portal (además es muy fácil).
  6. Tienes un canal directo de interlocución con las personas que lo mantienen a través de la cuenta de twitter @mibicico
  7. Puedes compartir con personas como tu recomendaciones generales y añadirlas a tu circulo de conocidos.

En fin, una alternativa que busca desde lo social, hacer diferencia. 

Todos invitados a http://www.mibici.co/

Mibici-fondoclaro-1

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, 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