Claro - Perú
[1] https://cuenta.claro.com.pe/DirectorioAbonadosMovil/servlet/directorioAbonados
Software Developer, Programming, Web resources and entertaiment. Desarrollo de software, programación, recursos web y entretenimiento.
Claro - Perú
[1] https://cuenta.claro.com.pe/DirectorioAbonadosMovil/servlet/directorioAbonados
sudo apt update && sudo apt install qemu-system-x86
# Create a 1GB disk image
qemu-img create -f qcow2 win95.qcow2 1G
qemu-img create -f qcow2 win95.qcow2 500M #500MB
# Run
qemu-system-i386 -m 64 -cpu pentium \ -drive file=win95.qcow2,format=qcow2 \ -net nic,model=pcnet -net user \ -soundhw sb16 \ -vga cirrus \ -cdrom /path/to/windows95.iso \ -boot d
#My command
$ qemu-system-i386 -m 64 -cpu pentium -drive file=win95.qcow2,format=qcow2,index=0,media=disk -drive file=./isos/W95_FULL_AR.iso,index=1,media=cdrom -fda ./isos/Windows95a.img -boot c -vga cirrus
Resources:
https://archive.org/ #Locate isos
code in python for flip horizontal images:
from PIL import Image
import os
import sys
def flip_horizontal(input_path):
# Split filename and extension
base, ext = os.path.splitext(input_path)
# Create output filename
output_path = f"{base}_flipped{ext}"
# Open image
with Image.open(input_path) as img:
# Flip horizontally
flipped = img.transpose(Image.FLIP_LEFT_RIGHT)
# Save result
flipped.save(output_path)
return output_path
# Example usage
if __name__ == "__main__":
if len(sys.argv) < 2:
print("No input files provided.")
sys.exit(1)
for input_image in sys.argv[1:]:
try:
output_image = flip_horizontal(input_image)
print(f"Saved: {output_image}")
except Exception as e:
print(f"Error processing {input_image}: {e}")
Mobile development is the process of creating software applications for smartphones, tablets, and other mobile devices, primarily focusing on the Android and iOS platforms.
[1] https://flutter.dev/development/mobile #framework/compiler for make apk
[2] https://dartpad.dev/ #preview code
Step by step https://cgian.com/category/blender/
https://docs.google.com/presentation/d/1R9SXecAUshzz8HeN6VCLPUHpUJVBhTcMfQr0WIyszx4/edit?usp=sharing
about:config
privacy.webrtc.legacyGlobalIndicator
set to false (+add if not exist)
privacy.webrtc.hideGlobalIndicator
set to true (+add if not exist)
pip install notebook
jupyter notebook
pip install jupyterlab
jupyter lab
pip install voila
voila
Upgrade to nodejs 20/22
References:
[1] https://jupyter.org/install
Kazam in ubuntu 20 does not show box when you choose area for screen capture
sudo add-apt-repository ppa:sylvain-pineau/kazam
sudo apt update
sudo apt install kazam
$ kazam --version #works
kazam 1.5.3 'NX-72307'
Online tools
[1] work in private space (20c/day) https://ezremove.ai/
[2] Good for small images https://www.remove.bg/upload
[2] Average https://removal.ai/upload/
[3] Average https://snapbg.ai/upload
[1] https://qgis.org/resources/installation-guide/#debian--ubuntu
Shapefiles
[1] Perú https://www.geogpsperu.com/2014/03/base-de-datos-peru-shapefile-shp-minam.html
LM Studio [2]
chmod +x LM-Studio-*.AppImage
./LM-Studio-*.AppImage
Ollama on TUI
curl -fsSL https://ollama.com/install.sh | sh
ollama --version
ollama run qwen2.5-coder:1.5b
Resources:
[1] Opencode https://opencode.ai/download
[2] LM Studio AppImage https://lmstudio.ai/
Automate Horizontal flip by command line single and secure
First:
#!/bin/bash
for f in "$@"; do
# Extract path, filename, and extension
DIR="$(dirname "$f")"
FILE="$(basename "$f")"
NAME="${FILE%.*}"
EXT="${FILE##*.}"
OUTPUT="$DIR/${NAME}_flipped.$EXT"
gimp -i -b "(let* (
(image (car (gimp-file-load RUN-NONINTERACTIVE \"$f\" \"$f\")))
(drawable (car (gimp-image-get-active-layer image)))
)
(gimp-item-transform-flip-simple drawable ORIENTATION-HORIZONTAL TRUE 0)
(gimp-file-save RUN-NONINTERACTIVE image drawable \"$OUTPUT\" \"$OUTPUT\")
(gimp-quit 0)
)"
done
Second:
#!/bin/bash
for f in "$@"; do
DIR="$(dirname "$f")"
FILE="$(basename "$f")"
NAME="${FILE%.*}"
EXT="${FILE##*.}"
OUTPUT="$DIR/${NAME}_flipped.$EXT"
TMP="$(mktemp --suffix=".$EXT")"
# Run GIMP flip
gimp -i -b "(let* (
(image (car (gimp-file-load RUN-NONINTERACTIVE \"$f\" \"$f\")))
(drawable (car (gimp-image-get-active-layer image)))
)
(gimp-item-transform-flip-simple drawable ORIENTATION-HORIZONTAL TRUE 0)
(gimp-file-save RUN-NONINTERACTIVE image drawable \"$TMP\" \"$TMP\")
(gimp-quit 0)
)" >/dev/null 2>&1
# Check result
if [ $? -eq 0 ] && [ -s "$TMP" ]; then
mv "$TMP" "$OUTPUT"
echo "✔ Flipped: $OUTPUT"
else
echo "✖ ERROR flipping $f"
rm -f "$TMP"
fi
done
[1] https://typst.app/pricing/
[2] https://app.inscrive.io
[3] Using LLM https://prism.openai.com
References:
[1] https://inscrive.io/articles/overleaf-alternatives
Nubefact
[1] https://www.operador.pe/registro
[2] https://probar-xml.nubefact.com/
[3] xml examples https://drive.google.com/uc?id=1F5Tk3Wo23bNHcskf7PuPEjyZeU8q3Kwk&export=download&authuser=0
A minimal and customizable Docker image running the Android emulator as a service.
https://github.com/HQarroum/docker-android
[1] Crime Index https://www.numbeo.com/crime/rankings.jsp [2] Traffic Index https://www.numbeo.com/traffic/rankings_by_country.jsp