Skip to content
View iAmWillShepherd's full-sized avatar
Block or Report

Block or report iAmWillShepherd

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

Hi there 👋

Pinned

  1. OneSignalDevelopers/OneSignal-Vue-Sample OneSignalDevelopers/OneSignal-Vue-Sample Public

    Example project integrating OneSignal with Vue.js

    Vue 4 1

  2. event-triggered-notifications-tutorial event-triggered-notifications-tutorial Public

    TypeScript 1

  3. Comparing and constrasting Dart's co... Comparing and constrasting Dart's const and final keywords
    1
    Use the `const` keyword when you want to create a compile-time constant.  
    2
    Note that this value will be immutable.
    3
    
                  
    4
    ```dart
    5
    const color = 'Lava Orange';
  4. Dart allows you to throw any object ... Dart allows you to throw any object and get a stacktrace
    1
    You can throw any valid object in Dart and still get a stack trace. Note that the stacktrace is independent from the error/exception.
    2
    
                  
    3
    ## Throwing a string
    4
    
                  
    5
    ```dart
  5. Use an intersection type when need t... Use an intersection type when need to extend a type and the extends keyword when extending interfaces.
    1
    // Create intersection type to "extend" types by combining them
    2
    
                  
    3
    type BaseType = {
    4
        readonly id: string
    5
    }
  6. Use the Omit utility type to create ... Use the Omit utility type to create a new type with specific properties removed。
    1
    interface BaseType {
    2
      a: string
    3
      b: number
    4
      c: number[]
    5
    }