Giter Site home page Giter Site logo
#!/usr/bin/python
# -*- coding: utf-8 -*-

class PythonDeveloper:
    def __init__(self):
        self.name = "Angie"
        self.perceived_role = "Web developer"
        self.official_title = " Developer Analyst"
        self.language_spoken = ["esp_LATAM", "en_US"]
        self.currently_learning = ["automated_test","JavaScript"]
        self.currently_working = ["API's web", "Open Source", "ERP", "Personal Project"]
        
    def say_random(self):
        print("If a line of code from your life transcends, you've done more than most.")

me = PythonDeveloper()
me.say_random()
from odoo import models, fields, api

class OdooDeveloper(models.Model):
    _name = 'python.developer'
    _description = 'Partner Odoo Developer'

    name = fields.Char(string='Name', default="Angie")
    perceived_role = fields.Char(string='Perceived Role', default="Web Developer")
    official_title = fields.Char(string='Official Title', default="Developer Analyst")
    language_spoken = fields.Selection(
        [('es_MX', 'Spanish (MEX)'), ('en_US', 'English (US)')],
        string='Language Spoken',
        default='es_MX'
    )
    currently_learning = fields.Many2many(
        'learning.topic', 
        string='Currently Learning'
    )
    currently_working = fields.Many2many(
        'work.topic', 
        string='Currently Working'
    )

    @api.model
    def say_random(self):
        return "If a line of code from your life transcends, you've done more than most."

    def print_learning_and_working(self):
            learning_topics = ', '.join(self.currently_learning.mapped('name'))
            working_topics = ', '.join(self.currently_working.mapped('name'))
            print(f"Currently Learning: {learning_topics}")
            print(f"Currently Working: {working_topics}")

 import pdb; set_trace()

Languages and Tools :

Fortran Java Python Django Postman Postgresql Heroku

Git JavaScript React Netifly Figma VSC

TeposteAJ's Projects

absphreak icon absphreak

:octocat: Hello there! This repository is for the welcome message on my Github Profile.

addons-vauxoo icon addons-vauxoo

All our modules related to developments that solves generic issues on Odoo, or that solve internal problems on Odoo Core, if something is here, maybe it is solving an issue in your company, try it and report what you see.

basics_python icon basics_python

Acá estan los códigos de las actividades basicas asignadas de Python.

fortran-projects icon fortran-projects

Here are the programs and exams carried out in the undergraduate programming class. Basic projects, but useful for the development of logic and algorithms, all written in FORTRAN

get-talent-backend icon get-talent-backend

Desarrollo de Apis dentro del Bootcamp de Hackwomen. https://gettalent2022.netlify.app/

gettalent-frontend icon gettalent-frontend

https://gettalent2022.netlify.app/ En este repositorio se encuentra toda la estructura Front de la aplicación GET-Talent, desarrollada durante 6 meses en el boootcamp SkillsForWomenInTech y desarrollado con React

introduccion_javascript icon introduccion_javascript

En este repositorio subiré las actividades asignadas en el programa de Skills For Women In Tech; en la mentoría del Introducción a JavaScripts

introduccion_python icon introduccion_python

Este proyecto es de una serie de actividades asignadas en la mentoría de Introducción a Python del programa Skills For Woman In Tech.

mock-interview icon mock-interview

Entrevista Prueba. Se creo una API's con Django, para almacenar pokemones, guardando nombre y tipo.

prepadmisiontest icon prepadmisiontest

Useful to replicate the admission process, for the postgraduate entrance exam.

typ-tecnicalodooformation icon typ-tecnicalodooformation

This reporte content the demo modules , constructed in Tecnical Course of Odoo Oficial. Capacitation Program TYP Refrigeración for Developer Jr.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.