Tags
What I learnt
ProblemHow to decide when to write a test
Solution I agree with Kent Beck answer here: https://stackoverflow.com/questions/153234/how-deep-are-your-unit-tests/153565#153565
linksLink[1]
ProblemSQLAlchemy: What's the difference between flush() and commit()?
Solution The session object registers transaction operations with session.add() , but doesn't yet communicate them to the database until session.flush()  is called. session.flush()  communicates a series of operations to the database (insert, update, delete). The database maintains them as pending operations in a transaction. The changes aren't persisted permanently to disk, or visible to other transactions until the database receives a COMMIT for the current transaction (which is what session.commit()  does). session.commit()  commits (persists) those changes to the database. flush()  is always  called as part of a call to commit()
ProblemTS Runtime issue
Solution A function declared using method shorthand syntax is bivariant . It can accept properties that don't exist at runtime. So a function that accepts a and b can also declare c, without an error.
linksLink[1]
ProblemDifference between using a Generic Type that extends another type (letâs call it TypeA), and define TypeA and use it directly
Solution Generic binding asks TypeScript compiler to compute the type based on the input passed and checks it against definition, while when you pass the type, it is only checks the type. Thatâs why Generic Types binding allows you to know the exact returned value instead of the type definition in this example .
linksLink[1]
ProblemUnion of Readonly const object with another âpartialâ object of same type causes the result type to error
Solution You are defining your types as generics, with generic binding of such a scenario the result of this union is fields with âneverâ as their value â refactor your code to make only one of the types generic .
linksLink[1]
ProblemTrigger a func from child to parent, then pass result back to child and do something with
Solution Forget about this! React is all about data flowing down, not up! Refactor your code!
Problempromise is not awaitâed in a forEach loop
Solution forEach doesnât support Promises. Use a loop that doesnât use a callBack. For details see link .
linksLink[1]
Problemno sleep func
Solution const sleep = ms => { return new Promise(resolve => setTimeout(resolve, ms)) }
ProblemCORS error persists even after enabling it
Solution Make sure your requests isnât being redirected. for example from âmydomain.comâ â âwww.mydomain.comâ. if so, fix your request to use full domain name.
ProblemOther team members not fulfilling your decisions
Solution Don't make decisions that creates work for others you wouldn't do yourself
ProblemLambda is timing out with no meaningful error
Solution check lambdaâs vpc configuration, you probably missed to allow outbound traffic.
Problemsend a put/post request using fetch fails âcuz of content-type set to plain/text
Solution specify the content headers (fetch keeps the default ones for all requests): { Accept: 'application/json', 'Content-Type': 'application/json', }
Problemstyled-component type error when using with nextjs 13
Solution no solution yet!!!! â can be used only with client sideâ
ProblemPort 5000 is used by a process you didnât run
Solution System Preferences > Sharing > uncheck AirPlay Receiver
Problemnew release not accepted by testflight because of a a version of a dependency
Solution make sure the dependency is using a semantic versioning
Problemdatabase IDs are assigned random numbers in JS land
Solution convert the ID before it reaches JS or use string as the type of your db column id
Problemreact-select component not rendering options correctling
Solution parent components have overflow-y: hidden â you should override that