Coder Social home page Coder Social logo

catalog_manager's Introduction

banner quoting 'learning to be the best version of myself'

GitHub Stats is experiencing some issues... GitHub Streaks is experiencing some issues...

Typing SVG

Typing SVG


const arthurIturres = {
  about: [
    'πŸ‘¨β€πŸ’» Full-stack Web Engineer at @Awesome.',
    'πŸ“š Fond of technical, business, self-help and travel books.',
    'πŸš€ I thrive on collaborating, organizing, and working with teams.',
    "πŸ€ I'm on my way to realizing my second dream, having accomplished the first.",
    '⌚πŸͺ΅ I do a bit of watchmaking and Wood work.',
    'πŸ–₯ I enjoy designing web applications.',
    'πŸ™‡πŸ»β€β™‚οΈ Currently working with Angular + Skote',
    '🌟 Besides web development in general, I specialize in optimizing development workflows,
        enforcing coding and programming standards, and advocating for adherence to best
        practices to ensure clean and professional codebases.'
  ],
  futureLearningGoals: [
    'πŸ₯– French.',
    '🐦 Swift.',
    'πŸ€– Kotlin.',
    '🎀 Give technical and soft skills talks.',
    'πŸ‚ Snowboarding.',
    'β›΅ Hitchhike a boat.'
  ]
};

Do you enjoy reading? πŸ€“

πŸ“š Here is a curated list of the books I read, that I would like to share with you... πŸ“š

πŸ“– = Books I'm currently reading

πŸ› οΈ Technical Books:
  • πŸ“– "The Pragmatic Programmer" - By Andrew Hunt and David Thomas.
  • πŸ“˜ "ProGit" - By Scott Chacon and Ben Straub.
  • πŸ“˜ "Think Like a Programmer" - By V. Anton Spraul.
  • πŸ“– "Javascript The Definitive Guide" - By David Flanagan.
  • πŸ“˜ "Learning React" - By Alex Banks and Eve Porcello.
  • πŸ“– "Redux in Action" - By Marc Garreau and Will Faurot.
  • πŸ“˜ "The Ruby programming language" - By David Flanagan and Yukihiro Matsumoto.
  • πŸ“– "A Common Sense Guide to DSA - 2nd Edition" - By Jay Wengrow.
  • πŸ“– "You Dont Know JavaScript" - By Kyle Simpson.
  • πŸ“– "Clean Code" - By Robert C. Martin.
πŸ’Ό Business Books:
  • πŸ“• "The Phoenix Project, A novel about IT, DevOps and helping your business win" - By Gene Kim, George Spafford and Kevin Behr.
  • πŸ“• "The Five Dysfunctions of a Team" - By Patrick Lencioni.
  • πŸ“– "The Effective Engineer" - By Edmond Lau.
🧠 SelfHelp Books:
  • πŸ“— "Feel The Fear And Do It Anyway" - By Susan Jeffers.
  • πŸ“— "Ego is the Enemy" - By Ryan Holiday.
  • πŸ“— "Growth Mindset" - By Carol S. Dweck.
  • πŸ“— "Declutter Your Mind" - By S.J. Scott and Barrie Davenport.
πŸ—ΊοΈ Travel Books:
  • πŸ“™ "Hitchhiking in The Axis of Evil" - By Juan Pablo Villarino.
  • πŸ“™ "Always the West" - By J.M. Romero.
  • πŸ“™ "Magic is travelling" - By Aldana Chiodi and Dino Feldman.
  • πŸ“™ "A Tango in Tibet" - By Juan Pablo Villarino.
  • πŸ“™ "The Alchemist" - By Paulo Coelho.


Github contributor rank is experiencing some issues...

Top Languages

Profile Views

catalog_manager's People

Contributors

demesameneshoa avatar iturres avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

catalog_manager's Issues

[2 pt] MusicAlbum && Genre data preservation

  • All data should be preserved by saving collections in .json files.
    Create a schema.sql file with tables that will be analogical to the structure of the classes that you created:
    music_albums table (add all properties and associations from the parent Item class as table columns)
    genres table

[2 pt] Game Class - Data Preservation && Schema

  • All data should be preserved by saving collections in .json files.
  • Create a schema.sql file with tables that will be analogical to the structure of the classes that you created:
    • games table (add all properties and associations from the parent Item class as table columns)

[2pt] Books & Label Data Preservation & Schema

  • All data should be preserved by saving collections in .json files.
  • Create a schema.sql file with tables that will be analogical to the structure of the classes that you created:
    books table (add all properties and associations from the parent Item class as table columns)
    labels table

[1pt] MusicAlbum Class

  • Create MusicAlbum class in a separate .rb file.
  • All MusicAlbum class properties visible in the diagram should be defined and set up in the constructor method.
  • can_be_archived?() in the MusicAlbum class
    should override the method from the parent class
    and should return true if the parent's method returns true AND if on_spotify equals true
    otherwise, it should return false

[4 pt] Game Class

  • Create a Game class in a separate .rb file.
  • All Game class properties visible in the diagram should be defined and set up in the constructor method.
  • can_be_archived?() in the Game class
    - should override the method from the parent class
    - should return true if the parent's method returns true AND if last_played_at is older than 2 years
    - otherwise, it should return false

[2.5pt] Book and Label UI

  • The following options should be available:
    List all books
    List all labels (e.g. 'Gift', 'New')
    Add a book

[1pt] Book Class

  • Create a Book class in a separate .rb file.
  • All Book class properties visible in the diagram should be defined and set up in the constructor method.
  • can_be_archived?() in the Book class
    should override the method from the parent class
    should return true if parent's method returns true OR if cover_state equals to "bad"
    otherwise, it should return false

[2pt] Final Touches

  • πŸ“„ Item class @id should be assign to return value of generated_id helper method.

  • πŸ“„ README.md

    • Check all boxes from the Future Features section.
    • Add top logo.
    • Remove duplication in the Usage section.
    • Author 2's last name is misspelt.
    • Add UML diagram (file).
    • Add Project presentation link.
    • Add PostgreSQL in tech stack.
    • Elaborate Project learning objectives.

[2pts] Author Data preservation & Schema

  • All data should be preserved by saving collections in .json files.
  • Create a schema.sql file with tables that will be analogical to the structure of the classes that you created:
    • authors table

[4pts] Author Class

  • Create an Author class with an association to the Item class (in a separate .rb file).
  • All Author class properties visible in the diagram should be defined and set up in the constructor method.
  • Implement methods:
    • add_item method in the Author class
      • should take an instance of the Item class as an input
      • should add the input item to the collection of items
      • should add self as a property of the item object (by using the correct setter from the item object)

[4 pt] Item Class - (Team Task)

  • Create Item class in a separate .rb file.
  • All Item class properties visible in the diagram should be defined and set up in the constructor method. Exception: properties for the 1-to-many relationships should NOT be set in the constructor method. Instead, they should have a custom setter method created.
  • Add all methods visible in the diagram.
  • Implement methods:
    • can_be_archived?() in the Item class
      • should return true if published_date is older than 10 years
      • otherwise, it should return false
    • move_to_archive() in the Item class
      • should reuse can_be_archived?() method
      • should change the archived property to true if the result of the can_be_archived?() method is true
      • should do nothing if the result of the can_be_archived?() method is false

[2.5 pts] Author UI

  • The following options should be available:
  • List all authors (e.g. 'Stephen King')

[3.5 pt] Main - App entry point - UI - (Team Task)

  • Create a main.rb file that will serve as your console app entry-point.
  • Implement startup actions:
    • Present the user with a list of options to perform.
    • Let users choose an option.
    • If needed, ask for parameters for the option.
    • Have a way to quit the app.

[1pt] Genre Class

  • Create a Genre class with an association to the Item class (in a separate .rb file).
  • All Genre class properties visible in the diagram should be defined and set up in the constructor method.
  • The add_item method in the Genre class
    should take an instance of the Item class as input.
    should add the input item to the collection of items
    and should add self as a property of the item object (by using the correct setter from the item object)

[1pt] Label Class

  • Create a Label class with an association to the Item class (in a separate .rb file).
  • All Label class properties visible in the diagram should be defined and set up in the constructor method.
  • add_item method in the Label class
    should take an instance of the Item class as an input
    should add the input item to the collection of items
    should add self as a property of the item object (by using the correct setter from the item object)

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.