12/26/2011 3 idiots :-D

Hoy durante un dia agitado despues de una navidad en familia ,decidi ver una pelicula y revisar post en la  dragonjar.org sobre peliculas  podeis mirar en :
http://www.dragonjar.org/las-20-mejores-peliculas-hackers.xhtml/comment-page-2#comment-21975

Lo cierto es que la gran mayoria de peliculas ya las habia visto desde la maravillosa de  pi (genial si te gustan las matematicas ) hasta la que yo diria que mejor por efectos y actores  duro de matar 4.0 que por cierto recomendada :-D "que por cierto me cabe la duda con lo del virus y las fuentes ups ¿verdad o mentira ?" en fin decidí mirar la pelicula 3 idiots una pequeña descripcion :
Cuenta la historia de Rancho. Un chico con una pasión por estudiar y aprender, aunque no vemos una sola consola en la película, nos muestra la verdadera esencia del hacking, poder ver las cosas de otra forma y cuestionarse todo, realmente es una película que no pueden dejar de verse.
en la cual se ve mezclada la esencia de la vida y la passion,las enseñanzas se encuentran ahi,y mas cuando se confrontan con nuestra vida cotidiana.Yo eh decidido poner el link del video asi no teneis que ir hasta duck duck go ó google a buscar,asi que les dejo para que disfruteis.



Digg it StumbleUpon del.icio.us

12/25/2011 Merry Xmas for all and Camp1 Pereira Nighthack

hey,it's december is  a great month for all,you'll be observing easy  thefts in some streets,if you agree with me,please don't trust in anyone that you see for there,no one is secure is this month in fact the people is most confident ...
Since now  merry Xmas for all and remember that the security is something important for survive in this crazy world.



You Remember ccc ? ,well if  you dont  Chaos Computer Club  every year is making a conference similar to Defcon but this is mostly classic,spies and hackers in one only place,mainly i like defcon and C3 the assistants and speaker are so good,C3  is since 28 years  ago:

 The Chaos Computer Club (CCC) is an organization of hackers. The CCC is based in Germany and                  German-speaking countries.
The CCC describes itself as "a galactic community of life forms, independent of age, sex, race or societal orientation, which strives across borders for freedom of information...." In general, the CCC advocates more transparency in government, freedom of information, and thehuman right to communication. Supporting the principles of the hacker ethic, the club also fights for free universal access to computers and technological infrastructure. 
ccc28 

This year i and  some friends will be in a Fall place sin 28-30 december this could be named 'Camp1 Pereira Nighthack ' with retransmision of all conferences of C3-28 so people from uruguay and usa will arrived to giving a good trainings about wirelessSec and Cryptography....i'm excited for this.

More Information about C3 :
wiki
   
Digg it StumbleUpon del.icio.us

12/15/2011 Installing i3 under Debian Gnu/Linux


I3 has been a good option for me,during the last  3 or 4 months ago i've been testing all capacibilities,it was created because wmii didn't provide some features (see the man page or /usr/share/man/man1/i3.1.gz and uncompress), it targeted for advanced users and developers,the documentation is great and it has 2 options for install under debian. The 1 is with apt or aptitude or wathever package manager that you use,and the other is compile,in this blogpost i'm going to use aptitude for install it,this is the easy way :
aptitude update && aptitude install i3
 and i  forget the last this install is under wheezy i really don't know if stable  has it.If you dont install  a session manager you can try with gdm or another,but the better option and useful  is gdm no much dependeces and other bunch stuff's.so on  all work is done,but not  over yet remember check :
  1. i3status
  2. i3clock    
  3. dzen2 
when you finish the firts time that you init you xsession you'll configure your mod key in my case is alt,before after these i3 automatically create ~/.i3 too you can try to  optimize the i3 bar with this command :

exec i3status  |  dzen2  -bg black -fn "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1"
and add a wallpaper using feh :-D
feh --bg-scale  /home/user/yourwallpaper.png 

more info:
http://i3wm.org/downloads
http://i3wm.org/docs

I3 under Openbsd 
Digg it StumbleUpon del.icio.us

12/14/2011 Sym Py a math Library for Python

There are a some good libs in python but today we're going to speak about Sym Py a new library for make a usefuls test,reading it in google open source blog i found this excelent lib.

SymPy
 is a computer algebra system (CAS) written in pure Python. The core allows basic manipulation of expressions (like differentiation or expansion) and it contains many modules for common tasks (limits, integrals, differential equations, series, matrices, quantum physics, geometry, plotting, and code generation).

Features

SymPy core capabilities include:
  • basic arithmetics *,/,+,-,**
  • basic simplification (like a*b*b + 2*b*a*b -> 3*a*b**2)
  • expansion (like (a+b)**2 -> a**2 + 2*a*b + b**2)
  • functions (exp, ln, ...)
  • complex numbers (like exp(I*x).expand(complex=True) -> cos(x)+I*sin(x))
  • differentiation
  • taylor (laurent) series
  • substitution (like x -> ln(x), or sin -> cos)
  • arbitrary precision integers, rationals and floats
  • noncommutative symbols
  • pattern matching
Then there are SymPy modules for these tasks:
  • more functions (sin, cos, tan, atan, asin, acos, factorial, zeta, legendre)
  • limits (like limit(x*log(x), x, 0) -> 0)
  • integration using extended Risch-Norman heuristic
  • polynomials (division, gcd, square free decomposition, groebner bases, factorization)
  • solvers (algebraic, difference and differential equations, and systems of equations)
  • symbolic matrices (determinants, LU decomposition...)
  • mpmath (multiprecision floating-point arithmetic)
  • geometric algebra (GA)
  • Pauli and Dirac algebra
  • quantum physics
  • geometry module
  • plotting (2D and 3D)
  • code generation (C, Fortran, LaTeX)
  • Es :

Python Session

>>> from sympy import Symbol, cos
>>> x = Symbol('x')
>>> e = 1/cos(x)
>>> print e.series(x, 0, 10)
1 + (1/2)*x**2 + (5/24)*x**4 + (61/720)*x**6 + (277/8064)*x**8 + O(x**10)

ISymPy Session

In [1]: (1/cos(x)).series(x, 0, 10)
Out[1]: 
     2      4       6        8           
    x    5*x    61*x    277*x            
1 + ── + ──── + ───── + ────── + O(x**10)
    2     24     720     8064            
Digg it StumbleUpon del.icio.us

12/13/2011 BarcampSE v2 Slides



Recientemente en Colombia se llevo a cabo BarcampSE en su 2da version como el año anterior se realiza en diferentes ciudades del pais,y diferentes ciudades como pereira,bogota,barranquilla,medellin,cali este evento solo pretende acercar mas a la comunidad interesada en informatica   y personas interesadas de algun modo en su seguridad y sus cercanos,ademas genera espacios de aprendizaje y compartir experiencias con profesionales de campo.Al igual que el año pasado  este año tuve el placer de asistir en Pereira realizado en Parquesoft y coordinado por @Santiaguf y @Dragonjar  algunas de las desconferencias fueron :
  • Client Side Attacks 
  • Analisis Forense en IOS 
  • Steganografia 
  • Seguridad en Voz ip 
este año al igual que el anterior tuve el placer de presentar una pequeña desconferencia donde la meta era hacer reir y a pesar de la poca asistencia la idea fue percibida por la mayoria de los asistentes tanto asi que los manipule y ni se dieron cuenta( :P ),conoci a muchas personas algunos nuevos en el tema otros ya con experiencia,entre ellos Dragonjar con quien habia intercabiado algunas palabras por gtalk y a su linda esposa,diego g de manizales,pero al final fue un buen rato el que se paso riendo y aprendiendo,asi que esperemos que el otro año organizar con mas tiempo el BarcampSE v3.0 y  realizar combocatoria masiva y dentro de una universidad donde la investigacion,el humor y la seguridad se mezclen. :P

Tambien os queria compartir mis Slides,realizados bajo libreoffice .


Digg it StumbleUpon del.icio.us