Giter Site home page Giter Site logo
# me.py

class Developer:
  def __init__(self):
    self.name = "Kyle"
    self.pronouns = ["he", "him"]
    self.code = ["Python", "C", "C++"]
    self.degree = "B.S. Computer Science"
    self.almaMater = "University of Pittsburgh"
    self.numCats = 2

  def greet(self):
    print(self)

  def __str__(self):
    out = f"My name is {self.name}"
    out += f" ({'/'.join(self.pronouns)}).\n"
    out += f"I love writing code in  "
    out += f"{', '.join(self.code[:-1])} and {self.code[-1]}.\n"
    out += f"I earned my {self.degree} degree from the {self.almaMater}.\n"
    out += f"I have {self.numCats} cats that love sitting on my keyboAAAAAAAASAQWQSQQQ"
    return out

me = Developer()
me.greet()
user@github $ python me.py
My name is Kyle (he/him).
I love writing code in  Python, C and C++.
I earned my B.S. Computer Science degree from the University of Pittsburgh.
I have 2 cats that love sitting on my keyboAAAAAAAASAQWQSQQQ

Kyle's Projects

briefcase icon briefcase

Tools to support converting a Python project into a standalone native application.

cookiecutter icon cookiecutter

A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.

edith icon edith

Starter files toward a hand-built website for portfolio use (assignment for Ben Miller's course at Pitt in Composing Digital Media)

pipx icon pipx

Install and Run Python Applications in Isolated Environments

soundscape2020fall icon soundscape2020fall

Guidelines for a Soundscape Narrative project, part of [Ben Miller's Composing Digital Media](https://benmiller314.github.io/cdm2020fall) course

trie icon trie

My implementation of the trie data structure.

wyrdl icon wyrdl

Wordle clone built with python and rich, with help from a tutorial from Real Python.

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.