
Arama Sonuçları: "#LearningToCode"
14 sonuç

Days 5 & 6 of Python 🐍
Worked on dictionaries and unpacking, getting more comfortable handling structured data instead of basic variables. Things are starting to feel more organized and scalable.
#Python #Coding #LearningToCode #DevJourney #100DaysOfCode

English

when: → server is in one timezone → database stores in another → you're doing date range queries
in production most servers run UTC most users are in different timezones
always know what timezone your dates are in 🕐
#learningtocode #backend #prisma #postgreSQL
English

Built a clean Registration UI in Android Studio using ConstraintLayout:structuring a full form with multiple input fields and a Sign Up button while refining layout constraints and modern mobile UI design principles. Small steps, sharp progress.
#learningtocode
English

three lines. array methods you already know.
backend "reporting" is just javascript you know applied to database data instead of api data
filter. map. find. reduce. same methods. different context.
frontend skills transfer directly 🎯
#frontend #backend #learningtocode
English

neither userId nor meetingId alone is unique but together they identify one record
findUnique couldn't handle it findFirst could
small distinction. app crashes if you get it wrong 🔍
#frontend #backend #learningtocode
English

without include → userId: 2 (just a number) with include → full user object nested inside
prisma handles the join automatically no sql needed
select filters. include fetches. both essential. 🗄️
#learningtocode #backend #frontend
English

solution: the frontend bridges the gap → admin sees names in a dropdown → frontend looks up the ID → sends the ID to the api
apis work with IDs humans work with names frontend is the translator 🔄
#learningtocode #frontendbecomingfullstack #backend
English

Day 4/100 of learning Python. 🐍
Today was all about lists and data structures. Played around with indexing and slicing to pull data out, and finally wrapped my head around the difference between modifying a list and making a copy of it.
#Python #100DaysOfCode #LearningToCode

English

Trying again.
Learning React Native by myself… again.
No perfect setup.
No guarantee it will work.
Just curiosity, errors, and the decision to start one more time.
#ReactNative #BuildInPublic #LearningToCode #DeveloperJourne

English

every list in a real app needs explicit ordering
posts → newest first stewards → alphabetical meetings → newest first
one line. prevents a subtle but real ux bug 📋
#learningtocode #frontend #backend
English

fix: one command to restart it permanent fix: set it to auto-start with windows
lesson: read error messages before assuming your code is broken
they tell you WHERE to look 🔍
#learningtocode #frontend #backend #postgreSQL
English

frontend validation = better UX backend validation = security
someone can bypass your UI entirely and hit your api directly
validate on both sides. always. frontend for experience. backend for security. 🛡️
#learningtocode #backend #frontend
English

fix: use prisma's select to explicitly choose which fields to return
password is never in that list
rule: if a table has a password column, always use select. no exceptions 🔐
#frontend #learningtocode
English