$ curl -O https://bootstrap.pypa.io/get-pip.py
$ python3 get-pip.py --user
References:
[1] https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install-linux.html
Software Developer, Programming, Web resources and entertaiment. Desarrollo de software, programación, recursos web y entretenimiento.
$ curl -O https://bootstrap.pypa.io/get-pip.py
$ python3 get-pip.py --user
References:
[1] https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install-linux.html
Without ifconfig command
public IP
$ curl ifconfig.me
private IP
$ ip addr
References:
[1] https://opensource.com/article/18/5/how-find-ip-address-linux
[1] AI Vocal Remover and Isolation https://vocalremover.org/
[2] AI Vocal remover, it split in to tracks https://multimedia.easeus.com/vocal-remover/ #2024
[3] Split Music and Vocal https://studio.mikrotakt.app/ #2024
Sunedu
Renacyt
1) https://ctivitae.concytec.gob.pe/appDirectorioCTI/
2) http://regina.concytec.gob.pe
4) https://www.gob.pe/9603
[5] Niveles I-VII https://conocimiento.concytec.gob.pe/preguntas/renacyt/cuales-son-los-niveles-de-clasificacion-de-los-investigadores-renacyt/
[6] Reglamento https://portal.concytec.gob.pe/images/renacyt/reglamento_renacyt_version_final.pdf
[7] Qualis/BR https://homepages.dcc.ufmg.br/~bigonha/Ranking/cc-qualis-conferencias-2016-ranking.pdf
[8] SCImago Journal Rank http://www.scimagojr.com/journalrank.php
[9] JCR https://jcr.clarivate.com/jcr/browse-journals
[10] Global Ranking https://www.topuniversities.com/university-rankings/world-university-rankings/2024
[11] Reglamento de Evaluación https://www.unsa.edu.pe/transparencia/docs/regl-ensenanza-aprendizaje.pdf
(keyword:unsa san agustin nota vigesimal)
[12] EPIS Egresados por año https://fips.unsa.edu.pe/ingenieriadesistemas/lista-de-egresados/
#Extract audio
ffmpeg -i mad-pi.mp4 -map 0:a:0 mad-pi_audio.wav
#Extract reinsert new audio
ffmpeg -i mad-pi.mp4 -i mad-pi_audiohd.mp3 -c:v copy -map 0:v:0 -map 1:a:0 new.mp4
#reencode for whatsapp
ffmpeg -i new.mp4 -c:v libx264 -profile:v baseline -level 3.0 -pix_fmt yuv420p working.mp4
[1] FastAPI https://fastapi.tiangolo.com/
[2] Dash Python https://dash.plotly.com/background-callbacks
Resources:
[1] Easy download https://mp3-ringtone.com/
[2] Play and using FireBug download https://www.zedge.net/find/ringtones/2023
ffmpeg -i mad-principio_peter.mp4 -vn -y out1.mp3 #9M
ffmpeg -i mad-principio_peter.mp4 -f mp3 -ab 192000 -vn out2.mp3 #14M
ffmpeg -i mad-principio_peter.mp4 -f mp3 -ab 128000 -vn out3.mp3 #9M
ffmpeg -i mad-principio_peter.mp4 -vn -acodec libmp3lame out4.mp3 #9M
ffmpeg -i mad-principio_peter.mp4 -acodec libmp3lame -ab 128k out5.mp3 #9M
ffmpeg -i gym.mp4 -f webm -c:v libvpx -b:v 1M -acodec libvorbis gym.webm -hide_banner
Second
ffmpeg -i sample.avi -q:a 0 -map a sample.mp3 #complete
ffmpeg -i sample.avi -ss 00:03:05 -t 00:00:45.0 -q:a 0 -map a sample.mp3
#fraction
Parameters :
-q:a 0
for variable bit rate
-ss
starting timestamp
-t
the encoding time (If you don't specify, it will go to the end)
-map 0:a:3
selects audio stream #4 (ffmpeg
starts counting from 0)
** specific the timestamps in HH:MM:SS.xxx format.
References:
[1] https://json2video.com/how-to/ffmpeg-course/ffmpeg-extract-audio.html
First
Share your file in GD (with anybody access by link) and get FILEID
Second
Execute next code(replace FILEID and choose FILENAME):
wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=FILEID' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=FILEID" -O FILENAME && rm -rf /tmp/cookies.txt
Note:
Previous methods doesn't work, because now GD needs confirmation, then using cookies it's possible.
On Server (10.10.7.229):
$ sudo apt install nfs-kernel-server #install server
$ sudo mkdir -p /mnt/nfs_drive #create share point
$ sudo chown -R nobody:nogroup /mnt/nfs_drive #no owner
$ sudo chmod 777 /mnt/nfs_drive #set r/w permission
$ sudo vi /etc/exports #define clients grants
/mnt/nfs_drive 10.10.7.218(rw,sync,no_subtree_check) #mine
/mnt/nfs_drive 10.10.7.235(rw,sync,no_subtree_check) #houdini
$ sudo exportfs -a
$ sudo systemctl restart nfs-kernel-server
On Client:
$ sudo apt install nfs-common
$ sudo mkdir -p /mnt/nfs_drive_client #mirror
$ sudo mount 10.10.7.229:/mnt/nfs_drive /mnt/nfs_drive_client
Notes:
$ sudo ufw status #verify the firewall, more details in reference[0]
References:
[0] Working https://linuxhint.com/install-and-configure-nfs-server-ubuntu-22-04/
Install brctl
sudo apt install bridge-utils
Add new virtual bridge
sudo brctl addbr virbr0
sudo brctl addif virbr0 eth0
Check
/etc/qemu-ifup and /etc/qemu-ifdown #files
[0] Model and code https://github.com/wobushizhanghua/candide3-face/blob/master/src/main.cpp
[1] Landmark 3D https://webspace.science.uu.nl/~veltk101/publications/art/wss06.pdf
[2] https://github.com/MarekKowalski/FaceSwap
[3] https://github.com/jorticus/face-replace/blob/master/README.md
[0] https://www.gimp.org/docs/python/index.html#PREGION-OBJECT-MEMBERS
[1] https://www.gimp.org/docs/python/index.html#DRAWABLE-OBJECT-METHODS
[2] http://myvirtualbrain.blogspot.com/2012/06/gimp-python-fu-very-basics.html
[3] Samples https://github.com/jfmdev/PythonFuSamples
[4] https://github.com/gummyCowboy/GIMP-python-fu
[5] https://gist.github.com/garystafford/5259576a7e9299d5b80284489aa25fc3
[0] gif editor crop, mp4 to gif https://ezgif.com
[1] https://www.powtoon.com/?locale=en
[2] https://www.animaker.com/
[3] https://biteable.com/
[1] How to use textures on Houdini
http://wordpress.discretization.de/houdini/home/advanced-2/textures/
[2] Repository of textures with normals
https://opengameart.org/content/50-free-textures-4-normalmaps
[3] Textures for Blender
https://polyhaven.com/textures/brick/outdoor/wall
[4] HDRs (Environment Ilumination patterns) https://polyhaven.com/hdris
1. Download https://cmake.org/download/
2. Unpack and enter to folder to execute commands
./bootstrap
make -j$(nproc)
sudo make install
References
[1] https://askubuntu.com/questions/355565/how-do-i-install-the-latest-version-of-cmake-from-the-command-line
$ nm libmanson.so | grep -n apply
1:00000000000058ef T apply
#Force to install a version Python-3.7.4
wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz
tar xvf Python-3.7.4.tgz
cd Python-3.7.4
./configure --enable-optimizations --with-ensurepip=install
make -j 8
sudo make altinstall
#Install pip module into any version of Python
curl -o get-pip.py https://bootstrap.pypa.io/pip/get-pip.py
python3.8 get-pip.py #or
python3.9 get-pip.py
[1] Nasdaq API https://data.nasdaq.com/sign-up
[2] API https://data.nasdaq.com/tools/python (API is in setting option)
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal