https://qengineering.eu/install-opencv-4.4-on-raspberry-pi-4.html
jueves, 12 de noviembre de 2020
lunes, 19 de octubre de 2020
Measure the amount of color in the picture
If you want to measure the amount of color an image has (in percentage), you can use the following repo:
https://github.com/Eitol/document_color_meter
domingo, 13 de septiembre de 2020
Fix err_cleartext_not_permitted ionic 3
Add this namespace definition to <widget
xmlns:android="http://schemas.android.com/apk/res/android"
Then add this config in widget:
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true" />
</edit-config>
jueves, 10 de septiembre de 2020
Download XCode 11.7 from Google Drive
Intentando descargar xcode desde el portal de apple developer, me dió un error de descarga, además fué demasiado lento. Así que luego lo subí a google drive:
Original:
https://download.developer.apple.com/Developer_Tools/Xcode_11.7/Xcode_11.7.xip
Copia en google drive:
https://drive.google.com/file/d/1oOhyYlyM4mOZPFYVcSblvVdWM8nB1l4-/view?usp=sharing
martes, 10 de marzo de 2020
Oracle DB with Jetbrains DataGrip and DBeaver
docker run --name ora121 -p 1521:1521 -p 5500:5500 -e ORACLE_SID=ORCLCDB -e ORACLE_PDB=pdb1 -e ORACLE_PWD=Oradoc_db1 -e ORACLE_CHARACTERSET=AL32UTF8 store/oracle/database-enterprise:12.2.0.1