Skip to content
View iswanj's full-sized avatar
:shipit:
I may be slow to respond.
:shipit:
I may be slow to respond.

Organizations

@holajs @Archisoft-Global

Block or report iswanj

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
iswanj/README.md

Hi there 👋 I'm Iswan

I am a passionate Frontend Developer who excels at creating user-friendly web experiences. With a strong commitment to continuous learning and staying updated with the latest technologies, I strive to architect frontend systems that prioritize maintainability and deliver exceptional performance. Currently, I hold the position of Lead Front-end Developer at CIMB bank (via Avensys Consulting). Prior to that, I worked as a Freelance Lead Front-end Developer with Toptal. I have been actively engaged in web development professionally since 2012, with a focus on modern frontend development using React since 2015.

Outside of work, I have a deep passion for photography, which I pursue as a hobby. It allows me to explore my creative side and capture captivating moments through the lens.

Feel free to connect with me on social media.

Languages and Tools:

Visual Studio Code

JavaScript

React

React

Node.js

Git

Sass

HTML5

CSS3

Git

Pinned Loading

  1. react-mf-demo react-mf-demo Public

    WIP - Nextjs, Turborepo, Zustand and ReactQuery Folder Structure

    CSS

  2. angular-app-test angular-app-test Public

    Angular App with lerna package manager

    TypeScript

  3. simple-form-ui-kit simple-form-ui-kit Public

    Simple form ui kit with schema based validation.

    TypeScript 1

  4. binary-option-platform binary-option-platform Public

    JavaScript 1

  5. Sample_PR.md Sample_PR.md
    1
    ## **Login Form Feature Merge Request**
    2
    
                  
    3
    
                  
    4
    ### **Changes**  
    5
    This merge request includes the following changes:
  6. Data Structure in JavaScript Data Structure in JavaScript
    1
    // Linked List implementation
    2
    class Node {
    3
      constructor(data, next = null) {
    4
        this.data = data;
    5
        this.next = next;