Books
[1] https://probability4datascience.com/index.html
Courses
Software Developer, Programming, Web resources and entertaiment. Desarrollo de software, programación, recursos web y entretenimiento.
Caso Cantuta 90's
[1] https://www.infobae.com/america/peru/2022/07/23/masacre-de-la-cantuta-el-crimen-de-los-estudiantes-a-manos-de-asesinos-encubiertos-en-las-fuerzas-armadas/
[2] https://elpais.com/internacional/2023-05-29/caso-la-cantuta-los-restos-de-las-victimas-que-permanecieron-en-inglaterra-durante-30-anos.html
String search: ipsos Distribución Poblacional 2022
[1] 2010-2025 https://cpi.pe/banco-de-datos/estadisticas-poblacionales/
Air quality
[1] Map https://www.iqair.com/es/air-quality-map
[2] https://www.senamhi.gob.pe/?p=calidad-del-aire-pronostico
[3] Air and others https://sinia.minam.gob.pe/portal/estadisticas-del-sector-ambiente/?marcoOrdenador=sinia&eid=45&tab=datos
[4] PM2.5, PM10, NO2 https://sinia.minam.gob.pe/portal/estadisticas-del-sector-ambiente/?marcoOrdenador=sinia&eid=148&tab=datos
[1] Crime Index https://www.numbeo.com/crime/rankings.jsp
[2] Traffic Index https://www.numbeo.com/traffic/rankings_by_country.jsp
Resources:
[1] https://objectiveunclear.com/
[2] Airplanes Live 3D https://objectiveunclear.com/airloom.html
[3] https://airplanes.live/
[4] Lima https://globe.airplanes.live/?icao=e80329
2021 Physics-based Deep Learning
Resources:
[1] Web https://physicsbaseddeeplearning.org
[1] Book https://arxiv.org/abs/2109.05237
[1] https://github.com/tum-pbs/pbdl-book
[out:json][timeout:60];
(
node["natural"="tree"]({{bbox}});
);
out body;
>;
out skel qt;
Resources:
[1] Create queries and export as geojson https://overpass-turbo.eu/
Google maps alternatives
Resources:
[1] JavaScript Lib for maps https://leafletjs.com/ #associate to OpenStreetMap
[2] Peruvian shape files https://www.geogpsperu.com
[3] OpenStreetMap editor https://josm.openstreetmap.de/
java -jar josm-tested.jar
Apps:
[Image to tex] https://latexconvert.com/
[Tex to image] https://www.bruot.org/tex2img/
[Solve eq] https://notegpt.io/photo-math
https://latexeditor.lagrida.com/ #offline
Step 1:
wget -O - https://repo.fortinet.com/repo/forticlient/7.2/ubuntu/DEB-GPG-KEY | gpg --dearmor | sudo tee /usr/share/keyrings/repo.fortinet.com.gpg
Step 2:
sudo vi /etc/apt/sources.list.d/repo.fortinet.com.list
deb [arch=amd64] https://repo.fortinet.com/repo/6.4/ubuntu/ /bionic multiverse
Step 3:
sudo apt install forticlient
ICMC VPN
[1] https://atendimentosti.usp.br/otrs/public.pl?Action=PublicFAQExplorer;CategoryID=12
clicar em Configure VPN e na janela de configuração New VPN Connection preencher somente os campos abaixo:
References:
[1] github https://iterative-refinement.github.io/
[2] Image Super-Resolution via Iterative Refinement https://arxiv.org/abs/2104.07636
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
echo "HISTSIZE=$HISTSIZE" echo "HISTFILESIZE=$HISTFILESIZE" #update the .bachrc file # Keep more commands in memory H...