Skip to content

Instantly share code, notes, and snippets.

View ahmedsomaa's full-sized avatar
🦊
Better Call Somaa

Ahmed Abu Qahf ahmedsomaa

🦊
Better Call Somaa
View GitHub Profile
@josethz00
josethz00 / sr-frontend-interview-questions-answered.md
Last active September 6, 2025 02:05
Sr. Frontend Interview Questions

Senior Frontend Interview Questions

Some questions about frontend development that might be in your next job interview. The questions were formulated by @mauvieira, a super senior fullstack developer

General Frontend

  • What are the strategies we can use to optimize the performance of web applications?

    • CDNs, GraphQL (maybe) to reduce overfetching, improve backend performance, use SSR and/or SSG, lazy loading for loading assets only when it's needed, minimize and compress HTML, CSS and JS files, and optimize images by compressing and resizing them.
  • What are Web Vitals (LCP, FID, CLS)? And how are they applied in the real world?

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active October 4, 2025 11:36
Conventional Commits Cheatsheet
@marko-jankovic
marko-jankovic / CSS and HTML interview questions.md
Last active July 29, 2025 15:24
CSS and HTML interview questions

1. HTML Fundamentals

HTML Structure and Semantics

  • What is HTML?
    HTML (Hypertext Markup Language) is the standard language used to create and design documents on the web. It structures content using elements or tags.

  • What are the building blocks of HTML5?
    The building blocks of HTML5 include elements like <header>, <footer>, <section>, <article>, and <nav> which enhance semantic meaning and accessibility.

  • What is the purpose of the `` element in HTML?