Skip to content
View ali-kamalizade's full-sized avatar
🎩
Sunhat
🎩
Sunhat
Block or Report

Block or report ali-kamalizade

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
ali-kamalizade/README.md

βœ‹ About myself

  • Co-founder of Sunhat
  • Previously Senior Software Engineer at LeanIX & Co-founder of Sedeo
  • I like to work with Angular, Nest.js, TypeScript and Vue.js
  • Passion for software engineering, SaaS, startups, test-driven development, creating fancy UIs and more
  • Looking forward to building great things

πŸš€ Experience

  • πŸ‡©πŸ‡ͺ ⭐️ Development of a Software-as-a-Service platform for Enterprise Architecture (EA), enabling organizations to make faster, data-driven decisions at LeanIX in Bonn. Tech stack: Angular, TypeScript, Java, Express.js, Nest.js, Bootstrap, Protractor
  • πŸ‡©πŸ‡ͺ ⭐️ Development of a Software-as-a-Service application to manage and book workspaces and meetingrooms to enable companies to use desk sharing at Sedeo in Cologne. Tech stack: Angular, TypeScript, Java, Express.js, MongoDB, Bulma, Protractor
  • πŸ‡©πŸ‡ͺ Development of a B2B software in the area of app pre-installation at freenet Group (remote). Tech stack: Java, Android
  • πŸ‡©πŸ‡ͺ Development of an intelligent digitisation platform that allows companies to immediately benefit from the advantages of digital technologies at an IT company in Cologne. Tech stack: Angular, TypeScript, Bootstrap

πŸ’» Open Source

  • es-check-action: a GitHub action which checks JavaScript files against a specified version of ECMAScript (ES). If a specified file's ES version doesn't match the ES version argument, this action will throw an error.
  • text-select: a tiny and helpful JavaScript library to easily select text on web pages. Available on NPM.
  • better-protractor: write better end-to-end tests by providing a simple API on top of Protractor. Available on NPM.
  • scripts: a collection of reusable scripts, functions and aliases related to development
  • 🚧

🌏 Let's connect

🍏 Everything else

  • 🀝 Officially recognized friend of TypeScript
  • πŸ†˜ Reported one security vulnerability for a popular open-source project and got paid for it
  • πŸ‡―πŸ‡΅ ζœ‰ι›£γ†γ”γ–γ„γΎγ™γ€‚

Pinned

  1. es-check-action es-check-action Public

    A GitHub action that checks JavaScript files ES version against a specified ES version. If a specified file's ES version doesn't match the ES version argument, this action will throw an error and l…

    TypeScript 5 1

  2. scripts scripts Public

    This is a collection of reusable scripts, functions and aliases related to development.

    3 1

  3. A sample implementation of a health ... A sample implementation of a health check endpoint for Node.js using Express
    1
    // app.js: register the route. In our case, we don't want authorization for this route
    2
    app.use('/healthcheck', require('./routes/healthcheck.routes'));
    3
    
    
    4
    
    
    5
    // healthcheck.routes.js: return a 2xx response when your server is healthy, else send a 5xx response