Skip to content
View TeposteAJ's full-sized avatar
Si se puede imaginar ¿se debe programar?
Si se puede imaginar ¿se debe programar?

Block or report TeposteAJ

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
TeposteAJ/README.md
#!/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

Popular repositories Loading

  1. Fortran-Projects Fortran-Projects Public

    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

    Fortran 2

  2. GetTalent-Frontend GetTalent-Frontend Public

    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 desarro…

    JavaScript 1

  3. Get-Talent-Backend Get-Talent-Backend Public

    Forked from KarenHernandez08/Get-Talent

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

    Python 1

  4. ElementalDataAnalisis_Python-PROYECTO-A ElementalDataAnalisis_Python-PROYECTO-A Public

    Proyecto1-DataSciencie-pythonfundamentals

    Python

  5. KPI-S_GoogleDataStudio-PROYECTO-B KPI-S_GoogleDataStudio-PROYECTO-B Public

    Analisis con GoogleDataStudio, donde se calcularon los KPI´S para datos fijos y dinamicos.

    Python

  6. SkillsForWomenInTech SkillsForWomenInTech Public

    Forked from GDSC-UG/HolaMundo-HackWomen

    Intro a Github

    Jupyter Notebook