Hackfest Brno Docs 2012

This year “2012″ the first “face to face” meeting I will have with GNOME people is going to happen in Developer Conference 2012.  I am going to be part of the Hackfest Doc Sprint Brno 2012. My contribution will be related with writing and updating documentation.

My purpose is also get involved in technical writing and find some way to help the accessibility team.

Brno here we come!

Posted in GNOME | Tagged , , , , , | Leave a comment

Urbanización Villalba de San Miguel – EX Zona Residencial

Vivo en una zona que colinda con el distrito del Callao y desde pequeña siempre escuchaba el comentario de las vecinas acerca del peligro que esto implicaría, ya que los maladrines del Callao bajaban a pintar las casas, asaltar a las personas y provocar desorden o faltas de ornato, etc, etc.

La realidad al 2012, luego de dos períodos consecutivos del Sr. Heresi es A MI PARECER un caos por los alrededores de la casa de mis padres.  Algunas fotos que tomé, lo que AHORA es una pista con PARADEROS, era ANTES un PARQUE lleno de árboles y flores… Reitero lo que  es ahora, una avenida con ambulantes de periodicos, llenadores de combis que gritan todo el dia, vendedores de desayunos, hombres que orinan en plena avenida Venezuela sin ningún pudor. Se puede ver en las fotos que incluso hay botellas rotas junto a un arbol. La verdad es un peligro y la policia que siempre ronda esta hmmmm no sé para que está… Si sé para que está para evitar que les tome fotos, porque me detuvieron por estar tomando fotos en la calle sin razones, según ellos. Si no tenía mi DNI conmigo me detenían… la verdad no entiendo nada. Aquí algunas pics que logre salvar:

A diferencia de los paraderos del Callao, los cuales están pintados desde el tejado hasta los asientos, sin ningún ambulante y con faroles que alumbran cada dos metros cuadrados aprox., aparte de los postes. Por otro lado contrastando, se ve que el lado de San Miguel… bueno las fotos se describen solas…

Los policias al parecer están de acuerdo, incluso conversan con los ambulantes y llenadores sin problemas… y ven que están acumulando la basura los ambulantes en la esquina en pleno día y no se hace nada de nada. Lo último que quiero mostrar son las botellas cortadas, que estàn tiradas en la calle… quiero recalcar que todo lo que escribo es porque ya me canso tanta inseguridad en la zona donde vivo. Una vez mi hermanita fue victima de un asaltante con botella cortada y causo un trauma tremendo. Ademàs haber sido victimas de un asalto total en mi casa unos años atràs, cuando nos fuimos todos a un paseo familiar,  vacearon los tres pisos y aún no tenemos ninguna noticia… como si nada hubiera pasado. 

Quién nos podrá defender si no es nuestro propio alcade Salvador heresi, o es acaso gestión de la actual alcadesa Susana Villarán… en fin, no creo que ninguno de ellos nos pueda responder, mucho menos pagar todos los daños causados tanto material como psicológico.

Posted in Laikes & Dislaikes :: Entertainment | Tagged , , , , , , , , , , , , , | Leave a comment

Creando tablas en Mysql

Tengo que crear tablas e insertar data en las tablas de mi pequenha farmacia:

julita@yulys:~$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 61
Server version: 5.1.58-1ubuntu1 (Ubuntu)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>

* Lo primero que debemos hacer es verificar en qué base de datos nos encontramos:

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
+--------------------+
2 rows in set (0.00 sec)

* Ahora crearemos la base de datos “farmacia” con las tablas que se mostraron en el primer esquema realizado con workbench :)

mysql> create database farmacia;
Query OK, 1 row affected (0.02 sec)
mysql> use farmacia
Database changed

* Ahora solo crearé la primera tabla “Proveedores”, a modo de ejemplo:

mysql> CREATE TABLE Proveedores
 -> (
 -> prov_id BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,
 -> prov_name VARCHAR(60),
 -> prov_sucursal VARCHAR(45),
 -> prov_responsable VARCHAR(45),
 -> prov_fecha_ingreso DATE,
 -> prov_fecha_egreso DATE,
 -> prov_sede_principal VARCHAR(60)
 -> );
Query OK, 0 rows affected (0.13 sec)

Fuentes utilizadas:

http://dev.mysql.com/doc/refman/5.0/en/creating-database.html

http://coba.dc.fi.udc.es/~bd/bd2/MySQLWB/tutorialWB.html

Posted in τεχνολογια :: Technology | Tagged , , , , | Leave a comment

Happy New Year 2012 GNOME!!

I just wanted to express my gratitude with GNOME… I  made a little GNOME girls Christmass tree and I want to thank all the support I received from all the guys I met this year!

I know this like I found in the OMG Ubuntu page:

julita@yulys:~$ sudo apt-get update family-time

but I also want to give you a Happy holidays GNOME Planet message :)

julita@yulys:~$ sudo apt-get install happy-holidays && sudo apt-get remove --purge -f problems
Posted in GNOME | Tagged , , | 2 Comments

GNOME Girls Christmas Tree

This year: 2011 I have the opportunity to meet incredible girls trough GNOME. GNOME is an international organization who lets many people around the world work for one objective: Offer an amazing desktop user interface by creating applications that anyone can imagine using code in C, vala, java script, python and other tools that any person can learn to contribute for the objective.  Beyond the professional opportunity, I found a group of people that can help you any time, any way… I found a great community from different places with this same purpose: conquer the world with Linux :) I will always be grateful with Marina and all the girls I met in GNOME <3.

Posted in Laikes & Dislaikes :: Entertainment | Tagged , , , , , , | 1 Comment

Mi draft de la documentación para Disk Usage Analyzer

Este memorable post es sólo para recordar que pasos seguí para poder subir la documentación a git, y por supuesto es SOLO PARA MÍ! ;D

http://git.gnome.org/browse/baobab/log/?h=mallard-documentation

julita@yulys:~/GNOME/baobab/help$ cd C
julita@yulys:~/GNOME/baobab/help/C$ git branch
* mallard-documentation
 master
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task index "Disk Usage Analyzer"
The program 'yelp-new' is currently not installed. You can install it by typing:
sudo apt-get install yelp-tools
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task index "Disk Usage Analyzer"
julita@yulys:~/GNOME/baobab/help/C$ ls -lH
total 4
-rw-rw-r-- 1 julita julita 779 2011-12-19 18:21 index.page
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task introduction "Introduction"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task scan-file-system "Scan filesystem"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task scan-home "Scan Home"julita@yulys:~/GNOME/baobab/help/C$ yelp-new task scan-folder "Scan a folder"julita@yulys:~/GNOME/baobab/help/C$ yelp-new task scan-remote "Scan a remote folder"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task view-rings "View as Rings Chart"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task view-tree "View as Treemap Chart"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task tool-status-bar "Toolbar and Statusbar"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task allocated-space "Allocated Space"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task ssh "SSH -Secure Schell Protocol"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task ftp "FTP -File Transfer Protocol"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task windows-share "Windows share"julita@yulys:~/GNOME/baobab/help/C$ yelp-new task web-dav "WebDAV"
julita@yulys:~/GNOME/baobab/help/C$ yelp-new task custom-location "Custom location"
julita@yulys:~/GNOME/baobab/help/C$ gedit index.page
julita@yulys:~/GNOME/baobab/help/C$ gedit introduction.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-file-system.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-home.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-folder.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-file-system.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-folder.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-remote.page
julita@yulys:~/GNOME/baobab/help/C$ gedit view-rings.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-folder.page
julita@yulys:~/GNOME/baobab/help/C$ gedit view-rings.page
julita@yulys:~/GNOME/baobab/help/C$ gedit view-tree.page
julita@yulys:~/GNOME/baobab/help/C$ gedit tool-status-bar.page
julita@yulys:~/GNOME/baobab/help/C$ gedit allocated-space.page
julita@yulys:~/GNOME/baobab/help/C$ gedit ssh.page
julita@yulys:~/GNOME/baobab/help/C$ gedit ftp.page
julita@yulys:~/GNOME/baobab/help/C$ gedit windows-share.page
julita@yulys:~/GNOME/baobab/help/C$ gedit web-dav.page
julita@yulys:~/GNOME/baobab/help/C$ gedit custom-location.page
julita@yulys:~/GNOME/baobab/help/C$ gedit windows-share.page
julita@yulys:~/GNOME/baobab/help/C$ gedit custom-location.page
julita@yulys:~/GNOME/baobab/help/C$ git add .
julita@yulys:~/GNOME/baobab/help/C$ git commit -a
[mallard-documentation b46def5] I inserted all the new topics for baobab (first draft).
 30 files changed, 1080 insertions(+), 0 deletions(-)
 create mode 100644 help/C/allocated-space.page
 create mode 100644 help/C/allocated-space.page~
 create mode 100644 help/C/custom-location.page
 create mode 100644 help/C/custom-location.page~
 create mode 100644 help/C/ftp.page
 create mode 100644 help/C/ftp.page~
 create mode 100644 help/C/index.page
 create mode 100644 help/C/index.page~
 create mode 100644 help/C/introduction.page
 create mode 100644 help/C/introduction.page~
 create mode 100644 help/C/scan-file-system.page
 create mode 100644 help/C/scan-file-system.page~
 create mode 100644 help/C/scan-folder.page
 create mode 100644 help/C/scan-folder.page~
 create mode 100644 help/C/scan-home.page
 create mode 100644 help/C/scan-home.page~
 create mode 100644 help/C/scan-remote.page
 create mode 100644 help/C/scan-remote.page~
 create mode 100644 help/C/ssh.page
 create mode 100644 help/C/ssh.page~
 create mode 100644 help/C/tool-status-bar.page
 create mode 100644 help/C/tool-status-bar.page~
 create mode 100644 help/C/view-rings.page
 create mode 100644 help/C/view-rings.page~
 create mode 100644 help/C/view-tree.page
 create mode 100644 help/C/view-tree.page~
 create mode 100644 help/C/web-dav.page
 create mode 100644 help/C/web-dav.page~
 create mode 100644 help/C/windows-share.page
 create mode 100644 help/C/windows-share.page~
julita@yulys:~/GNOME/baobab/help/C$ git status
# On branch mallard-documentation
# Your branch is ahead of 'origin/master' by 2 commits.
#
nothing to commit (working directory clean)
julita@yulys:~/GNOME/baobab/help/C$ git push origin mallard-documentation
Counting objects: 34, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (32/32), done.
Writing objects: 100% (32/32), 14.63 KiB, done.
Total 32 (delta 15), reused 0 (delta 0)
To ssh://jinca@git.gnome.org/git/baobab
 05af1ae..b46def5 mallard-documentation -> mallard-documentation
julita@yulys:~/GNOME/baobab/help/C$
julita@yulys:~/GNOME/baobab/help/C$ yelp-check validate index.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ gedit tool-status-bar.page
julita@yulys:~/GNOME/baobab/help/C$ gedit tool-status-bar.page
julita@yulys:~/GNOME/baobab/help/C$ gedit tool-status-bar.page
julita@yulys:~/GNOME/baobab/help/C$ gedit allocated-space.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ gedit index.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-file-system.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-folder.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-home.page
julita@yulys:~/GNOME/baobab/help/C$ gedit scan-remote.page
julita@yulys:~/GNOME/baobab/help/C$ gedit view-rings.page
julita@yulys:~/GNOME/baobab/help/C$ gedit view-tree.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ yelp-check validate .
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ gedit view-tree.page
julita@yulys:~/GNOME/baobab/help/C$ gedit index.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ gedit introduction.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ gedit allocated-space.page
julita@yulys:~/GNOME/baobab/help/C$ gedit tool-status-bar.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ git commit -a
[mallard-documentation 193ba62] I fixed some error of XML and edited the view guide for index.
 20 files changed, 274 insertions(+), 229 deletions(-)
 rewrite help/C/scan-folder.page~ (64%)
julita@yulys:~/GNOME/baobab/help/C$ git push origin mallard-documentation
Counting objects: 39, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (20/20), done.
Writing objects: 100% (20/20), 5.74 KiB, done.
Total 20 (delta 15), reused 0 (delta 0)
To ssh://jinca@git.gnome.org/git/baobab
 b46def5..193ba62 mallard-documentation -> mallard-documentation
julita@yulys:~/GNOME/baobab/help/C$
julita@yulys:~/GNOME/baobab/help/C$ git commit -a
[mallard-documentation 193ba62] I fixed some error of XML and edited the view guide for index.
 20 files changed, 274 insertions(+), 229 deletions(-)
 rewrite help/C/scan-folder.page~ (64%)
julita@yulys:~/GNOME/baobab/help/C$ git push origin mallard-documentation
Counting objects: 39, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (20/20), done.
Writing objects: 100% (20/20), 5.74 KiB, done.
Total 20 (delta 15), reused 0 (delta 0)
To ssh://jinca@git.gnome.org/git/baobab
 b46def5..193ba62 mallard-documentation -> mallard-documentation
julita@yulys:~/GNOME/baobab/help/C$ gedit introduction.page
julita@yulys:~/GNOME/baobab/help/C$ yelp .
julita@yulys:~/GNOME/baobab/help/C$ git commit -a
[mallard-documentation 85928b8] I enter a line which lets introduction visible in the writing.
 2 files changed, 2 insertions(+), 2 deletions(-)
julita@yulys:~/GNOME/baobab/help/C$ git push origin mallard-documentation
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 500 bytes, done.
Total 5 (delta 4), reused 0 (delta 0)
To ssh://jinca@git.gnome.org/git/baobab
 193ba62..85928b8 mallard-documentation -> mallard-documentation
julita@yulys:~/GNOME/baobab/help/C$
Posted in τεχνολογια :: Technology | Leave a comment

User Disk Analyzer in advanced

I catch up on my writings for GNOME after a couple of months, and I surprisingly realized that I forget some details that are important to make my job fluently.  A parallel story: I’ve formatted my lap, so I had to install again everything and reviewed my older post to create an environment for my GNOME writings. This is what I got in brief:

1. Registering RSA

julita@yulys:~$ cd ~/.ssh
julita@yulys:~/.ssh$ ls
known_hosts

so, I had to generate a new one by doing:

julita@yulys:~/.ssh$ ssh-keygen

* Because of the formatting thing I had to send a mail to the adminsys GNOME to validate my new ssh. After that, I followed the steps I did before.

2. Cloning baobab.

Since the application Disk Usage Analyzer is called the baobab project instead of being part of gnome-utils as it was before. I followed the instructions of the git.gnome.org page.

julita@yulys:~$ cd GNOME
julita@yulys:~/GNOME$ git clone ssh://jinca@git.gnome.org/git/baobab
Cloning into baobab...
remote: Counting objects: 2261, done.
remote: Compressing objects: 100% (730/730), done.
remote: Total 2261 (delta 1605), reused 2100 (delta 1483)
Receiving objects: 100% (2261/2261), 5.50 MiB | 101 KiB/s, done.
Resolving deltas: 100% (1605/1605), done.
julita@yulys:~/GNOME$

3. Get myself the right branch:

I guide myself to do this by reading an older post.

julita@yulys:~/GNOME/baobab$ git branch
* master
julita@yulys:~/GNOME/baobab$ git branch -a
* master
 remotes/origin/HEAD -> origin/master
 remotes/origin/master
julita@yulys:~/GNOME/baobab$ git checkout -b mallard-documentation remotes/origin/HEAD
Branch mallard-documentation set up to track remote branch master from origin.
Switched to a new branch 'mallard-documentation'
julita@yulys:~/GNOME/baobab$ git branch
* mallard-documentation
 master
julita@yulys:~/GNOME/baobab$ git pull
Already up-to-date.

4. Deleting the older writings

julita@yulys:~/GNOME/baobab$ ls
AUTHORS ChangeLog COPYING.docs help pixmaps src
autogen.sh configure.ac data Makefile.am po TODO
baobab.doap COPYING git.mk NEWS README
julita@yulys:~/GNOME/baobab$ cd help/C
julita@yulys:~/GNOME/baobab/help/C$ ls
baobab.xml figures legal.xml
julita@yulys:~/GNOME/baobab/help/C$ git rm -rf *.*
rm 'help/C/baobab.xml'
rm 'help/C/legal.xml'
julita@yulys:~/GNOME/baobab/help/C$ ls
figures
julita@yulys:~/GNOME/baobab/help/C$ git rm -rf *
rm 'help/C/figures/baobab_fullscan.png'
rm 'help/C/figures/baobab_prefs.png'
rm 'help/C/figures/baobab_remote.png'
rm 'help/C/figures/baobab_ringschart1.png'
rm 'help/C/figures/baobab_ringschart2.png'
rm 'help/C/figures/baobab_treemaps.png'
rm 'help/C/figures/baobab_window.png'
julita@yulys:~/GNOME/baobab/help/C$

5.  Commit and git push, finally 

julita@yulys:~/GNOME/baobab$ git commit -a[mallard-documentation 5d318e9] I pushed my whole old branch to start a new one. Committer: Julita Inca <julita@yulys.(none)>Your name and email address were configured automatically basedon your username and hostname. Please check that they are accurate.You can suppress this message by setting them explicitly:
git config --global user.name "Your Name" git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
9 files changed, 0 insertions(+), 519 deletions(-) delete mode 100644 help/C/baobab.xml delete mode 100644 help/C/figures/baobab_fullscan.png delete mode 100644 help/C/figures/baobab_prefs.png delete mode 100644 help/C/figures/baobab_remote.png delete mode 100644 help/C/figures/baobab_ringschart1.png delete mode 100644 help/C/figures/baobab_ringschart2.png delete mode 100644 help/C/figures/baobab_treemaps.png delete mode 100644 help/C/figures/baobab_window.png delete mode 100644 help/C/legal.xml
julita@yulys:~/GNOME/baobab$ git push origin mallard-documentationCounting objects: 5, done.Delta compression using up to 4 threads.Compressing objects: 100% (3/3), done.Writing objects: 100% (3/3), 315 bytes, done.Total 3 (delta 2), reused 0 (delta 0)remote: ---remote: The commits you are trying to push contain the author emailremote: address 'julita@yulys.(none)'. Please configure yourremote: username and email address. See:remote: remote: http://live.gnome.org/Git/Help/AuthorEmailremote: remote: For instructions about how to do this and how to fix yourremote: existing commits.remote: ---To ssh://jinca@git.gnome.org/git/baobab ! [remote rejected] mallard-documentation -> mallard-documentation (pre-receive hook declined)error: failed to push some refs to 'ssh://jinca@git.gnome.org/git/baobab'

* Ok, here we got an error (which I like because I can show how GNOME guys helped me trough IRC). The solution was online here.

Finally!… the most important line of this post:

http://git.gnome.org/browse/baobab/log/?h=mallard-documentation

Posted in GNOME, τεχνολογια :: Technology | Tagged , , , , , | Leave a comment