Skip to content
View Alimjanov-Ibragim's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report Alimjanov-Ibragim

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Alimjanov-Ibragim/README.md

💫About Me :

Senior Frontend Engineer with 9 years of experience building scalable, high-performance web applications.

🔧 Core Stack: Next.js, React, TypeScript, Tailwind CSS, Vue.js 3, Nuxt.js 3 🤖 AI Integration: OpenAI API, AI-powered UI components, LLM-based features 📐 Design to Code: Figma → pixel-perfect responsive interfaces ⚡ Performance: SSR, lazy loading, Webpack optimization, sub-150ms API latency

What I bring to the table:

  • Launched MVPs from scratch (cinema ticketing, internet banking, iGambling platform)
  • Reduced technical debt by 45% through systematic refactoring and Composition API migration
  • Improved page performance by 25–40% via SSR, lazy loading, and bundle optimization
  • Integrated 5+ payment providers including crypto gateways for FinTech products
  • Mentored junior developers and led 25+ weekly code reviews

I specialize in translating complex Figma designs into clean, maintainable code — fast.

📩 Open to remote opportunities worldwide. Let's connect!

🌐Socials

Instagram LinkedIn

📊GitHub Stats :



✍️Random Dev Quote

Pinned Loading

  1. Modern JavaScript in React Documenta... Modern JavaScript in React Documentation
    1
    If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:
    2
    
                  
    3
    * We define variables with [`let`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let) and [`const`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/const) statements. For the purposes of the React documentation, you can consider them equivalent to [`var`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var).
    4
    * We use the `class` keyword to define [JavaScript classes](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes). There are two things worth remembering about them. Firstly, unlike with objects, you *don't* need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of `this` in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes#Boxing_with_prototype_and_static_methods).
    5
    * We sometimes use `=>` to define ["arrow functions"](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions). They're like regular functions, but shorter. For example, `x => x * 2` is roughly equivalent to `function(x) { return x * 2; }`. Importantly, arrow functions [don't have their own `this` value](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions#No_separate_this) so they're handy when you want to preserve the `this` value from an outer method definition.