Ctrl+code ⌨️
102 subscribers
129 photos
29 videos
1 file
99 links
Just sharing my next move 👣👣
Download Telegram
Forwarded from Beka (Beka)
Better Auth v1.0 is here! 🎉

https://www.better-auth.com/v1
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
i am trying to cover most foundational concepts of react in one project. Which includes hooks, props, basic state management(context API) , fetching api, and more
... I will post the github repo soon
🔥1🆒1
Forwarded from Programmer Jokes
Even css logo does not know how to center the text correctly inside the div 😂
😁1
አሁን ደሞ .. Let's update our portfolio with the new css logo
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
add: clear error handling for the user
👍1
1. Variables:

Variables are used to store data temporarily in JavaScript. They exist within the scope where they are declared (local or global) and are not persistent across renders in React components.

Example:
const count = 0;


2. State:

State is a built-in React object that allows components to maintain and update dynamic data across renders. It makes React components interactive.

Use useState for functional components to manage state.

Example:
const [count, setCount] = useState(0);


3. Props:

Props (short for properties) are used to pass data from a parent component to a child component. Props are immutable in the child component, meaning the child cannot directly modify them.

Example:
function Child({ count }) {
return <div>{count}</div>;
}


4. Context:

Context provides a way to pass data (like global variables) through the component tree without having to pass props down manually at every level.

Example:
const ThemeContext = React.createContext('light');


5. State Management:

State management is the practice of handling and synchronizing state across components in an application.

Simple apps might only use useState or props. For larger apps, tools like Context API, Redux, or Zustand can manage shared state efficiently.

Purpose: Ensure consistency, reduce prop-drilling, and provide a predictable flow of data.




By understanding how variables hold data, states handle dynamic values, props allow communication between components, and context/global state tools prevent redundancy, you grasp the foundation of state management in React.
👏1
Forwarded from /g/‘s Tech Memes (damir)
😁1
Forwarded from Beka (Beka)
you can now use next-forge with better-auth :))

https://docs.next-forge.com/authentication/better-auth
👍1
i don't know why i'm sharing you the book i never read!

https://www2.cs.uh.edu/~arjun/courses/ds/DiscMaths4CompSc.pdf
Forwarded from ForwardingServiceRepositoryImpl (Archive)
This media is not supported in your browser
VIEW IN TELEGRAM
nothing to see here. just an eeu technician hard at work
Forwarded from Edemy
This media is not supported in your browser
VIEW IN TELEGRAM
Developer: "We're done coding."

Tester: "Just wait and see."

@edemy251
😁1
I'm not sure if it is "pixel-perfect" implementation 🤔
Forwarded from DoughNut 🍩
Looks like better auth is now on the official ElysiaJS documentation😍😍
I lovee elysia and how easy it was to setup a project with better auth two tools that showcase why humans built great shit.
So as a normal human being sent a pr for a doc on how to setup better auth on elysia and hereee wee goooooo🥳🥳

https://github.com/elysiajs/documentation/pull/450

#BuildSexyProducts #Backend
Please open Telegram to view this post
VIEW IN TELEGRAM
Forwarded from Luna's pathway🤗 (Luna)
Hello,I need your attention for a second!
One of our own, Daniel Basazinew, a talented software engineer and an incredible human being, is facing a life-threatening challenge. Daniel has been diagnosed with End-Stage Renal Disease (ESRD), and both of his kidneys have failed. He urgently needs a kidney transplant, but the cost of the procedure abroad is $40,000.

Daniel has always been there for others, mentoring, helping, and inspiring those around him. Now, it's our turn to help him in his time of need.

Here's how you can support:
Donate via GoFundMe: https://www.gofundme.com/f/urgent-support-daniels-kidney-transplant


Local Donations (Ethiopia):

Commercial Bank of Ethiopia: 1000259462774 (Daniel Basazinew)

Telebirr: 0941219026 (Zinash)

Share the campaign with your networks to spread the word.
Let's rally together to save Daniel’s life. Every little bit counts—thank you for your support!

content credit : Nahom Abera
👍1
Forwarded from ForwardingServiceRepositoryImpl (Archive)
🔥1