NLNicole Listerfeltinlisterfelt.hashnode.dev·Apr 1, 2024 · 3 min readTranslator APIToday we will be adding a translator to my 1248 Learning application. The app is a spaced repetition flash card system. It can be used to study for exams or personal learning goals. One of those goals might be to learn a foreign language. This app is...00
NLNicole Listerfeltinlisterfelt.hashnode.dev·Feb 9, 2024 · 2 min readSerializationThe process of converting a data object into a format for storage or transmission. For example, we can take a Python object and serialize it into JSON. Then it can be shared with other programs, computers or networks. The SQLAlchemy-Serializer can be...00
NLNicole Listerfeltinlisterfelt.hashnode.dev·Feb 5, 2024 · 3 min readFormik and YupWhen you use a form, it might have validations to see whether the input will be valid. There also might be error messages explaining what is wrong. We will look at formik and yup to help us achieve this. Signup Form Let's start by looking at a signup...00
NLNicole Listerfeltinlisterfelt.hashnode.dev·Oct 29, 2023 · 4 min readPython with a Command Line InterfaceMain Menu To start the cli.py file, we will add the main menu. #cli.py def main_menu(): print(''' ******************** Main Menu ******************** Select an option: g. List all genres v. List all movies r. Lis...00
NLNicole Listerfeltinlisterfelt.hashnode.dev·Aug 21, 2023 · 4 min readControlled FormsuseState import React, {useState} from 'react' In order to control a form, we need to talk about state. We import useState from react. Then we want to create a state variable to hold all of our form data. This will be in the NewBudget component. fun...00