lay-tech
104 subscribers
64 photos
5 files
23 links
Lay Tech is an educational technology channel based in Ethiopia, dedicated to explaining tech concepts in a simple and practical way.
Download Telegram
መጨረሻውን ሳታይ ስራን ለመስራት መሞከር ፍምን ለመጨበጥ መሞከር ነው
👍4
Like Database life should be normalized‼️
👍2
🙏The Code is Write-Once, Read-Many: Your past actions are immutable—you can't change the execution. But you can change the compiler. Stop compiling old memories with negativity. Recompile them with growth, resilience, and wisdom.
👍3
👍3
🧠 How to Understand Logic Easily (Real Truth)
1. Think Like a Human, Not a Programmer
Before writing code, ask:
👉 “How would I solve this in real life?”
Logic always comes before syntax.
2. One Problem = One Small Step
Don’t try to solve everything at once.
Break it into:
• What is given?
• What is needed?
• What changes step by step?
Small thinking → Big clarity.

3. Mistakes Mean You’re Learning
If your code fails:
Your brain is growing
Your logic is improving
You’re on the right path
No errors = no learning.

🔹 4. Compare Yourself Only With Yesterday

Every developer once:
• Didn’t understand loops
• Didn’t understand logic
• Googled basic questions
Consistency beats talent.

🎯 Golden Rule of Programming

“Understand the problem first. Code comes later.”
👍3
🚀 Importance of Problem Solving in Coding & System Development
Problem solving is the core skill behind successful coding and system development. Programming is not just writing code—it’s about thinking logically and finding efficient solutions.
🧠 1. Translates Requirements into Solutions
In system development, requirements are often abstract. Problem-solving helps developers:
Break complex requirements into smaller tasks
Understand what needs to be built before how to build it
Choose the right architecture and logic
👉 Without problem solving, code becomes messy and unreliable.
⚙️ 2. Builds Efficient & Optimized Code
Good problem solvers:
Write faster algorithms
Reduce memory and CPU usage
Improve system performance and scalability
👍2
Channel photo updated
HTML input types
👍4
አንዳንዴ ቃላቶችህ ከዝምታህ ካልተሻሉ ዝምማለት ልመድ
1👍1
በ tech ዘርፍ የተሻለ ነገር ለማምጣት

1 ፍላጎታችንን መለየት(Passion)

2. ለምን ፈለግነው(purpose )
Passion + purpose = long-term fuel
🎯 Without direction, speed is wasted.

3.   ትኩረት(focus ✍️ Concentration is the secret of strength)

4. መሰረቱን ማሳመር(Master the Fundamentals)
🧱 Excellence starts with basics.

5. በቋሚነት መስራት   ( Be Consistent, Not Just Motivated)
🔁 Discipline builds success.
👍1
Activity diagram for Login
👍1
👉👉Technology is not just about machines, algorithms, or lines of code—it’s about problem-solving, persistence, and creativity.
👍1
let count = 0;

return function () {
count++;
return count;
};
}

const counter1 = createCounter();
const counter2 = createCounter();

console.log(counter1());
console.log(counter1());
console.log(counter2());

Questions
What will be the output?
Why doesn’t counter2 continue from counter1?
What JavaScript concept is demonstrated here?
1
👍2
lay-tech
Photo
Js string and array methods
👍2