Compare commits

...

13 Commits

@ -5,6 +5,7 @@
[[main]]
identifier = "posts"
parent = ""
# you can add extra information before the name (HTML format is supported), such as icons
pre = ""
# you can add extra information after the name (HTML format is supported), such as icons

@ -38,6 +38,7 @@ math:
* [Salmorejo Geek](https://salmorejogeek.com/)
* [uGeek](https://ugeek.github.io/)
* [Victorhck in the free world](https://victorhckinthefreeworld.com/)
* [oncekmporsegundo](https://oncekmporsegundo.marinho.com.es/)
### Books

File diff suppressed because it is too large Load Diff

@ -12,7 +12,7 @@ tags:
- olympus
---
## Olympus
## Olympus OM-D E-M10 Mark II
{{< admonition type=note title="Work In Progress" open=true >}}
@ -21,6 +21,49 @@ PENDIENTE DE COMPLETAR
{{< /admonition >}}
### Configuración Básica de Olympus OM-D E-M10 Mark II ###
#### Calidad de imagen ####
1. `Detailed Camera Options ➡ Menu G ➡ Set` Establecer la opción 2 (que es la opción por defecto) a `L-SF`
2. Dentro del menú `Preliminary Options (📷 1)`
- En la opción `Picture Mode` Escoger `Natural`
- En la opción de calidad para foto establecemos `LSF + RAW`
- Opción `Image Aspect` a `4:3` (el resto de formatos hacen *crop* sobre este formato)
- Opción `Digital Teleconverter` a `OFF`
#### Varios ajustes ####
1. `Detailed Camara Options ⚙ ⟶ AF/MF`
- `Set Home` medición puntual y central
- `Face Priority` en `off`
- `AF Targeting Path` en `on`
### Larga Exposición
Tres modos:
`Bulb`
: Mientras mantenemos el disparador pulsado se toma la foto, la pantalla permanece en negro.
`Live Bulb`
: Mientras mantenemos el disparador pulsado se toma la foto
La pantalla se actuliza cierto número de veces dependiendo del valor del ISO fijado para la toma. Podemos escojer cuantos segundos pasan entre cada actualización en el menú `Live Bulb`.
`Live Time`
: Al pulsar el disparador empieza la toma, pero no es necesario mantener pulsado.
: Por lo demás se comporta igual que el modo `Live Bulb`
- Set `Manual Mode`
- Apagar la estabilización (vamos a usar un trípode de todas formas)
- `Shutter Speed` la ponemos en `Anti-Shock`
- Para entrar en `Bulb Mode` solo tenemos que darle al dial de `Shutter Speed`
## Cianotipia

@ -493,6 +493,26 @@ desde la opción `System Core::sys::` tenemos que asegurarnos de que:
{{< /admonition >}}
### Conexionado del ST-Link V2
El _pinout_ del ST-Link V2 clónico es:
{{< figure src="/images/microproc/Pinout_ST_Link_V2.webp"
title="ST-Link V2: Pinout"
width=300 >}}
Las conexiones que debemos hacer para programar nuestro microprocesador son:
| ST-Link | STM-32 micro |
|:--------:|:------------:|
| GND | GND |
| SWCLK | CLK |
| SWDIO | DIO |
| 3.3 v | 3.3 v |
### Programando un Blink
Configuramos el pin 13 (corresponde al pin de usuario) como `output` no le ponemos nada a mayores. Si optamos por ponerle una etiqueta, p. ej. `LEDUSER` podemos hacer referencia a la etiqueta en el código.
@ -563,12 +583,6 @@ Si cargamos el programa y conectamos la _Blue Pill_ al usb de nuestro ordenador
cat /dev/ttyACM0
```
## PlatformIO
### Instalando el Espressif SDK

@ -16,6 +16,8 @@ tags:
Estas notas no están completas. ¡No son válidas!
https://dev.to/voyeg3r/termux-useful-tweaks-3mjl
{{< /admonition >}}
@ -30,6 +32,8 @@ Estas notas no están completas. ¡No son válidas!
- Puedes ver `apt list --upgradeable`
- Y actualizar con `pkg upgrade`
### Backup
### Revisar
- `termux-change-repo`

@ -12,6 +12,10 @@ tags:
- FixIt
---
## Referencias
- [Documentación de FixIt](https://fixit.lruihao.cn/categories/documentation/)
## Intro
Estos son los apuntes que he tomado cambiándo a la última versión del tema [_FixIt_](https://fixit.lruihao.cn/).

File diff suppressed because it is too large Load Diff

@ -48,7 +48,7 @@ Una aplicación de inventario que llamaremos _Cornucopia_.
### Clonando py4web desde github
1. Como de costumbre creamos un entorno virtual para trabajar. Con un entorno virtual independiente podremos instalar todas las bibliotecas python que queramos sin interferir con el *python del sistema*.
Personalmente uso `pyenv` para gestionar los entornos virtuales en mi sistema por que me permite usar cualquier versión de Python. (Echa un ojo a los [apuntes de python]({{< relref "notes_python" >}} "apuntes de python") si quieres saber mas de `pyenv`)
Personalmente uso `pyenv` para gestionar los entornos virtuales en mi sistema por que me permite usar cualquier versión de Python. (Echa un ojo a los apuntes de python en este blog si quieres saber mas de `pyenv`)
```bash
pyenv virtualenv 3.9.7 ve_py4web

@ -267,16 +267,45 @@ git clone --single-branch --branch=emacs-29 http://git.savannah.gnu.org/r/emacs.
cd emacs29
export CC=/usr/bin/gcc-11 && export CXX=/usr/bin/gcc-11
./autogen.sh
./configure --without-compress-install --with-json --with-tree-sitter \
--with-native-compilation=aot --with-rsvg \
--with-xwidgets --with-imagemagick \
./configure --without-compress-install \
--with-tree-sitter \
--with-native-compilation=aot \
--with-xwidgets \
--with-imagemagick \
--prefix=/opt/emacs-29
# Opciones para investigar en el futuro:
# --with-mailutils
# --with-mailutils # rely on GNU Mailutils, so that the --without-pop
# through --with-mailhost options are irrelevant; this
# is the default if GNU Mailutils is installed
# apt install mailutils
# --with-xwidgets ( apt install libwebkit2gtk-4.1-dev)
# --with-imagemagick
# --with-xft
# --with-json # included in emacs 27
# --without-xft
# --without-gif
# --without-png
# --without-jpg
# --without-tiff
# --without-sqlite3 # included in emacs
# --without-compress-install # dont compress some files when installing
# --with-x-toolkit=[yes | no | gtk | gtk2 | gtk3 | lucid | athena | motif] # gtk2 for Mate, gtk3 for Cinnamon
# --with-imagemagick # compile with imagemagick image support
# --with-tree-sitter # compile with tree-sitter support
# --with-
./configure --without-compress-install \
--with-tree-sitter \
--with-native-compilation=aot \
--with-xwidgets \
--with-xtoolkit=gtk2 \
--with-imagemagick \
--prefix=/opt/emacs-30
# Compilamos con los nucleos que queramos (yo le dedico cuatro)
# Si no tienes prisa, con la opción bootstrap haces un 'clean' y

@ -21,3 +21,10 @@ tags:
- [StoryMaps](https://storymap.knightlab.com/) Mapas con _javascript_
- [JessyInk en Linux Journal](https://www.linux-magazine.com/Issues/2021/242/Create-appealing-presentations-with-Inkscape-and-JessyInk) Esta serie de tres artículos parece que es la mejor documentación del plugin JessyInk para Inkscape
- [JessyInk cutroom](https://jessyink-cutroom.glitch.me/) Para editar presentaciones hechas con JessyInk (no lo probé)
## Reveal.js
### Con Pandoc
### Con org-mode

@ -0,0 +1,2 @@
/zh-cn/* /zh-cn/404.html 404
/fr/* /fr/404.html 404

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#2d89ef</TileColor>
</tile>
</msapplication>
</browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

@ -0,0 +1,393 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="210mm"
height="297mm"
viewBox="0 0 210 297"
version="1.1"
id="svg8"
sodipodi:docname="logo.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2"
inkscape:cx="543.8905"
inkscape:cy="594.3007"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
showguides="false"
inkscape:window-width="1920"
inkscape:window-height="1028"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
id="g7600"
transform="translate(39.879428,-98.389836)">
<rect
ry="12.835772"
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.27769774;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4738"
width="78.092072"
height="81.303932"
x="44.648548"
y="198.38626" />
<rect
y="200.03319"
x="46.230427"
height="78.010063"
width="74.928322"
id="rect4740"
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.26644737;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
ry="12.315755" />
<g
id="g7533">
<path
inkscape:connector-curvature="0"
id="path968"
d="m 68.283256,241.64925 c -0.452432,-0.45243 2.834699,-3.26035 3.81679,-3.26035 0.856774,0 0.511224,0.50306 -0.803024,1.16904 -0.706156,0.35783 -1.58832,1.01237 -1.960366,1.45452 -0.71921,0.85473 -0.791664,0.89853 -1.0534,0.63679 z"
style="fill:#ffff00;stroke-width:0.26365218"
sodipodi:nodetypes="ssccs" />
<path
inkscape:connector-curvature="0"
id="path970"
d="m 96.713323,233.98023 c 0.05082,-0.19554 0.447709,-0.60646 0.882244,-0.91316 1.226628,-0.86581 2.755633,-2.88984 3.256033,-4.31019 0.2906,-0.82489 0.53372,-1.18644 0.67536,-1.00434 0.39074,0.50229 -0.0577,1.81869 -1.15347,3.38658 -1.502727,2.15003 -3.979459,4.07255 -3.660167,2.84111 z"
style="fill:#ffff00;stroke-width:0.26094529"
sodipodi:nodetypes="cssccc" />
<path
inkscape:connector-curvature="0"
id="path974"
d="m 90.805023,260.62957 c -0.607365,-1.65072 -0.739309,-2.56052 -0.371339,-2.56052 0.46167,0 1.373968,1.81291 1.373968,2.73034 0,0.9835 -0.616712,0.87905 -1.002629,-0.16982 z"
style="fill:#ffff00;stroke-width:0.33784229"
sodipodi:nodetypes="cssc" />
<path
sodipodi:nodetypes="cccccccccsccccc"
style="fill:#ffff00;stroke-width:0.26365218"
d="m 68.684751,264.2855 c 1.314817,-1.3148 3.259518,-1.64484 5.854543,-0.99354 0.277081,0.19209 0.974034,-0.0165 0.556604,-0.44544 -0.782905,-0.44793 -1.494761,-1.00023 -1.581913,-1.22734 -0.29443,-0.76727 -0.161001,-1.4045 0.351519,-1.67879 0.852559,-0.45628 0.924078,-0.21817 1.425126,0.50433 0.627458,0.38744 0.663132,0.26147 1.402541,0.40019 1.241954,0.23299 1.651039,0.49243 1.97074,-0.34314 0.340796,-0.14537 0.359111,-0.5979 0.897938,0.0259 0.735403,0.85144 0.07683,2.08286 -0.166322,2.06626 -0.367961,-0.0251 -0.825714,0.46377 0.04644,0.54694 0.790577,0.0754 0.805116,0.25491 0.87482,0.96919 0.10197,1.04493 -0.08321,1.18757 -2.479204,1.82343 -2.351096,0.5229 -4.521306,1.90245 -6.910234,2.116 -2.700425,0.10037 -3.748702,-2.20987 -2.24263,-3.76402 z"
id="path976"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path980"
d="m 75.968544,258.93029 c 0.224707,-1.12189 1.211651,-3.00312 1.542004,-2.93874 0.248971,0.0485 0.300997,0.31099 0.14169,0.71471 -0.138431,0.35093 -0.414257,1.09227 -0.612846,1.64743 -0.311699,0.87135 -1.22865,1.36509 -1.070848,0.5766 z"
style="fill:#ffff00;stroke-width:0.31875873"
sodipodi:nodetypes="csccc" />
<path
sodipodi:nodetypes="ccscccsssccccccc"
style="fill:#ffff00;stroke-width:0.26365218"
d="m 96.593546,270.01176 c -0.870057,-0.43613 -2.405335,-1.06402 -3.41175,-1.39533 -1.006396,-0.33131 -2.112021,-0.88458 -2.456923,-1.22948 -0.797912,-0.79791 -0.880071,-1.27807 0.134017,-1.57644 0.313901,-0.30378 0.253843,-0.31621 0.03169,-0.65214 -0.861717,-0.80497 -0.927464,-1.18841 -0.346118,-2.01841 0.505047,-0.72105 0.534254,-0.64321 0.907834,-0.0775 0.314599,0.47637 1.102855,0.42825 2.122773,0.42825 1.348836,0 1.009066,0.24532 1.568361,-0.42546 0.501698,-0.60171 0.005,-0.78595 0.757445,-0.39676 1.38435,0.71587 1.281254,1.69975 -0.281486,2.68626 -1.022529,0.69629 -0.07882,0.5959 0.325291,0.45725 2.239211,-0.78014 5.19831,-5e-4 6.67967,1.76005 1.89902,2.25686 0.87629,3.63665 -2.927542,3.29521 -1.081231,-0.1283 -2.261423,-0.43554 -3.10329,-0.85547 z"
id="path982"
inkscape:connector-curvature="0" />
<path
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.19111109;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 85.758743,226.08454 a 11.793307,15.813479 0 0 0 -11.793286,15.81347 11.793307,15.813479 0 0 0 11.793286,15.81346 11.793307,15.813479 0 0 0 11.793288,-15.81346 11.793307,15.813479 0 0 0 -11.793288,-15.81347 z m 0,7.2767 a 3.4254961,8.5367432 0 0 1 3.425422,8.53677 3.4254961,8.5367432 0 0 1 -3.425422,8.53677 3.4254961,8.5367432 0 0 1 -3.425422,-8.53677 3.4254961,8.5367432 0 0 1 3.425422,-8.53677 z"
id="path1000"
inkscape:connector-curvature="0" />
<g
id="g7085"
transform="matrix(0.9964806,0,0,0.9964806,141.80508,2.9956035)"
style="fill:#ffff00">
<path
sodipodi:nodetypes="csscsc"
style="fill:#ffff00;stroke-width:0.29541901"
d="m -43.543526,219.8327 c -0.96866,0.457 -2.5719,0.82272 -3.52652,0.59242 -4.02035,-0.96988 -7.0846,-5.46002 -7.85518,-8.32307 -0.22912,-0.85125 -0.2368,-1.89698 0.56396,-2.75673 -2.65425,1.24986 -0.56723,5.46887 3.18833,9.59543 1.93706,2.12843 6.31709,2.28629 7.62941,0.89195 z"
id="path4746"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path4748"
d="m -46.519146,218.31558 c -0.061,-0.20982 -0.53847,-0.65076 -1.06109,-0.97987 -1.47533,-0.92906 -3.31432,-3.10096 -3.91616,-4.62508 -0.34953,-0.88515 -0.64193,-1.2731 -0.81229,-1.07771 -0.46995,0.53899 0.0694,1.95156 1.38733,3.63399 1.80737,2.3071 4.78625,4.37007 4.40221,3.04867 z"
style="fill:#ffff00;stroke-width:0.29644644"
sodipodi:nodetypes="cssccc" />
<path
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:0.11753502;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -47.121906,205.67778 a 5.6839259,1.906534 43.671623 0 0 1.28529,4.45821 5.6839259,1.906534 43.671623 0 0 5.96816,3.83891 5.6839259,1.906534 43.671623 0 0 -1.28529,-4.45821 5.6839259,1.906534 43.671623 0 0 -5.96816,-3.83891 z m 0.62696,0.60076 a 4.5007092,1.5314044 43.487615 0 1 4.75143,3.03221 4.5007092,1.5314044 43.487615 0 1 0.98556,3.53024 4.5007092,1.5314044 43.487615 0 1 -4.75144,-3.03221 4.5007092,1.5314044 43.487615 0 1 -0.98555,-3.53024 z"
id="path4750"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccccc"
style="fill:#ffff00;stroke-width:0.19324945"
d="m -48.001336,206.59435 c -0.18843,0.53357 -1.0271,1.81527 -1.4588,2.46512 -1.50508,2.14054 -2.53013,2.33498 -2.40344,2.43275 0.3495,0.2697 2.06784,-1.64687 2.89449,-2.83415 1.15788,-1.69306 1.1358,-1.61963 0.96775,-2.06372 z"
id="path4752"
inkscape:connector-curvature="0"
inkscape:transform-center-y="-3.3386084"
inkscape:transform-center-x="0.36001887" />
<path
inkscape:transform-center-x="0.27386223"
inkscape:transform-center-y="3.6277624"
inkscape:connector-curvature="0"
id="path4754"
d="m -45.930946,218.53504 c 0.33756,-0.53207 1.60324,-1.7345 2.2526,-2.3429 2.23685,-1.9877 3.48671,-1.99417 3.3586,-2.12326 -0.35339,-0.3561 -2.79301,1.35097 -4.02409,2.45507 -1.73086,1.57856 -1.68896,1.50459 -1.58711,2.01109 z"
style="fill:#ffff00;stroke-width:0.22024596"
sodipodi:nodetypes="ccccc" />
</g>
<g
style="overflow:visible;fill:#ffff00"
id="g3677"
transform="matrix(0,-0.17122402,-0.16841725,0,181.87495,275.81737)">
<g
id="g3679"
style="fill:#ffff00">
<path
d="m 333.419,476.285 c 0.001,-3.305 5.417,-2.25 1.008,-9.625 -4.607,-7.708 -10.329,-9 -16.375,-9.875"
id="path3681"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<g
id="g3683"
style="fill:#ffff00">
<path
d="m 333.419,476.285 c 0.001,-3.305 5.417,-2.25 1.008,-9.625 -4.607,-7.708 -10.329,-9 -16.375,-9.875"
id="path3685"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 333.93,476.045 c 0.133,-1.746 1.994,-2.265 2.501,-3.816 0.801,-2.451 -0.873,-4.921 -2.121,-6.918 -3.669,-5.869 -9.43,-8.038 -15.967,-9.01 -0.402,-0.06 -1.175,0.878 -0.582,0.967 6.574,0.976 11.755,3.232 15.62,8.879 1.592,2.327 3.387,5.366 0.976,7.653 -0.818,0.776 -1.361,1.581 -1.448,2.724 -0.045,0.579 0.989,-0.071 1.021,-0.479 z"
id="path3687"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g3689"
style="fill:#ffff00">
<path
d="m 330.019,481.285 c 3.149,-1.125 4.24,-1.445 4.408,-6.5 0.195,-5.804 -5.164,-10.25 -9.195,-14.5"
id="path3691"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<g
id="g3693"
style="fill:#ffff00">
<path
d="m 330.019,481.285 c 3.149,-1.125 4.24,-1.445 4.408,-6.5 0.195,-5.804 -5.164,-10.25 -9.195,-14.5"
id="path3695"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 329.844,481.751 c 3.386,-1.213 4.726,-2.571 5.048,-6.257 0.584,-6.678 -5.007,-11.269 -9.195,-15.628 -0.318,-0.331 -1.239,0.514 -0.93,0.836 2.641,2.748 5.44,5.342 7.494,8.58 1.307,2.062 1.727,4.283 1.609,6.69 -0.13,2.668 -1.249,3.976 -3.677,4.845 -0.374,0.135 -1.003,1.169 -0.349,0.934 z"
id="path3697"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g3699"
style="fill:#ffff00">
<path
d="m 287.315,463.91 c 1.864,-0.444 4.021,-2.022 5.925,-3.094 2.306,-1.299 4.764,-2.253 7.245,-3.19 4.003,-1.512 8.045,-2.414 12.404,-1.969 1.915,0.195 4.242,-0.159 6.047,0.598 1.573,0.659 3.208,1.881 4.63,2.808 1.497,0.976 2.553,2.572 3.586,3.969 1.271,1.719 2.61,3.233 3.37,5.261 0.519,1.387 0.91,2.8 1.126,4.25 0.2,1.334 0.935,3.011 0.762,4.368 -0.386,3.047 -0.88,9.5 -4.407,8.5 -0.377,-1.625 0.184,-2.568 0.251,-3.125 -0.755,6 -3.728,8.018 -7.187,9.625 -1.961,0.911 -3.848,0.39 -4.408,-1.875 -0.516,-2.09 0.632,-4.266 1.486,-6.132 1.347,-2.939 2.711,-6.418 0.438,-9.368 -1.054,-1.367 -2.282,-1.803 -4.059,-1.625 -1.745,0.175 -3.014,1.532 -4.677,1.878 1.657,0.915 3.452,1.839 4.52,3.751 0.927,1.661 1.918,3.723 2.2,5.621 0.644,4.322 -2.748,7.913 -6.955,8.507 -2.864,0.403 -3.194,-1.402 -2.745,-3.729 0.412,-2.125 0.199,-3.79 -1.001,-5.652 -2.801,-4.352 -7.378,-1.75 -11.371,-2.53 -1.937,-0.379 -3.675,-0.981 -5.039,-2.497 -0.57,-0.636 -1.662,-4.057 -2.141,-3.848"
id="path3701"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<g
id="g3703"
style="fill:#ffff00">
<path
d="m 287.315,463.91 c 1.864,-0.444 4.021,-2.022 5.925,-3.094 2.306,-1.299 4.764,-2.253 7.245,-3.19 4.003,-1.512 8.045,-2.414 12.404,-1.969 1.915,0.195 4.242,-0.159 6.047,0.598 1.573,0.659 3.208,1.881 4.63,2.808 1.497,0.976 2.553,2.572 3.586,3.969 1.271,1.719 2.61,3.233 3.37,5.261 0.519,1.387 0.91,2.8 1.126,4.25 0.2,1.334 0.935,3.011 0.762,4.368 -0.386,3.047 -0.88,9.5 -4.407,8.5 -0.377,-1.625 0.184,-2.568 0.251,-3.125 -0.755,6 -3.728,8.018 -7.187,9.625 -1.961,0.911 -3.848,0.39 -4.408,-1.875 -0.516,-2.09 0.632,-4.266 1.486,-6.132 1.347,-2.939 2.711,-6.418 0.438,-9.368 -1.054,-1.367 -2.282,-1.803 -4.059,-1.625 -1.745,0.175 -3.014,1.532 -4.677,1.878 1.657,0.915 3.452,1.839 4.52,3.751 0.927,1.661 1.918,3.723 2.2,5.621 0.644,4.322 -2.748,7.913 -6.955,8.507 -2.864,0.403 -3.194,-1.402 -2.745,-3.729 0.412,-2.125 0.199,-3.79 -1.001,-5.652 -2.801,-4.352 -7.378,-1.75 -11.371,-2.53 -1.937,-0.379 -3.675,-0.981 -5.039,-2.497 -0.57,-0.636 -1.662,-4.057 -2.141,-3.848"
id="path3705"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 287.141,464.376 c 1.948,-0.609 3.622,-1.675 5.356,-2.731 3.032,-1.848 6.467,-3.13 9.819,-4.255 2.975,-0.998 6.068,-1.422 9.198,-1.334 1.385,0.039 2.761,0.152 4.148,0.172 2.61,0.036 4.474,1.265 6.563,2.668 4.555,3.06 7.961,8.657 8.917,13.984 0.425,2.365 0.778,4.285 0.451,6.686 -0.149,1.099 -0.375,2.172 -0.691,3.236 -0.191,1.1 -1.019,1.342 -2.482,0.727 0.011,-0.258 0.255,-1.095 0.345,-1.483 -0.341,0.159 -0.681,0.319 -1.021,0.479 -0.672,4.386 -2.668,7.076 -6.629,8.966 -4.898,2.337 -3.952,-4.42 -2.929,-6.755 0.68,-1.553 1.536,-3.106 1.861,-4.789 0.451,-2.337 0.28,-5.679 -2.199,-6.947 -2.996,-1.531 -5.018,0.459 -7.825,1.322 -0.243,0.075 -1.021,0.682 -0.564,0.935 5.017,2.771 9.529,10.253 4.388,15.163 -1.308,1.25 -4.597,2.705 -6.24,1.207 -0.892,-0.813 -0.224,-2.955 -0.075,-3.955 0.305,-2.056 -0.557,-3.935 -1.745,-5.541 -2.141,-2.893 -6.489,-1.719 -9.479,-1.704 -2.778,0.015 -5.853,-1.23 -7.047,-3.834 -0.308,-0.67 -0.727,-2.393 -1.555,-2.649 -0.418,-0.129 -1.228,0.797 -0.779,0.936 0.738,0.229 1.269,2.274 1.579,2.953 0.429,0.933 1.139,1.486 1.969,2.082 2.132,1.528 5.085,1.563 7.573,1.381 4.143,-0.302 7.312,0.507 8.419,5.058 0.329,1.355 -1.345,5.637 0.672,6.513 3.338,1.449 8.075,-1.73 9.33,-4.835 2.206,-5.459 -1.545,-11.121 -6.23,-13.709 -0.188,0.312 -0.376,0.623 -0.564,0.935 2.323,-0.715 4.145,-2.38 6.762,-1.645 4.095,1.151 2.724,6.864 1.63,9.521 -1.139,2.766 -3.881,7.467 -0.116,9.5 1.964,1.061 5.346,-1.288 6.741,-2.491 2.492,-2.15 3.584,-4.885 4.075,-8.094 0.09,-0.585 -0.939,0.122 -1.021,0.479 -0.264,1.146 -0.41,2.046 -0.246,3.225 0.017,0.063 0.055,0.105 0.116,0.129 3.481,0.618 4.435,-3.482 4.898,-6.112 1.187,-6.723 -1.532,-12.558 -5.415,-17.863 -2.008,-2.743 -4.72,-4.649 -7.771,-6.115 -1.238,-0.595 -2.802,-0.521 -4.128,-0.539 -2.107,-0.03 -4.171,-0.236 -6.281,-0.098 -3.269,0.217 -6.41,1.305 -9.446,2.46 -2.122,0.807 -4.185,1.711 -6.184,2.786 -1.939,1.044 -3.665,2.38 -5.797,3.047 -0.386,0.115 -1.021,1.137 -0.351,0.928 z"
id="path3707"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g3709"
style="fill:#ffff00">
<g
id="g3711"
style="fill:#ffff00">
<path
d="m 328.254,482.285 c 10e-4,-2.3 0.975,-5.288 -0.125,-8.875 -1.254,-4.088 -3.365,-6.804 -4.158,-8.034 -0.542,-0.844 -1.36,-1.415 -1.888,-2.216"
id="path3713"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 328.765,482.045 c 0.147,-3.967 0.651,-7.063 -0.818,-10.904 -1.222,-3.191 -3.278,-5.789 -5.398,-8.399 -0.28,-0.345 -1.22,0.479 -0.93,0.836 1.922,2.366 3.608,4.585 4.938,7.364 1.87,3.91 1.341,7.45 1.188,11.582 -0.023,0.587 1.004,-0.07 1.02,-0.479 z"
id="path3715"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
</g>
<rect
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.193583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect6961"
width="4.6540508"
height="1.2319547"
x="172.12032"
y="176.66261"
ry="0.61597735"
transform="rotate(20.286547)" />
<g
style="overflow:visible;fill:#ffff00"
id="g165"
transform="matrix(0.16572327,0,0,0.16300668,-22.133161,241.57411)">
<path
d="m 541.63,19.202 c -2.535,-3.524 -8.473,-6.726 -12.587,-8.1 -2.837,-0.947 -5.534,-1.466 -8.565,-1.469 -2.852,-0.003 -5.824,0.713 -8.521,1.226 -5.194,0.988 -9.868,1.991 -15.15,2.299 -2.584,0.151 -5.407,1.041 -5.544,4.025 -0.068,1.522 0.98,1.799 1.561,3.016 0.555,1.161 0.274,2.515 0.832,3.703 2.068,4.412 8.348,2.237 11.718,0.807 2.064,-0.876 4.034,-1.444 6.206,-1.646 2.404,-0.223 4.271,0.499 6.531,0.537 -0.619,0.719 -2.862,0.778 -3.854,0.974 -1.237,0.244 -2.559,0.544 -3.852,0.803 -2.377,0.476 -5.678,1.44 -5.036,4.737 1.184,6.083 11.04,1.31 14.269,0.877 0.799,-0.107 1.889,-0.286 1.984,0.605 -3.914,2.552 -11.422,5.285 -7.646,11.229 1.42,2.233 3.924,4.532 6.636,2.859 1.515,-0.934 2.373,-3.633 4.403,-4.953 4.771,-3.101 10.545,-4.58 14.973,-8.389 2.117,-1.82 3.486,-3.866 3.656,-6.594 0.151,-2.44 0.617,-5.644 -2.014,-6.714"
id="path167"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<g
id="g169"
style="fill:#ffff00">
<g
id="g171"
style="fill:#ffff00">
<path
d="m 524.674,26.756 c 0.056,2.856 -3.513,4.465 -5.368,6.076 -1.906,1.658 -4.803,2.498 -5.889,4.843 -2.442,5.275 3.738,11.457 8.452,7.122 2.001,-1.839 0.128,-2.617 5.277,-5.191 2.419,-1.209 4.832,-2.36 7.165,-3.69 2.287,-1.303 4.444,-2.493 6.436,-4.248 2.369,-2.088 2.762,-4.473 2.789,-7.551"
id="path173"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 524.163,26.996 c -0.317,3.359 -6.021,6.252 -8.558,7.897 -1.708,1.108 -2.708,2.585 -3.171,4.544 -1.101,4.652 3.859,8.426 8.01,6.743 1.231,-0.5 2.391,-1.674 2.928,-2.89 1.561,-3.54 7.648,-5.146 10.893,-6.954 5.52,-3.074 9.629,-5.778 9.782,-12.458 0.014,-0.59 -1.013,0.07 -1.021,0.479 -0.096,4.157 -1.493,6.561 -5.013,8.966 -2.744,1.875 -5.781,3.357 -8.75,4.836 -2.996,1.493 -5.438,2.564 -6.956,5.577 -1.938,3.85 -6.329,1.738 -8.021,-0.687 -2.838,-4.071 1.32,-7.248 4.438,-9.347 2.519,-1.696 6.146,-3.853 6.461,-7.185 0.054,-0.575 -0.984,0.073 -1.022,0.479 z"
id="path175"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g177"
style="fill:#ffff00">
<g
id="g179"
style="fill:#ffff00">
<path
d="m 521.825,22.958 c -1.418,-0.434 -0.857,-0.472 -7.064,1.616 -2.078,0.699 -5.773,1 -7.781,2.117 -2.089,1.162 -2.322,3.314 -0.559,5.363 1.88,2.185 5.658,0.614 7.678,0.074 6.055,-1.619 6.184,-2.134 7.686,-1.147"
id="path181"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 522.216,22.491 c -2.367,-0.737 -5.097,0.879 -7.28,1.617 -3.323,1.122 -8.021,0.749 -9.938,4.253 -1.867,3.415 2.734,5.708 5.426,5.16 2.376,-0.484 4.72,-1.246 7.045,-1.926 1.383,-0.405 2.62,-0.964 3.926,-0.146 0.35,0.219 1.22,-0.66 0.781,-0.935 -1.092,-0.685 -2,-0.51 -3.205,-0.187 -3.263,0.875 -7.587,3.072 -10.967,2.107 -1.465,-0.418 -2.205,-2.284 -2.236,-3.634 -0.042,-1.84 2.813,-2.361 4.046,-2.669 1.97,-0.493 3.93,-0.806 5.86,-1.458 1.748,-0.59 3.892,-1.831 5.763,-1.248 0.417,0.131 1.226,-0.795 0.779,-0.934 z"
id="path183"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g185"
style="fill:#ffff00">
<g
id="g187"
style="fill:#ffff00">
<path
d="m 505.472,12.037 c -3.882,1.181 -10.3,-0.226 -12.779,1.954 -2.182,1.918 -2.277,5.7 1.544,6.265"
id="path189"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 505.647,11.571 c -2.672,0.705 -5.477,0.502 -8.213,0.648 -1.629,0.086 -3.73,0.314 -4.959,1.531 -2.438,2.413 -2.484,6.156 1.371,6.974 0.43,0.091 1.213,-0.843 0.779,-0.935 -1.479,-0.314 -2.559,-0.941 -2.906,-2.496 -0.688,-3.072 2.938,-3.934 5.133,-4.108 2.828,-0.225 5.674,0.05 8.445,-0.681 0.393,-0.104 1.035,-1.114 0.35,-0.933 z"
id="path191"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g193"
style="fill:#ffff00">
<g
id="g195"
style="fill:#ffff00">
<path
d="m 537.265,15.845 c -1.049,-1.28 -2.834,-1.766 -4.205,-2.681 -1.164,-0.776 -2.027,-1.582 -3.313,-2.056 -2.986,-1.102 -6.211,-1.264 -9.479,-1.474 -5.032,-0.323 -7.606,0.994 -9.94,1.526 -3.138,0.715 -5.277,0.858 -9.495,2.376 -2.243,0.808 -6.184,2.063 -6.548,4.995 -0.365,2.943 3.926,3.673 6.048,3.693 5.696,0.055 10.36,-3.732 16.153,-2.555 2.816,0.572 5.229,3.224 7.35,4.906"
id="path197"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 537.729,15.426 c -1.051,-1.048 -2.256,-1.624 -3.565,-2.303 -2.188,-1.135 -3.587,-2.432 -6.051,-3.09 -3.583,-0.957 -8.024,-1.299 -11.683,-0.77 -3.076,0.445 -6.049,1.479 -9.104,2.076 -3.553,0.693 -7.236,1.724 -10.427,3.477 -1.763,0.968 -3.116,2.524 -3.132,4.593 -0.018,2.372 3.445,3.009 5.164,3.231 3.631,0.47 7.23,-1.077 10.646,-2.05 2.712,-0.772 5.514,-0.99 8.159,0.113 2.129,0.888 3.873,2.841 5.633,4.289 0.365,0.301 1.256,-0.568 0.929,-0.837 -2.115,-1.74 -4.028,-3.655 -6.591,-4.724 -2.684,-1.12 -6.053,-0.267 -8.701,0.488 -3.148,0.897 -6.153,2.025 -9.492,1.755 -1.428,-0.116 -2.844,-0.543 -3.979,-1.431 -2.802,-2.189 1.566,-4.835 3.331,-5.58 5.046,-2.129 10.998,-3.335 16.384,-4.347 3.822,-0.718 8.326,-0.144 12.082,0.652 2.045,0.433 3.569,1.422 5.262,2.613 1.392,0.979 2.972,1.45 4.205,2.682 0.328,0.326 1.244,-0.523 0.93,-0.837 z"
id="path199"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
<g
id="g201"
style="fill:#ffff00">
<g
id="g203"
style="fill:#ffff00">
<path
d="m 517.962,23.474 c -4.969,-2.702 -10.391,0.366 -14.544,2.146 -1.817,0.779 -6.245,1.382 -8.022,0.257 -2.332,-1.474 -2.941,-3.709 -1.846,-5.363"
id="path205"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
<path
d="m 518.353,23.006 c -4.191,-1.953 -8.219,-0.705 -12.258,1.027 -2.309,0.99 -4.287,1.793 -6.836,1.968 -2.909,0.2 -7.072,-2.011 -5.287,-5.491 0.374,-0.729 -0.625,-0.421 -0.844,0.005 -2.053,4 1.953,6.485 5.549,6.452 6.74,-0.062 11.953,-6.261 18.896,-3.027 0.387,0.182 1.232,-0.723 0.78,-0.934 z"
id="path207"
inkscape:connector-curvature="0"
style="fill:#ffff00" />
</g>
</g>
</g>
<rect
transform="rotate(37.16597)"
ry="0.61597735"
y="153.01137"
x="198.64493"
height="1.2319547"
width="4.6540504"
id="rect7043"
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.193583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
style="fill:#ffff00;stroke:none"
id="g7059"
transform="matrix(0.9964806,0,0,0.9964806,-6.3859827,-8.202985)">
<g
style="fill:#ffff00;stroke:none"
id="g7053">
<g
style="fill:#ffff00;stroke:none"
id="g7048">
<path
sodipodi:nodetypes="sssss"
inkscape:connector-curvature="0"
id="path4708"
d="m 70.118795,261.23299 c 0.09354,3.19763 -3.743185,13.22367 -4.437279,13.22367 -0.694094,0 3.49392,-7.70428 3.233358,-12.84949 -0.141148,-2.7872 -1.680211,-4.21839 -0.986115,-4.21839 0.694096,0 2.143034,2.23751 2.190036,3.84421 z"
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<circle
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path7045"
cx="67.617577"
cy="258.25507"
r="0.97565103" />
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

@ -0,0 +1,28 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="560.000000pt" height="560.000000pt" viewBox="0 0 560.000000 560.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,560.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2445 5384 c-117 -28 -184 -56 -287 -122 -144 -93 -268 -261 -281
-380 -4 -39 -26 -71 -50 -72 -4 0 -34 -27 -67 -60 -198 -201 -262 -716 -130
-1061 11 -30 20 -54 20 -55 0 0 -21 -11 -47 -23 -56 -26 -109 -100 -119 -166
-3 -23 -4 -122 -2 -221 3 -195 7 -208 66 -271 17 -17 48 -39 69 -48 58 -25 68
-31 68 -41 3 -38 21 -122 42 -189 90 -286 268 -507 525 -652 l68 -38 0 -182 0
-183 -69 0 c-44 0 -71 4 -73 12 -3 9 -16 9 -54 0 -27 -6 -100 -22 -162 -36
-312 -70 -521 -184 -738 -400 -212 -213 -330 -428 -395 -719 -16 -68 -22 -142
-26 -284 l-5 -193 2001 0 2001 0 0 154 c0 436 -144 777 -453 1072 -200 192
-440 316 -712 369 -49 9 -94 21 -100 25 -17 14 -115 23 -115 11 0 -7 -27 -11
-70 -11 l-70 0 0 184 c0 175 1 185 20 191 79 25 311 218 398 331 100 130 177
318 218 532 3 13 12 25 22 28 40 12 88 41 115 69 59 61 62 74 65 281 2 119 -1
207 -8 232 -17 64 -68 123 -125 146 -28 11 -52 21 -53 22 -2 1 6 15 17 31 24
32 72 168 92 258 8 37 13 131 13 245 1 161 -2 196 -22 270 -30 113 -100 253
-162 322 l-50 56 35 52 c100 149 79 382 -43 478 -82 65 -172 67 -317 8 -197
-80 -279 -82 -550 -11 -163 43 -192 48 -310 50 -87 2 -150 -1 -190 -11z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -0,0 +1,27 @@
{
"name": "comacero: Apuntes personales de Software y Hardware Libre",
"short_name": "comacero",
"start_url": "/",
"description": "Notas personales de sw y hw libres y abiertos",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"icons": [
{
"src": "/apple-touch-icon.png",
"sizes": "180x180",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
Loading…
Cancel
Save