Skip to content
View kastriotcunaku's full-sized avatar
🌍
Hack the planet!
🌍
Hack the planet!

Block or report kastriotcunaku

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

Kastriot Çunaku

Personal WebsiteCVLinkedInKascode


I'm a software engineer with a tendency towards web and mobile development in general. I'm always eager to provide a smooth and pleasant user experience for the end-user of web and mobile applications. My weapon of choice is JavaScript, more specifically Angular and React framework. I'm interested in UX and UI in terms of how we can influence the user through design and interactions.

Pinned Loading

  1. ngx-kc-notification ngx-kc-notification Public

    notifications - toasts - prompts

    TypeScript 1

  2. ngx-kc-selectbox ngx-kc-selectbox Public

    Angular component for select box with checkboxes and radio buttons.

    TypeScript

  3. Extract date and time formats for la... Extract date and time formats for language using Intl (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl)
    1
    /**
    2
     * Function to extract the date time format from the given language code.
    3
     * @param lang language code to provide the locale for
    4
     * @returns object with date format and time short and long format (with seconds)
    5
     */
  4. Angular Pagination - Generic Service Angular Pagination - Generic Service
    1
    import { BaseRest } from '@core/rest/base.rest';
    2
    
                  
    3
    export interface PaginationRestService<T> extends BaseRest<T> {
    4
      getItems: (page: number, size: number, sortKey?: string, sortDir?: string, ...props: any) => Promise<PaginationRestModel<T>>;
    5
    }