-
Recent Posts
Archives
Categories
Meta
Monthly Archives: June 2011
My fourth report: Cheese doc in real
To upload my advanced of Cheese documentation in real life, I have to text somewhere… so, it is good idea to put the docs in Gitorious branch. With the help of Phil Bull, I created my Gitorious account and upload … Continue reading
Mujeres programando el ENIAC
Lo máximo! estaba googleando para saber más de la historia de la BINAC, UNIVAC, ENIAC etc etc y los primeros lenguajes de programación y encontré estas pics que quiero compartir Fuentes: http://triedandtestedusermanuals.wordpress.com/2011/06/16/the-eniac-computers-part-2/http://www.boerner.net/jboerner/?p=1503 http://www.dma.eui.upm.es/historia_informatica/Doc/Maquinas/ENIAC.htm http://www.google.com.pe/imgres?imgurl=http://g-ecx.images-amazon.com/images/G/01/askville/1749544_answers/1293885302428_eniac.jpg&imgrefurl=http://clermontbjj.info/univac-and-eniac%26page%3D2&usg=__XagbjdFYkuRBdh8OHVtOui7-f14=&h=300&w=413&sz=33&hl=es&start=0&zoom=1&tbnid=CqqFU6zGLHIOTM:&tbnh=148&tbnw=198&ei=ZCcGTsaOJsXDgQfMzYi4DQ&prev=/search%3Fq%3DENIAC%2BUNIVAC%2BBINAC%26um%3D1%26hl%3Des%26sa%3DN%26biw%3D1366%26bih%3D633%26tbm%3Disch&um=1&itbs=1&iact=hc&vpx=547&vpy=83&dur=1330&hovh=191&hovw=263&tx=136&ty=127&page=1&ndsp=19&ved=1t:429,r:2,s:0&biw=1366&bih=633
Posted in Hardware problems, τεχνολογια :: Technology
Tagged Julita Inca, https://lleksah.wordpress.com, ENIAC, women role
2 Comments
My third report OPW: First draft of Cheese with pic effects
I was trying Cheese during this week and as you see in one of my last post I was struggling to find the right package that lets Cheese work without problems in my Fedora 15 64 bits… well, after those pebbles … Continue reading
Posted in GNOME, GNU/Linux/Open Source, τεχνολογια :: Technology
Tagged cheese, documentation, GNOME, gnome 3, https://lleksah.wordpress.com, Julita Inca
2 Comments
Oración por el mes de San Pablo
Apóstol San Pablo, que con tu doctrina y tu amor has evangelizado al mundo entero, mira con bondad a tus hijos y discípulos. Todo lo esperamos de tu intersecesión ante el Divino Maestro y ante María, Reina de los Apóstoles. … Continue reading
My second report OPW: Structuring and installing Cheese
Here is basically my schema of the Cheese documentation: In More Options, I was thinking to write about: – Set a layout – Image Properties – Sutter And here where I need some appreciations: Common Problems: -> What are the … Continue reading
Posted in GNOME
Tagged bug, cheese, cheese 3.0.1, fedora 15, GNOME, gnome 3, https://lleksah.wordpress.com, Julita Inca, OPW
5 Comments
Almost ready in Fedora 15
I was trying to install all the package that I need to start to work… I did successfully install java and its Netbeans IDE 6.9.3 doing: [yulys@yulys ~]$ cd /usr/bin [yulys@yulys bin]$ ls java* java java2html javac javadoc javah javap … Continue reading
Posted in GNOME, τεχνολογια :: Technology
Tagged decoder, downloadHelper, fedora 15, H.264, https://lleksah.wordpress.com, IDE java, java, Julita Inca, netbeans
7 Comments
First report – Gnome Women Outreach Program 2011
Thanks Gnome Foundation, Shaun McCance and Marina Zhurakhinskaya to give me the opportunity to have a good start in the program!. As part of rhe Gnome Documentation team, I attended an Open Help Conference where I met and interacted with experts in the … Continue reading
“Frequently asked questions from potential new user of Linux” – Real-life situation
I’ve shared my lunch yesterday in Marriot Kingstone OH, USA with my mentor “Phil Bull” and a new potential user of Linux: David Robbins. While we were waiting for the order Dave was asking a lot of Linux questions about … Continue reading
if you are new and smart user in GNOME 3 (:
If you are a mortal user and you decided to pass to the next level and give all the love you have to your computer or laptop with gnome3 and fedora 15 (I used to be dating with Ubuntu, but … Continue reading
Posted in GNOME
Tagged apagar, apagar Gnome 3, beginners, fedora 15, GNOME, gnome 3, gnome planet, gnome.org, gnome3, https://lleksah.wordpress.com, Julita Inca, Julita Inca Chiroque, power Off, turn it off GNOME 3, user
4 Comments
being familiar with GETOPT
getopt – Analiza las opciones de la línea de órdenes. See more in $man getopt #include <unistd.h> int getopt(int argc, char * const argv[], const char *optstring); extern char *optarg; extern int optind, opterr, optopt; #define _GNU_SOURCE #include <getopt.h> int … Continue reading
come on Getrusage!
It contains some examples of uses of getrusage and also recollect some comments of forums *************************************************1*********************************************** #include <sys/types.h> #include <sys/resource.h> #include <sys/time.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <math.h> void fibonacci() { FILE *f; int nAnte,nAct,i,ii; int c; nAnte … Continue reading
doing MAKE command ;)
Es una herramienta que nos permitirá compilar programas que dependen de una o más cabeceras (archivos header), este proceso es automático y eficiente ya que sólo recompila archivos en caso de ser necesarios para poder cumplir el o los objetivos … Continue reading
details, tips and questions???
Capciosas***** Si quiero ejecutar el comando mv a un archivo que tiene como nombre “-abc”, el intérprete toma -abc como una opción del comando mv; pero si intento ver su contenido con cat, osea cat -abc, o si intento listarlo … Continue reading
other programs in C for UNIX / Linux
read #include <unistd.h> #include<stdlib.h> int main() { char buffer[128]; int nread; nread=read(0,buffer,128); if(nread==-1) write(2,”Un problema de lectura ha sucedido\n”,34); if(write(1,buffer,nread))!=nread) write(2,”Un problema de escritura ha sucedido\n”,37); exit(0); } write #include<unistd.h> #include<stdlib.h> int main() { if((write(1,”Aquí hay datos\n”,14))!=14) … Continue reading
Posted in GNU/Linux/Open Source, τεχνολογια :: Technology
Tagged C, gnu, https://lleksah.wordpress.com, Julita Inca, Julita Inca Chiroque, linux, scripts, unix
Leave a comment
little loop script
script usando loop #!/bin/bash FILES=”/usr/sbin/accept /usr/sbin/pwck /usr/sbin/chroot /usr/bin/fakefile /sbin/badblocks /sbin/ypbind” # Lista de los archivos a evaluar y queremos saber de su existencia echo for file in $FILES do if [ ! -e "$file" ] # Verifica si el archivo … Continue reading