Frontend & Web Dev, Marketing, SEO, GEO | HI Web
15.2K subscribers
583 photos
17 videos
51 files
198 links
• Guides on HTML, CSS, JavaScript, React
• Free Figma templates
• Tips on UI/UX design
• Career advice
• Portfolio tips, GitHub help, and soft skills for devs
• Live projects, coding challenges, tools, and more

For all inquiries contact @haterobots
Download Telegram
Free Figma Template: Cloud Storage

🧠 Difficulty: 🥕🥕🥕

#Figma #Template
11👍7👏2
📒 𝗙𝗿𝗲𝗲 𝗯𝗼𝗼𝗸: 𝗘𝗹𝗼𝗾𝘂𝗲𝗻𝘁 𝗝𝗮𝘃𝗮𝗦𝗰𝗿𝗶𝗽𝘁

This is the best book about JavaScript, programming, and the wonders of the digital

Written by Marijn Haverbeke.

language: EN, ES, AR, RU, BUL, POR

#FreeBook
🔥133👍3👏1
💻 A password generator with customizable length.

This example creates a simple password generator that, upon pressing the button, generates a random password with the specified length from the upper form, using characters from the specified charset.

<div class="password-generator">
<input type="text" id="passwordLength" placeholder="Password length">
<input type="text" id="password" readonly>
<button onclick="generatePassword()">Generate</button></div>


function generatePassword() {
const length = parseInt(document.getElementById("passwordLength").value);
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+";
const charsetLength = charset.length;
let password = [];

for (let i = 0; i < length; i++) {
const randomIndex = Math.floor(Math.random() * charsetLength);
password.push(charset[randomIndex]);
}

document.getElementById("password").value = password.join('');
}
20👍15🔥5👎1
Free Figma Template: Game site

🧠 Difficulty: 🥕🥕🥕🥕

#Figma #Template
12🤩3👍2
🧐 Interview Question:

What is the difference between Observable and Promise in JavaScript?

Answer:

Observable and Promise are two ways to handle asynchronous operations in JS.

• A Promise can either resolve successfully or with an error, but it executes only once.

• On the other hand, an Observable represents a stream of data that can be accessed at any time; it can emit multiple values over time during its execution and can be stopped at any point.
🤔6👍42
🔧 TOAST UI Calendar is a JavaScript calendar that has everything you need.

Here are some features:
Supports various schedule views: daily, weekly, monthly
Allows customization of the date UI and schedule information
Drag & Drop: you can drag elements with the mouse
Customizable UI themes

TOAST UI Calendar is an excellent component for your web application.
3👍2
Free Figma Template: Food delivery

🧠 Difficulty: 🥕🥕

#Figma #Template
👍10🔥21