Skip to content
View bmansk8's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home
Block or Report

Block or report bmansk8

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
bmansk8/README.md
  • ๐Ÿ‘‹ Hi, Iโ€™m @bmansk8
  • ๐Ÿ‘€ Iโ€™m interested in music, guitar, running, web development
  • ๐ŸŒฑ Iโ€™m currently learning clean architecture in both c# and react/ts/js
  • ๐Ÿ“ซ How to reach me Email: bmansk14@gmail.com or Phone: 678-704-7626
  • ๐Ÿ˜ƒ Want to see more of me? Go to my portfolio!

Pinned Loading

  1. portfolio portfolio Public

    my portfolio in web form!

    JavaScript

  2. A simple discord bot. A simple discord bot.
    1
    //if you use vs code
    2
    //node .    starts app
    3
    //ctrl c    closes bot
    4
    //ctrl `    opens console
    5
    
                  
  3. Koa-url-shortner Koa-url-shortner Public

    TypeScript

  4. rock-paper-scissors rock-paper-scissors Public

    Python

  5. css-processor css-processor Public

    A simple tool to make css classes and save them in certain file types

    JavaScript

  6. a simple function that can take a fi... a simple function that can take a file, and convert it's contents to a string
    1
    async function convertFileToString(filepath) {
    2
      return await fetch(filepath)
    3
        .then((response) => {
    4
          return response.text();
    5
        })