Oreo, cursores simpáticos para Plasma
Aprovechando que mucha gente va a estar pendiente de su ordenador, no es mala idea personalizarlo hasta que es visualmente perfecto para su gusto. Evidentemente, los cursores son parte de esa personalización. Hoy toca hablar de Oreo un pack de cursores originales para Plasma que lo dotarán de un aspecto simpático y agradable.
Oreo, cursores simpáticos para Plasma
Nacidos de la mano y de la mente de x-varlesh-x nos llega Oreo, un tema de cursores de aspecto monocromático, redondeado y muy simpático que seguro que gusta a más de uno.
Se trata de un tema simple con dos resoluciones, 32 y 64, pero con varios colores a instalar de forma independiente: azul, púrpura, rosa, gris y teal (un color entre un color entre el verde-azulado oscuro y el cian oscuro, cuyo nombre en castellano no he encontrado), y que podéis ver abajo.

Y como siempre digo, si os gusta este conjunto de cursores Oreo podéis “pagarlo” de muchas formas en la página de KDE Store, que estoy seguro que el desarrollador lo agradecerá: puntúale positivamente, hazle un comentario en la página o realiza una donación. Ayudar al desarrollo del Software Libre también se hace simplemente dando las gracias, ayuda mucho más de lo que os podéis imaginar, recordad la campaña I love Free Software Day 2017 de la Free Software Foundation donde se nos recordaba esta forma tan sencilla de colaborar con el gran proyecto del Software Libre y que en el blog dedicamos un artículo.
Más información: KDE Store
Cómo cambiar el tema de los cursores en Plasma
Al igual que con los iconos hay varias formas de cambiar el tema de cursores en Plasma, pero la más fácil es:
- Abrir las Preferencias del Sistema
- Ir a la sección Temas para el espacio de trabajo
- Ir a la subsección Tema de Cursor.
- En esta ventana pinchar en “Obtener nuevos temas”
- Buscar Moonlight y dar a instalar.
- Seleccionar el tema y aplicar.
Rápido, sencillo y efectivo, como la mayoría de cosas en en el escritorio Plasma de la Comunidad KDE.
#openSUSE Tumbleweed revisión de la semanas 11 y 12 de 2020
Tumbleweed es una distribución “Rolling Release” de actualización contínua. Aquí puedes estar al tanto de las últimas novedades.

openSUSE Tumbleweed es la versión “rolling release” o de actualización continua de la distribución de GNU/Linux openSUSE.
Hagamos un repaso a las novedades que han llegado hasta los repositorios estas semanas.
El anuncio original lo puedes leer en el blog de Dominique Leuenberger, publicado bajo licencia CC-by-sa, en este enlace:
En estas 2 semanas se han pulicado 7 nuevas Snapshots (0305, 0306, 0307, 0309, 0311, 0312 y 0314). Los cambios más notables han sido:
- Linux kernel 5.5.7
- Python 3.8.2, con la actualización de numerosos módulos de python
- Mesa 20.0.1
- KDE Applications 19.12.3
- KDE Plasma 5.18.3
Y esto es lo que pronto llegará en próximas actualizaciones:
- RPM
- Linux kernel 5.5.10
- Qt 5.15.0 (actualmente se están testeando las versiones Beta)
- Ruby 2.7 quizás junto con la eliminación de Ruby 2.6
- GCC 10 como compilador predeterminado
- Eliminación de Python 2
- GNU Make 4.3
Si quieres estar a la última con software actualizado y probado utiliza openSUSE Tumbleweed la opción rolling release de la distribución de GNU/Linux openSUSE.
Mantente actualizado y ya sabes: Have a lot of fun!!
Enlaces de interés
-
-
- ¿Por qué deberías utilizar openSUSE Tumbleweed?
- zypper dup en Tumbleweed hace todo el trabajo al actualizar
- ¿Cual es el mejor comando para actualizar Tumbleweed?
- Comprueba la valoración de las “snapshots” de Tumbleweed
- ¿Qué es el test openQA?
- http://download.opensuse.org/tumbleweed/iso/
- https://es.opensuse.org/Portal:Tumbleweed
-

——————————–
Reducing memory consumption in librsvg, part 2: SpecifiedValues
To continue with last time's topic, let's see how to make librsvg's DOM nodes smaller in memory. Since that time, there have been some changes to the code; that is why in this post some of the type names are different from last time's.
Every SVG element is represented with this struct:
pub struct Element {
element_type: ElementType,
element_name: QualName,
id: Option<String>,
class: Option<String>,
specified_values: SpecifiedValues,
important_styles: HashSet<QualName>,
result: ElementResult,
transform: Transform,
values: ComputedValues,
cond: bool,
style_attr: String,
element_impl: Box<dyn ElementTrait>,
}
The two biggest fields are the ones with types SpecifiedValues and
ComputedValues. These are the sizes of the whole Element struct
and those two types:
sizeof Element: 1808
sizeof SpecifiedValues: 824
sizeof ComputedValues: 704
In this post, we'll reduce the size of SpecifiedValues.
What is SpecifiedValues?
If we have an element like this:
<circle cx="10" cy="10" r="10" stroke-width="4" stroke="blue"/>
The values of the style properties stroke-width and stroke get
stored in a SpecifiedValues struct. This struct has a bunch of
fields, one for each possible style property:
pub struct SpecifiedValues {
baseline_shift: SpecifiedValue<BaselineShift>,
clip_path: SpecifiedValue<ClipPath>,
clip_rule: SpecifiedValue<ClipRule>,
/// ...
stroke: SpecifiedValue<Stroke>,
stroke_width: SpecifiedValue<StrokeWidth>,
/// ...
}
Each field is a SpecifiedValue<T> for the following reason. In
CSS/SVG, a style property can be unspecified, or it can have an
inherit value to force the property to be copied from the element's
parent, or it can actually have a specified value. Librsvg represents
these as follows:
pub enum SpecifiedValue<T>
where
T: // some trait bounds here
{
Unspecified,
Inherit,
Specified(T),
}
Now, SpecifiedValues has a bunch of fields, 47 of them to be exact —
one for each of the style properties that librsvg supports. That is
why SpecifiedValues has a size of 824 bytes; it is the largest
sub-structure within Element, and it would be good to reduce its
size.
Not all properties are specified
Let's go back to the chunk of SVG from above:
<circle cx="10" cy="10" r="10" stroke-width="4" stroke="blue"/>
Here we only have two specified properties, so the stroke_width and
stroke fields of SpecifiedValues will be set as
SpecifiedValue::Specified(something) and all the other fields will
be left as SpecifiedValue::Unspecified.
It would be good to store only complete values for the properties that are specified, and just a small flag for unset properties.
Another way to represent the set of properties
Since there is a maximum of 47 properties per element (or more if librsvg adds support for extra ones), we can have a small array of 47 bytes. Each byte contains the index within another array that contains only the values of specified properties, or a sentinel value for properties that are unset.
First, I made an enum that fits in a u8 for all the properties, plus
the sentinel value, which also gives us the total number of
properties. The #[repr(u8)] guarantees that this enum fits in a
byte.
#[repr(u8)]
enum PropertyId {
BaselineShift,
ClipPath,
ClipRule,
Color,
// ...
WritingMode,
XmlLang,
XmlSpace,
UnsetProperty, // the number of properties and also the sentinel value
}
Also, since before these changes there was the following monster to represent "which property is this" plus the property's value:
pub enum ParsedProperty {
BaselineShift(SpecifiedValue<BaselineShift>),
ClipPath(SpecifiedValue<ClipPath>),
ClipRule(SpecifiedValue<ClipRule>),
Color(SpecifiedValue<Color>),
// ...
}
I changed the definition of SpecifiedValues to have two arrays, one
to store which properties are specified, and another only with the
values for the properties that are actually specified:
pub struct SpecifiedValues {
indices: [u8; PropertyId::UnsetProperty as usize],
props: Vec<ParsedProperty>,
}
There is a thing that is awkward in Rust, or which I haven't found how
to solve in a nicer way: given a ParsedProperty, find the
corresponding PropertyId for its discriminant. I did the obvious
thing:
impl ParsedProperty {
fn get_property_id(&self) -> PropertyId {
use ParsedProperty::*;
match *self {
BaselineShift(_) => PropertyId::BaselineShift,
ClipPath(_) => PropertyId::ClipPath,
ClipRule(_) => PropertyId::ClipRule,
Color(_) => PropertyId::Color,
// ...
}
}
}
Initialization
First, we want to initialize an empty SpecifiedValues, where every
element of the the indices array is set to the sentinel value that
means that the corresponding property is not set:
impl Default for SpecifiedValues {
fn default() -> Self {
SpecifiedValues {
indices: [PropertyId::UnsetProperty.as_u8(); PropertyId::UnsetProperty as usize],
props: Vec::new(),
}
}
}
That sets the indices field to an array full of the same
PropertyId::UnsetProperty sentinel value. Also, the props array
is empty; it hasn't even had a block of memory allocated for it yet.
That way, SVG elements without style properties don't use any extra
memory.
Which properties are specified and what are their indices?
Second, we want a function that will give us the index in props for
some property, or that will tell us if the property has not been set
yet:
impl SpecifiedValues {
fn property_index(&self, id: PropertyId) -> Option<usize> {
let v = self.indices[id.as_usize()];
if v == PropertyId::UnsetProperty.as_u8() {
None
} else {
Some(v as usize)
}
}
}
(If someone passes id = PropertyId::UnsetProperty, the array access
to indices will panic, which is what we want, since that is not a
valid property id.)
Change a property's value
Third, we want to set the value of a property that has not been set, or change the value of one that was already specified:
impl SpecifiedValues {
fn replace_property(&mut self, prop: &ParsedProperty) {
let id = prop.get_property_id();
if let Some(index) = self.property_index(id) {
self.props[index] = prop.clone();
} else {
self.props.push(prop.clone());
let pos = self.props.len() - 1;
self.indices[id.as_usize()] = pos as u8;
}
}
}
In the first case in the if, the property was already set and we
just replace its value. In the second case, the property was not set;
we add it to the props array and store its resulting index in
indices.
Results
Before:
sizeof Element: 1808
sizeof SpecifiedValues: 824
After:
sizeof Element: 1056
sizeof SpecifiedValues: 72
The pathological file from the last time used 463,412,720 bytes in memory before these changes. After the changes, it uses 314,526,136 bytes.
I also measured memory consumption for a normal file, in this case one with a bunch of GNOME's symbolic icons. The old version uses 17 MB; the new version only 13 MB.
How to keep fine-tuning this
For now, I am satisfied with SpecifiedValues, although it could
still be made smaller:
-
The crate tagged-box converts an enum like
ParsedPropertyinto an enum-of-boxes, and codifies the enum's discriminant into the box's pointer. This way each variant occupies the minimum possible memory, although in a separately-allocated block, and the container itself uses only a pointer. I am not sure if this is worth it; eachParsedPropertyis 64 bytes, but the flat arrayprops: Vec<ParsedProperty>is very appealing in a single block of memory. I have not checked the sizes of each individual property to see if they vary a lot among them. -
Look for a crate that lets us have the properties in a single memory block, a kind of arena with variable types. This can be implemented with a bit of
unsafe, but one has to be careful with the alignment of different types. -
The crate enum_set2 represents an array of field-less enums as a compact bit array. If we changed the representation of
SpecifiedValue, this would reduce theindicesarray to a minimum.
If someone wants to dedicate some time to implement and measure this, I would be very grateful.
Next steps
According to Massif, the next thing is to keep making Element
smaller. The next thing to shrink is ComputedValues. The obvious
route is to do exactly the same as I did for SpecifiedValues. I am
not sure if it would be better to try to share the style
structs between elements.
Añade sonidos de fondo a tu escritorio con Kbeat – Plasmoides de KDE (137)
La Comunidad KDE nunca deja de sorprenderme, y cuando pienso que no se puede hacer más innovaciones al escritorio me sorprenden con una. Y es que ha aparecido un plasmoide que añade sonidos de fondo a tu escritorio con Kbeat, una pequeña pero maravillosa tontería disponible para Plasma, el entorno de trabajo de KDE.
Añade sonidos de fondo a tu escritorio con Kbeat – Plasmoides de KDE (137)
Debo reconocer que estos días voy algo escaso de temas, y aunque parezca extraño, con el tiempo un poco limitado por motivos estudiantiles. Lo cierto es que he rebuscado un poco entre la magnífica y mutante KDE Store y he encontrado una pequeña joya que me ha encantado.
Se trata de Kbeat, un pequeño plasmoide creado por el prolífico Adhe y que proporciona una serie de sonidos realajantes para utilizar de fondo al utilizar el ordenador. Su funcionamiento es muy sencillo, simplemente se selecciona el sonido (un bosque, el mar, una tormenta, una fogata, etc) y éste entra en bucle, proporcionando un ambiente especial a tus horas de trabajo. Evidentemente puedes pararlo y se integra en cualquier barra de tareas.

Y como siempre digo, si os gusta el plasmoide podéis “pagarlo” de muchas formas en la nueva página de KDE Store, que estoy seguro que el desarrollador lo agradecerá: puntúale positivamente, hazle un comentario en la página o realiza una donación. Ayudar al desarrollo del Software Libre también se hace simplemente dando las gracias, ayuda mucho más de lo que os podéis imaginar, recordad la campaña I love Free Software Day de la Free Software Foundation donde se nos recordaba esta forma tan sencilla de colaborar con el gran proyecto del Software Libre y que en el blog dedicamos un artículo.
Más información: KDE Store
¿Qué son los plasmoides?
Para los no iniciados en el blog, quizás la palabra plasmoide le suene un poco rara pero no es mas que el nombre que reciben los widgets para el escritorio Plasma de KDE.
En otras palabras, los plasmoides no son más que pequeñas aplicaciones que puestas sobre el escritorio o sobre una de las barras de tareas del mismo aumentan las funcionalidades del mismo o simplemente lo decoran.
openSUSE Tumbleweed – Review of the week 2020/11 & 12
Dear Tumbleweed users and hackers,
Last week I missed, for personal reasons, to write up the report. So, slacking in one week means I have to catch up the other week. Of course, you are all eager to hear/read what is happening in Tumbleweed. In the period since covered, we have released 7 Snapshots (0305, 0306, 0307, 0309, 0311, 0312 and 0314). The major changes were:
- Linux kernel 5.5.7
- Python 3.8.2, with a lot of python modules being updated
- Mesa 20.0.1
- KDE Applications 19.12.3
- KDE Plasma 5.18.3
Thins currently being staged or close to be shipped:
- RPM: change of database format to ndb
- Linux kernel 5.5.10
- Qt 5.15.0 (currently betas being tested)
- Ruby 2.7 – possibly paired with the removal of Ruby 2.6
- GCC 10 as the default compiler
- Removal of Python 2
- GNU Make 4.3
Crea tu blog o web con un simple script de bash
Bashblog es un simple script escrito en bash que nos permite crear nuestro blog o web en nuestro servidor de una manera sencilla, simple y sin dependencias extras
Ahora están muy de moda los generadores de sitio estáticos como Jekyll, Pelican, Hugo y muchos otros que existen para crear sitios web estáticos, frente a los dinámicos que requieren más funcionalidades.
Esos generadores de sitios web, están escrito en lenguajes como Ruby y otros y requieren de ciertas dependencias a la hora de crear nuestros sitios en un servidor propio.
Frente a esas opciones hoy quiero hablaros sobre la herramienta bashblog, un script escrito en Bash creado por Carlos Fenollosa, que sirve para crear nuestro propio blog.
La idea es ejecutarlo en una carpeta pública de nuestro servidor, y ejecutarlo. Este script nos permite crear los artículos en nuestro editor favorito y al guardarlos, creará todo lo necesario para generar el archivo index.html en nuestro servido y generar así nuestro blog.
Lo podemos adaptar fácilmente a nuestras especificaciones, como: nuestro nombre, nombre del blog, descripción, url, formas de contacto, etc.
Y nos genera el archivo css, que podemos editar para adaptarlo a nuestros gustos, nos genera un feed, al que se pueden suscribir nuestros lectores, soporta etiquetado de artículos, etc.
En el siguiente video tutorial alojado en archive.org en formato .webm lo puedes ver en funcionamiento y ver lo sencillo y completo que es el script.
También está disponible en YouTube para quien prefiera esta plataforma:
https://www.youtube.com/watch?v=7Gh6Rt1NKFQ
¿Quizás es la herramienta que estabas buscando para crear tu pequeña web o blog personal?
Highlights of YaST Development Sprint 95
Contents
Due to recent events, many companies all over the world are switching to a remote working model, and SUSE is not an exception. The YaST team is distributed so, for many members, it is not a big deal because they are already used to work in this way. For other folks it might be harder. Fortunately, SUSE is fully supporting us in this endeavor, so the YaST team has been able to deliver quite some stuff during this sprint, and we will keep doing our best in the weeks to come.
Before jumping into what the team has recently done, we would also like to bring your attention to the migration of our blog from the good old openSUSE Lizards blog platform to the YaST website. So, please, if you use some feeds reader, update the YaST blog URL to the new one.
Now, as promised, let’s talk only about software development. These days we are mainly focused on fixing bugs to make the upcoming (open)SUSE releases shine. However, we still have time to introduce some important improvements. Among all the changes, we will have a look at the following ones:
- New possibilities for pervasive encryption.
- Improvements in the mechanism to install missing packages during storage system analysis.
- Better handling of some conflicting attributes in AutoYaST.
- Several usability improvements in the iSCSI LIO Server module.
Expanding the Possibilities of Pervasive Encryption
Some months ago, in this dedicated blog post, we introduced the joys and benefits of the so-called pervasive encryption available for s390 mainframes equipped with a Crypto Express cryptographic coprocessor. As you may remember (and you can always revisit the post if you don’t), those dedicated pieces of hardware ensure the information at-rest in any storage device can only be read in the very same system where that information was encrypted.
But, what is better than a cryptographic coprocessor? Several cryptographic coprocessors! An s390 logical partition (LPAR) can have access to multiple crypto express adapters, and several systems can share every adapter. To configure all that, the concept of cryptographic domains is used. Each domain is protected by a master key, thus preventing access across domains and effectively separating the contained keys.
Now YaST detects when it’s encrypting a device in a system with several cryptographic domains. If that’s the case, the dialog for pervasive encryption allows specifying which adapters and domains must be used to generate the new secure key.
To succeed, all the used adapters/domains must be set with the same master key. If that’s not the case, YaST detects the circumstance and displays the corresponding information.
Install Missing Packages during Storage System Analysis
As our reader surely knows, YaST always ensures the presence of all the needed utilities when performing any operation in the storage devices, like formatting and/or encrypting them. If some necessary tool is missing in the system, YaST has always shown the following dialog to alert the user and to allow to install the missing packages with a single click.
But the presence of those tools was only checked at the end of the process, when
YaST needed them to modify the devices. For example, in the screenshot above,
YaST asked for btrfsprogs & friends because it wanted to format a new
partition with that file system.
If the needed utility was already missing during the initial phase in which the storage devices are analyzed, the user had no chance to install the corresponding package. For example, if a USB stick formatted with Btrfs would have been inserted, the user would get an error like this when executing the YaST Partitioner or when opening the corresponding YaST module to configure the bootloader.
Now that intimidating error is replaced by this new pop-up that allows to install the missing packages and restart the hardware probing. As usual, with YaST, expert users can ignore the warning and continue the process if they understand the consequences outlined in the new pop-up window.
We took the opportunity to fix other small details in the area, like better reporting when the YaST Partitioner fails to install some package, a more up-to-date list of possibly relevant packages per technology, and improvements in the source code organization and the automated tests.
Reporting Conflicting Storage Attributes in AutoYaST Profiles
If you are an AutoYaST user, you undoubtely know that it is often too quiet and offers little information about inconsistencies or potential problems in the profile. For simple sections, it is not a problem at all, but for complicated stuff, like partitioning, it is far from ideal.
In (open)SUSE 15 and later versions, and given that we had to reimplement the partitioning support using the new storage layer, we decided to add a mechanism to report some of those issues like missing attributes or invalid values. There is a high chance that, using an old profile in newer AutoYaST versions, you have seen some of those warnings.
Recently, a user reported a problem that caused AutoYaST to
crash. While debugging the problem, we found both raid_name and lvm_group
attributes defined in one of the partition sections. Obviously, they are
mutually exclusive, but it is quite easy to overlook this situation. Not to
mention that AutoYaST should not crash.
From now on, if AutoYaST detects such an inconsistency, it will automatically select one of the specified attributes, informing the user about the decision. You can see an example in the screenshot below.
For the time being, this check only applies to those attributes which determine
how a device is going to be used (mount, raid_name, lvm_name,
btrfs_name, bcache_backing_for, and bcache_caching_for), but we would like
to extend this check in the future.
Usability Improvements in iSCSI-LIO-server Module
Recently, one of our developers detected several usability problems in the iSCSI LIO Server module, and he summarized them in a bug report. Apart from minor things, like some truncated and misaligned texts, he reported the UI to be quite confusing: it is not clear when authentication credentials are needed, and some labels are misleading. To add insult to injury, we found a potential crash when clicking the Edit button while we were addressing those issues.
As usual, a image is worth a thousand words. Below you can see how the old and confusing UI looked like.
Now, let’s compare it with the new one, which is better organized and more approachable. Isn’t it?
Conclusion
It is possible that, during the upcoming weeks, we need to make some further adjustments to our workflow, especially when it comes to video meetings. But, at this point, everything is working quite well, and we are pretty sure that we will keep delivering at a good pace.
So, take care, and stay tuned!
Menu Z, nuevo lanzador de aplicaciones – Plasmoides de KDE (136)
Y más lanzadores de aplicaciones. Buscar y ejecutar los programas en el entorno de trabajo Plasma de la Comunidad KDE es altamente personalizable. Hoy os presento Menu Z, otro lanzador de aplicaciones que simula el lanzador de Windows 10.
Menu Z, nuevo lanzador de aplicaciones – Plasmoides de KDE (136)
Seguimos con las posibilidades de personalización de Plasma 5 en cuanto a lanzadores de aplicaciones. Al lanzador tradicional, a su versión reducida, al lanzador de aplicaciones a pantalla completa y a Tiled Menu, el clon del menú de Windows, se les han unido poco a poco otros lanzadores como UMenu, Minimal Menu, Simple Menu o Ditto Menu.
A todos los anteriores, y muchos más que hay en la Store, se les une Menu Z, un lanzador de aplicaciones que simula el de Windows 10, con lo que es ideal para transformaciones extremas del escritorio. Se trata de una creación de Adhe, un desarrollador que le ha cogido el gusto a hacer este tipo de contribuciones.

Y como siempre digo, si os gusta el plasmoide podéis “pagarlo” de muchas formas en la nueva página de KDE Store, que estoy seguro que el desarrollador lo agradecerá: puntúale positivamente, hazle un comentario en la página o realiza una donación. Ayudar al desarrollo del Software Libre también se hace simplemente dando las gracias, ayuda mucho más de lo que os podéis imaginar, recordad la campaña I love Free Software Day de la Free Software Foundation donde se nos recordaba esta forma tan sencilla de colaborar con el gran proyecto del Software Libre y que en el blog dedicamos un artículo.
Más información: KDE Store
¿Qué son los plasmoides?
Para los no iniciados en el blog, quizás la palabra plasmoide le suene un poco rara pero no es mas que el nombre que reciben los widgets para el escritorio Plasma de KDE.
En otras palabras, los plasmoides no son más que pequeñas aplicaciones que puestas sobre el escritorio o sobre una de las barras de tareas del mismo aumentan las funcionalidades del mismo o simplemente lo decoran.
Entrevista a un periodista que utiliza el editor #Vim en su trabajo
Entrevista en exclusiva al periodista Manuel Ligero y de cómo ha empezado a utilizar el editor Vim como herramienta a la hora de escribir sus artículos

Lo que más me fascina del blog (o una de las cosas que más me fascina) es la interacción con las personas que estáis al otro lado del cable “de internet” y leéis los artículos, ya sea de manera ocasional o de manera habitual.
Esa interacción, ese “feedback” siempre es interesante por lo inesperado y por lo enriquecedor del proceso “solitario” de escribir en un pequeño blog personal como este. Y en ocasiones surgen situaciones curiosas, como esta que hoy traigo hasta el blog.
Como sabéis desde hace tiempo, escribo en el blog mi propia experiencia adentrándome como neófito total en el uso del editor Vim. Han sido varios los artículos que has podido leer sobre Vim y espero que sean más, ya que siempre se descubren cosas interesantes de este editor de texto que no me resisto a compartirlas en el blog.
Cuando uno escribe, después no sabe “la vida” que tienen los artículos una vez que le das al botón publicar. Conozco las visitas que tienen, pero no la “historia” que hay detrás de cada una de esas visitas.
Hasta que de manera casual llegas a conocer una de esas historias detrás del artículo publicado. Como ha sido recientemente, en el que por Mastodon el usuario Manuel Ligero, me escribió y entre otras cosas “me echaba la culpa” de que por culpa de mi blog había empezado a utilizar el editor Vim como herramienta de trabajo.
He de decir, que un poco orgulloso sí me sentí, al conocer de primera mano que las letras que junto tienen significado y “mueven cosas” en las cabezas de quien las interpreta.
Pensé que quizás Manuel era programador o algo así, pero mi sorpresa fue cuando me dijo que era periodista “freelance”. ¡Vaya! Un periodista que utiliza Vim como editor de sus textos, dejando de lado otras opciones quizás más mayoritarias en su profesión, eso sí que era una sorpresa…
Me apetecía conocer un poco más en detalle del hecho, así que le pregunté si podía hacerle algunas preguntas para publicarlas en exlusiva en el blog y dar a conocer que Vim no solo es para “geeks” friki programadores.
Desde ya, le doy las gracias por haber aceptado la invitación y aquí puedes leer las preguntas que le hice y las respuestas que me dió.

Vhck: Hola Manuel, primero para poner el contexto ¿puedes decirnos de qué trabajas?
Manuel: Soy periodista, efectivamente. Escribo en la revista La Marea sobre cine y libros, fundamentalmente. Soy freelance y tengo que compatibilizar eso con otros trabajos, pero ese es mi favorito. Me siento muy afortunado porque me encanta lo que hago.
Vhck: Vamos al meollo de la cuestión. Me comentaste que has empezado a utilizar Vim como editor de texto, la herramienta principal de un escritor. ¿Hace cuanto que llevas usando Vim? ¿Qué te impulsó a dar ese cambio?
Manuel: Todos los humanos necesitamos cambiar nuestros hábitos de vez en cuando. Y los escritores y los periodistas… ¡también somos humanos! A veces no lo parece, pero sí.
Cambias de cuadernos, cambias de bolígrafos y, claro, también cambias de procesador de textos. En todos los casos, el cambio produce siempre un cosquilleo especial. Lo haces simplemente por probar. Unos te gustan y otros los desechas a la primera.
Yo llevo usando Vim desde hace un mes, aproximadamente. Y me encanta porque me centra. Me ayuda a no distraerme.
Vhck: Se habla mucho de la curva de aprendizaje de Vim para los recién llegados ¿Cómo fue tu caso y qué diferencias notas con el paso del tiempo y de uso de Vim?
Manuel: Al principio puede parecer un poco complicado, pero tampoco lo es tanto. No hay que ser un genio. Sólo tienes que aprender tres o cuatro comandos básicos (i, :A, :w, :q) y luego escribir, que es lo importante.
Los programadores usab una expresión “picar código” que también usamos los periodistas. Nosotros “picamos una entrevista”. Cada uno tiene su propio método pero muchos la “picamos” en bruto antes de editarla. Y para eso eso no necesitas cien mil tipos de letra. Sólo sentarte y empezar a picar.

Vhck: ¿Qué herramientas utilizabas antes y qué mejoras te aporta el uso del editor Vim respecto de esas herramientas?
Manuel: Antes usaba LibreOffice, pero ahora sólo lo hago para el volcado final del texto. Avanzo mucho más rápido con Vim, guardando el documento como “texto simple”.
Luego, ya, lo pongo bonito: cursivas, negritas, hiperenlaces, todo eso. Seguro que todo eso se puede hacer también con Vim, pero yo aún no sé. Quizás le esté dando un uso demasiado primario a la herramienta, pero a mí me vale. Avanzo más rápido. Eso es lo que me aporta: funcionalidad, concentración.
Vhck: ¿Has tenido alguna “incompatibilidad” al presentar textos escritos y editados con Vim en tu trabajo?
Manuel: No, porque como te digo, luego convierto ese texto a Formato de Texto Enriquecido, que creo que es el que menos problemas da para usarlo entre diferentes sistemas operativos. ¡Aunque corrígeme si me equivoco!
Vhck: En el tiempo que llevas de uso ¿Cual es la funcionalidad o plugin de Vim sin el que ahora y para tu trabajo ya no podrías dejar de utilizar (si es que hay alguno)?
Manuel: Creo que es demasiado pronto para contestar a eso. No soy un experto ni mucho menos. En principio, lo que me gusta de Vim es su simplicidad. Como estamos sometidos a tantos estímulos, yo agradezco mucho eso, la simplicidad, para no distraerme.
Para esto me gusta mucho Typora, también. No estoy diciendo que los Words de toda la vida están mal. Al contrario, tienen un montón de funcionalidades y eso está genial. Pero si lo que quieres es escribir, te vale con una hoja y un boli. O con Vim.
Vhck: ¿Aconsejarías el uso del editor Vim a otros periodistas o escritores? ¿En qué casos crees que Vim podría facilitarles su trabajo?
Manuel: El procesador de texto es algo muy personal. Comprendo que haya mucha gente a la que le espante escribir a pelo en un terminal. A mí no. A mí me hace avanzar mucho más rápido.
Así que si a algún compañero o compañera le pasa lo mismo, pues que lo pruebe. Por probar no pasa nada. Lo mismo le ocurre como a mí y se engancha.
Vhck: La última palabra es tuya para que comentes lo que desees…
Manuel: Pues, sin querer dar la chapa, me gustaría que la gente entendiera la importancia que tiene el software libre y que aprendiera algo más de Linux, en cualquiera de sus versiones. Creo que Linux es una oportunidad extraordinaria para frenar la obsolescencia programada.
Hay mucha gente que tiene viejos equipos arrumbados porque no ha probado a quitarles el sistema operativo original y ponerles un Linux. Creen que es difícil, pero no lo es. Ya no.
Se llevarán una sorpresa, su bolsillo lo agradecerá (porque no necesitan comprar otro ordenador, aunque sí deberían hacer una pequeña aportación a los desarrolladores) y el medio ambiente también. No sólo lo agradecerá: es que lo necesita.

Muchas gracias a Manuel por su tiempo y haber accedido a responder a estas preguntas en exclusiva para el blog. ¿os ha parecido interesante? usad los comentarios del blog para opinar.
Espero que sirvan de “inspiración” o ejemplo para otros profesionales y como botón de muestra que hay herramientas libres que vale la pena descubrir.

Entrevista a Álex Fiestas, Albert Astals y Aleix Pol en Akademy-es 2019
En estos días que vamos a pasar mucho tiempo en casa, he pensado en rescatar y compartir un la entrevista a Álex Fiestas, Albert Astals y Aleix Pol que se realizó en Akademy-es 2019. Una tertulia informal pero interesante donde cuatro grandes desarrolladores de la Comunidad KDE pasan un rato entretenido hablando sobre diversos temas.
Entrevista a Álex Fiestas, Albert Astals y Aleix Pol en Akademy-es 2019
En una terraza de Vigo, cerca del tráfico, varios integrantes de la Comunidad KDE decidieron finalizar su Akademy-es 2019 de Vigo organizada por KDE España con una charla distendida.
El objetivo es mostrar el lado más humano de una Comunidad que se define como «personas haciendo software para personas», así que, entre sorbo de cortado y sonido ensordecedor del tráfico Álex Fiestas (CTO de Mister Fantasy), Albert Astals Cid (ex-presidente de KDE España) y Aleix Pol ( ex-presidente de KDE España y actual presidente de KDE e.V.) fueron entrevistados por José Millán (tesorero de KDE España) que les hizo hablar de su opinión de Akademy-es, las actividades de Barcelona Free Software (BFS), de las formas de atraer colaboradores al proyecto KDE, etc.

Hay que destacar que aunque hay mucho ruido de fondo, se puede entender casi todo lo que se dice, no obstante, fruto de la colaboración de algunos participantes del grupo de Telegram KDE – Cañas y Bravas, se ha realizado los subtítulos al castellano para esta entrevista.
Punto y aparte merece este hecho ya que esperamos que sea la primera de muchas colaboraciones del grupo auxiliar que se ha creado para ayudar al grupo de Comunicación de KDE España. Y es que tenemos mucho material pero poco tiempo para darle forma útil para la Comunidad y de forma desinteresada varias personas, no necesariamente técnicas, se han ofrecido para colaborar. Muchas gracias a ellas.
Y si estás interesado no dudéis en comentarlo en el grupo de Telegram de Cañas y Bravas y os añadimos al grupo de colaboración.
Ahora es el momento de ver la entrevista a Álex Fiestas, Albert Astals y Aleix Pol en Akademy-es 2019








