Skip to content
View LucasFsc's full-sized avatar
👨‍💻
Coding
👨‍💻
Coding

Block or report LucasFsc

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

Hi, I'm Lucas 😄

Welcome to my github profile! I'm a software engineer, adept to the MERNG stack, experienced fullstack developer and problem solver 🧩

Lucas's GitHub stats Top Langs

Frameworks, Languages & Tools that I work with

NestJS GraphQL MongoDB TypeScript Express.js React React Native Node.js JavaScript Kotlin Java Docker Elasticsearch Firebase Jest Cypress Amazon AWS Google Cloud

Contacts

LinkedIn Gmail

Pinned Loading

  1. Html2Pdf Html2Pdf Public archive

    Convert Html to Pdf in Android

    Kotlin 32 18

  2. marvel-comics-app marvel-comics-app Public

    A simple Marvel comics App.

    JavaScript 1

  3. Promise async try catch util Promise async try catch util
    1
     export default async ({
    2
      promise,
    3
      onResponse = () => {},
    4
      onLoad = () => {},
    5
      onError = () => {},
  4. A simple function for RN to help wit... A simple function for RN to help with AsyncStorage
    1
    import AsyncStorage from '@react-native-community/async-storage'
    2
    
                  
    3
    export default key => ({
    4
      set: payload => AsyncStorage.setItem(key, JSON.stringify(payload)),
    5
      get: async () => {
  5. Debounce JS Debounce JS
    1
    let timer = null
    2
    
                  
    3
    export default (callback = () => {}, timing = 300) => {
    4
      if (timer) clearTimeout(timer)
    5