- Data Types and Variables - https://www.baeldung.com/java-primitives
- Access Modifiers - https://www.baeldung.com/java-access-modifiers
- If-Else
- Loops - https://www.baeldung.com/java-loops
- OOP Concepts - https://www.baeldung.com/java-oop
- Homebrew (for installing python)
- Docker (for postgresql server, you can install postgre with homebrew too)
- python3 (for installing virtualenv)
- virtualenv (to run as python3.7, pillow 6.1.0 dependencies can be run with python3.5, 3.6, and 3.7)
- Install python3.7 with brew
https://blog.rafnixg.dev/creando-un-entorno-de-desarrollo-para-odoo-140-con-vscode-en-ubuntu-2204
sudo apt install postgresql postgresql-client
sudo -u postgres createuser -s $USER
createdb odoo-dev-13.0
createdb odoo-dev-14.0
createdb odoo-dev-16.0
from odoo import models, fields, api | |
from json_field import JsonField | |
class Person(models.Model): | |
_name = 'example.person' | |
_description = 'Person with json details' | |
details = JsonField() # a json object represented as dict / list / python primitives |
This gist are moved to the repository here. I will leave this gist and will update new notes directly to the repository. You can easily contribute if you want!
Welcome to OCA (Odoo Cheatsheet Akhmad 😛). Here are my notes and some useful links that i usually face them on my day-to-day working with Odoo.
A simple "1-click" javascript approach to downloading a scanned book from archive.org to read at your leisure on the device of your choosing w/out having to manually screenshot every pages of the book by hand. In short it's a glorified "Save Image As..." approach but consolidated down to "1 click". BTW there may be a much better option than this out there - I just built this as an autistic project to see if it would work.
By using this script you agree to delete all book files/images after your 1 hour or 14 days is up! I don't support using this script for any other use cases. After all, none of us have ever kept a library book past it's return date, right?