Skip to content
View belsrc's full-sized avatar
πŸ‘»
πŸ‘»

Highlights

  • Pro
Block or Report

Block or report belsrc

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

Hi , I'm Bryan!

πŸ™‹β€β™‚οΈ About Me

πŸš€ Languages and Tools:

HTML5 CSS3 Javascript Typescript Node.js C# Python Rust Sass Vue React Jest Babel Webpack MongoDB PostgreSQL Redis Visual Studio Code





belsrc's language stats
Note: Top languages is only a metric of the languages my public code consists of and doesn't reflect experience or skill level.

πŸ“Š My Github Stats

belsrc's streak stats

belsrc's Github stats

πŸ”— Connect with me

❀ Views and Followers

GitHub Badge

Pinned

  1. fjp fjp Public

    WIP, ye be warned - Function Js Playground: A place for me to play with functional coding in Javascript

    JavaScript 2

  2. vue-gen vue-gen Public

    Yet another Vue component generator

    JavaScript

  3. action-playground action-playground Public

    JavaScript 3

  4. Bitwise Explanation Bitwise Explanation
    1
    # Bitwise Explanation [[🌳](https://maggieappleton.com/garden-history "Evergreen")]
    2
    
                  
    3
    ## bitwise AND (`&`)
    4
    
                  
    5
    For each bit, if both are `1`, the resulting bit is `1`. If either or both are `0`, the resulting bit is `0`.
  5. Brief intro to functional programmin... Brief intro to functional programming in JS
    1
    # Brief intro to functional programming in JS [[🌳](https://maggieappleton.com/garden-history "Evergreen")]
    2
    
                  
    3
    > Functional programming (often abbreviated FP) is the process of building software by composing **pure functions**, **avoiding shared state**, **mutable data**, and **side-effects**. Functional programming is declarative rather than imperative, and application state flows through pure functions. Contrast with object oriented programming, where application state is usually shared and colocated with methods in objects.
    4
    >
    5
    > Functional code tends to be more concise, more predictable, and easier to test than imperative or object oriented codeβ€Šβ€”β€Šbut if you're unfamiliar with it and the common patterns associated with it, functional code can also seem a lot more dense, and the related literature can be impenetrable to newcomers.
  6. Bit Arrays Explanation Bit Arrays Explanation
    1
    # Bit Arrays Explanation in JS [[🌳](https://maggieappleton.com/garden-history "Evergreen")]
    2
    
                  
    3
    ## ArrayBuffer
    4
    
                  
    5
    Fixed length array of bytes, called a "byte array" in other languages.