This sprint was titled, Intermediate Swift. That got me thinking so everything we had done for the past 13 weeks was all beginning swift. There is so much to learn about this, yikes!! But it's ok I can get through this. We started off learning about swift generics, luckily I had done some reading and… Continue reading Lambda School – iOS Development Bootcamp – Week 14 & 15
Tag: #womenintech
Lambda School – iOS Development Bootcamp – Week 12 & 13
After a very discouraging two weeks, we moved on to learning CoreData. It was very refreshing to learn something new that didn't involve any design. Core Data was in no way easy but it was easier than programmatic UI design, Core graphics and animations. Core Data CoreData to me was like working with databases. I… Continue reading Lambda School – iOS Development Bootcamp – Week 12 & 13
Lambda School – iOS Development Bootcamp – Week 10 & 11
I knew it was bound to happen I just didn't know when it would but I had to hit that learning wall at some point and this was it. I got through it but I struggled.
The iPhone app that Google and I built
My first complete app from concept to finished product all by myself. I struggled, I cried, I laughed, I got super excited and I repeated this several times over and over again, but it was worth it.
Building an iOS app using an API
Here's my plan to build an app that uses the cocktail DB API which can be found at https://www.thecocktaildb.com/ . I choose this API because it's free, I don't plan on posting this app on the Apple Store so they allow free use for educational purposes. It also has different endpoints and this is great… Continue reading Building an iOS app using an API
Python Control Flow: Loops
Unlike humans who get bored easily, computers are great at repetitive tasks. They do them fast. We have to have an easier way of having a computer do a repetitive task instead of writing the same line of code over and over and over. We use loops to do this.
Python Control Flow: Boolean Expressions for Conditions
Like comparison operators, Boolean Operators evaluate these expressions downs to a Boolean value. They help up achieve this by allowing us to create more complex conditional statements.
Python Control Flow: Conditional Statements
Conditional Statements are used to break the linear code. We don't always want to have our code follow a straight lines we want to branch off based on a a condition. If the condition is true we want to go one way and if it's false it goes another way.
Day 7: Using Props in React
Read about how to Use Props in React. Follow along as we make our data dynamic with props.