Hello world again! I am thrilled to announce that I am organizing the GNOME PERU FEST 2020 via online. Thanks to Maricielo, one of the designer team of the company Tunqui Creativo, we have published our event in the Facebook page of GNOME PERU.
You might take a look into the slides I am planning to present for my first introductory part of GNOME of the event. In case you have suggestions to improve, they are so welcomed! Sorry if the information is in Spanish, but we mostly talk in Spanish in Peru.
We are getting ready to introduce GNOME to the world in this quarantine:
P.S.: During this quarantine, please stay at home, stay safe, motivated and educated.
Like this:
Like Loading...
Related
About Julita Inca
Ingeniero de Sistemas UNAC, Magíster en Ciencias de la Computación PUCP, Magíster en Computación de Alto Rendimiento de la Universidad de Edimburgo, OPW GNOME 2011, Miembro de la GNOME Foundation desde el 2012, Embajadora Fedora Perú desde el 2012, ganadora del scholarship of the Linux Foundation 2012, experiencia como Admin Linux en GMD y Especialista IT en IBM, con certificaciones RHCE, RHCSA, AIX 6.1, AIX 7 Administrator e ITILv3. Experiencia académica en universidades como PUCP, USIL y UNI. Leader of LinuXatUNI Community, HPC Software Specialist at UKAEA, and reviewer of the Technological Magazine of ESPOL-RTE, and volunteering Linux training for MINSA Peru... a simple mortal, just like you!
Pingback: Oh dear. Doing #gnu #linux events through #facebook is like doing c… | Dr. Roy Schestowitz (罗伊)
Pingback: Report of GNOME PERU FEST 2020 | Sólo para Mí!
Hola tengo una duda sobre vala para gnome y es que estoy haciendo una aplicación web con vala pero lo que no se es como puedo mostrar imágenes desde la url (http://localhost:8088/fase.png) del explorador, lo mas cercano que estoy de hacerlo es de la siguiente forma.
Gdk.Pixbuf icon = new Gdk.Pixbuf.from_resource (@”/muu/go.jpg”);
uint8[] bx;
icon.save_to_buffer(out bx,”jpeg”,null);
string b64 = Base64.encode(bx);
msg.status_code = 200;
msg.set_response(“text/html”,Soup.MemoryUse.COPY,””.printf(b64).data);
pero lo que quiero es poder hacer lo siguiente para que me muestre la imagen en la url

msg.status_code = 200;
msg.set_response(“text/html”,Soup.MemoryUse.COPY,”%s”.printf(“fase.jpg”).data);
me podrías dar alguna sugerencia lo agradecería muchísimo.
You can try using `Pixbuf.from_stream` and stream the image data into it. Haven’t tried it though.
https://valadoc.org/gdk-pixbuf-2.0/Gdk.Pixbuf.Pixbuf.from_stream.html