-
Recent Posts
Archives
Categories
Meta
Category Archives: GNU/Linux/Open Source
Hg
Hoy estuve practicando algo de Mercurial, otro manejador de proyectos similar a GIT… muy parecido a GIT según mi experiencia. Esta vez al tratar de documentar el proyecto Watiqay codeado por @drneox, aprendí a commitear con esta herramienta. Aquí mi … Continue reading
GNOME Thursday
We are celebrating in Lima, Peru the event Linux Week 2012. So far, we presented people who work in open source projects like Mozilla, Red Hat, Android, Blender and many others. On Thursday, we are going to present people from GNOME at … Continue reading
Posted in GNOME, GNU/Linux/Open Source
Tagged #lw2012, GNOME, GNOME Perú, http://lleksah.wordpress.com, Julita Inca, Julita Inca Chiroque, Linux Week
1 Comment
‘Pull is not possible because you have unmerged files’
Days ago, I got this message problem when I tried to do the ‘git pull…’ thing in ‘mallard-documentation’ branch julita@yulys:~/GNOME/baobab/help/C$ git pull –rebase origin mallard-documentation U help/C/scan-remote.page Pull is not possible because you have unmerged files. Please, fix them up … Continue reading
Building Cheese 3.3.91 – Ubuntu 11.10
Before all else, I want warning you… if you are a user that want to play with Cheese and you notice you do not have Cheese installed in your laptop… a friend of you or someone who has knowledge of … Continue reading
Connecting to IRC with Empathy
A lot of people in GNOME use a dedicated IRC application called XChat, but that Empathy lets you connect to IRC too! So I can show you how to do that in a few minutes ;D Empathy is an application … Continue reading
Posted in GNOME, GNU/Linux/Open Source, τεχνολογια :: Technology
Tagged #gnome-women, Empathy, GNOME 3.2, http://lleksah.wordpress.com, IRC, Julita Inca
5 Comments
Configurando Emphaty en mi GNOME 3.2
El día de mañana tendremos una reunión on line con las #gnome-women de todo el mundo y bueno como formatee porque no tenia bien configuradas las particiones para poder tener fedora 16 – ubuntu 11.10 en mi misma lap, nuevamente … Continue reading
Me cambié a GNOME 3.2… algunos tips
El dia 10 de Dic. se realizo un taller practico en la PUCP para instalar Ubuntu 11.10 con GNOME 3.2 a cargo de Marco Villegas y Felipe Solari. La mayoria de los asistentes realizaron la prueba en una maquina virtual … Continue reading
GNOME 3.2 install
El dia de hoy con la ayuda de mi amigo Jose Quinhones, instalamos en mi lap Ubuntu 11.10 y como venia por defecto Unity, le pusimo GNOME <3 tal solo ejecutando los comandos apt-get install gnome-shell y apt-get install gnome-tweak-tool como … Continue reading
GNOME Perú
Yesterday, some guys of GNOME Peru presented some jobs we did for GNOME in the university “Universidad Inca Garcilaso de la Vega” in Lima . We encourage more students get involved as a volunteers for development and documentation topics, we … Continue reading
Talk about GNOME program
Hi GNOME! I’d like to share this time some talks related of GNOME in my country. I do some activities in “PUCP” University through the Linux IDES community, I am also a collaborator in SanMarcux community of the “UNMSM” University in Lima, Perú. … Continue reading
Posted in GNOME, GNU/Linux/Open Source, τεχνολογια :: Technology
Tagged FESOLI, GNOME, https://lleksah.wordpress.com, Julita Inca, OPW program Gnome, Perú
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
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