[1] Leopard https://wallhere.com/en/wallpaper/1058505
Tuesday, May 30, 2023
Monday, May 22, 2023
Graph Neural Network - Step 1
References:
[1] Short review https://neptune.ai/blog/graph-neural-network-and-some-of-gnn-applications
[2] Coding GNN https://keras.io/examples/graph/gnn_citations/
[2.1] https://keras.io/examples/graph/gat_node_classification/
Saturday, May 20, 2023
AI tools to create videos
[0] Create a Story using chatGPT
[1] Text to speach https://www.speachy.ai #no includes english/doesnt work
[2] Text and Speach to Video https://invideo.io/
[3] Free Atatars https://www.synthesia.io
Data Visualization tools
[1] A new library for LLMs and NNs that provides visual
clustering analysis and model interpretability. Super useful.
!pip install arize-phoenix
Wednesday, May 17, 2023
CG Visualization tools
[1] tools https://graphics.tudelft.nl/software/
[2] Surface from fluid in GPU https://github.com/xiaoxiaoyu1872/PostMPS
Tuesday, May 16, 2023
Latent space
References:
[1] https://www.europeanvalley.es/noticias/el-espacio-latente-en-la-ia/
[2] https://rstudio-pubs-static.s3.amazonaws.com/840251_35002e1971484924bc78c24f442e530a.html
Tuesday, May 09, 2023
Convert Photo in Cartoon
[1] https://imglarger.com/Cartoonizer
[2] https://vanceai.com/toongineer-cartoonizer/
[3] Prompt image to cartoon https://deepai.org/machine-learning-model/image-editor
[4] https://www.befunky.com/create/photo-to-cartoon/
[5] Head+ [Body models] https://imagetocartoon.com/ 10/week
[6] 4Adults AI https://metaroids.com/lists/adult-ai-art-tools-that-can-generate-nsfw-ai-images/
Friday, May 05, 2023
WebAssembly
[1] Compiling an Existing C Module to WebAssembly
https://developer.mozilla.org/en-US/docs/WebAssembly/existing_C_to_wasm
Wednesday, April 12, 2023
Jetson Wifi issues
#Alternative to wpa_supplicant
Creating connection(important don't remove --):
$ nmcli connection add type wifi con-name "myconname" ifname wlan0 ssid "eduroam" -- wifi-sec.key-mgmt wpa-eap 802-1x.eap ttls
802-1x.phase2-auth mschapv2 802-1x.identity "USERNAME"
$ sudo --ask nmcli c up myconname
$ ls /etc/NetworkManager/system-connections #show connections
$ cat /etc/NetworkManager/system-connections
/myconname #show file connection
$ nmcli con show myconname #show connection detailed
Error 1:
password for '802-1x.identity' not given in 'passwd-file'
Solution 1:
$ nmcli con up <myconname> passwd-file <mypassfile>
References:
[1] Single connection https://www.linuxfordevices.com/tutorials/ubuntu/connect-wifi-terminal-command-line
[2] https://vessokolev.blogspot.com/2018/08/using-nmcli-to-create-8021x-eap-ttls.html
Monday, April 10, 2023
Python - Creating virtual environments
Install pip if it doesn't exist
$curl -O https://bootstrap.pypa.io/get-pip.py
$python3 get-pip.py --user
$python3 -m pip list
$python3 -m pip install tensorflow --no-cache-dir #for space issue
Error during execution of: python3.8 -m venv myenv
Error: Command '['/path/to/desired/env/bin/python3.8', '-Im', 'ensurepip', '--upgrade', '--default-pip']' returned non-zero exit status 1.
Solution: Create a virtual environment using a especific python version
$virtualenv --python=$(which python3.7) envtf4p37
Thursday, April 06, 2023
Proxy list and tools
Tools:
[1] https://hidemy.name/en/proxy-checker
[2] Listing proxies by country https://www.proxynova.com/proxy-server-list/country-us
Monday, April 03, 2023
Tuesday, March 28, 2023
Jetson Nano and Tensorflow 2.4 in Python3.6
Linux verify disk activities
$ sudo apt-get install iotop
$ sudo iotop -a
$ sudo iotop -oPa -d 2 #more specific
$ iostat #activity by sda, sdb, etc.
jbd2
is a kernel thread that updates the filesystem journal.
References:
[1] Reduce firefox disk access https://gist.github.com/gagarine/5cf8f861abe0dd035b7af19e4f691cd8
[2] Monitoring disk activity(htop) https://askubuntu.com/questions/276669/how-to-monitor-disk-activity
Get create/birth date from files
$ stat wakeup.txt #get the inode
$ df -h wakeup.txt #get device name sdxy
$ sudo debugfs -R 'stat <586205>' /dev/sda1
Output:
Inode: 586205 Type: regular Mode: 0664 Flags: 0x80000
Generation: 1277687204 Version: 0x00000000:00000001
User: 1000 Group: 1000 Size: 31
File ACL: 0 Directory ACL: 0
Links: 1 Blockcount: 8
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x615eed87:dba39c9c -- Thu Oct 7 09:52:23 2021
atime: 0x64231159:334e6b48 -- Tue Mar 28 13:10:01 2023
mtime: 0x615eed87:dba39c9c -- Thu Oct 7 09:52:23 2021
crtime: 0x615eed87:dba39c9c -- Thu Oct 7 09:52:23 2021
Size of extra inode fields: 32
References:
[1] https://www.linuxshelltips.com/find-file-creation-date/
[2] https://www.baeldung.com/linux/get-file-creation-date
Thursday, March 23, 2023
Jetson Nano and Tensorflow
https://developer.download.nvidia.com/compute/redist/jp/v44/tensorflow/
tensorflow 1.15.x to 2.3.x
https://developer.download.nvidia.com/compute/redist/jp/v45/tensorflow/
tensorflow 1.15.x to 2.5.0
https://developer.download.nvidia.com/compute/redist/jp/v46/tensorflow/
tensorflow 1.15.x to 2.6.2(requires of h5py==3.1.0 and it requires pkconfig)
https://developer.download.nvidia.com/compute/redist/jp/v461/tensorflow/
tensorflow 2.7.x
Compatibility
tensorflow 2.5.0 requires numpy~=1.19.2
Under Python 3.6.9 (protobuf requires Python '>=3.7' but the running Python is 3.6.9)
Under Python 3.6.9 (protobuf requires Python '>=3.7' but the running Python is 3.6.9)
Change OS in Jetson
Download image and tool for write img
https://developer.nvidia.com/embedded/learn/get-started-jetson-nano-devkit#write
dd if=/path/to/your/isofile of=/your/usb/disk bs=8M status=progress
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglĆ©s se llama “A potentially dangerous Request.Form value was detected from the client”. varias pĆ”ginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Odoo 17 - Custom adds
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal