Skip to content

Instantly share code, notes, and snippets.

View julianram's full-sized avatar
💭
I may be slow to respond.

INFNITYLOOP SISTEMAS julianram

💭
I may be slow to respond.
View GitHub Profile
Hi Trevor,
Great job, but do you have any example to use, it is not clear how to create the parameters for function ConvertXMLToArray, pUseValueKey, pForceNumberIndexForNodes.
Thanks,
Regards,
[options]
#
# WARNING:
# If you use the Odoo Database utility to change the master password be aware
# that the formatting of this file WILL be LOST! A copy of this file named
# /etc/odoo/openerp-server.conf.template has been made in case this happens
# Note that the copy does not have any first boot changes
#-----------------------------------------------------------------------------
# Odoo Server Config File - TurnKey Linux
@julianram
julianram / backend.md
Last active November 22, 2021 08:11
django-proyect

Eliminar pyc problemas con migrate find . | grep -E "(pycache|.pyc|.pyo$|migrations)" | xargs rm -rf

--Crear password cifrado: from django.contrib.auth.hashers import make_password hashed_pass = make_password(plain_text_pass)