[go: nahoru, domu]

Skip to content
View adtjha's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report adtjha

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

Hi there πŸ‘‹

I love experimenting with new javascript libraries, and frameworks. Most recently, I have been working on the video streaming tech like, WebRTC peer to peer, SFU, have developed media servers using mediasoup, and deployed on Google cloud compute. I have knowledge on react, svelte and all the basic frontend tech, including redux, XState, etc. On the backend side, I use Node JS almost on every project, and have used firebase mostly though I have also worked with mongodb, postgresql. Head over to my GitHub page to look at all the projects, I have worked at.

🌱 Recent Love is typescript. Had a lot of reservations about it, just looked like making simple javascript complex unneccessarily. But when I started using it, then I understood the power of typescript. For an example, I was working on this npm package, and was running into quite a lot of type error bugs, but when i switched to typescript, I was able to complete the package, even though i ran into bugs, was able to find and fix it, thanks to typescript. It made the development journey smooth.

πŸ”­ I’m currently working on 6buns, a WebRTC API, it lets you create and maintain webrtc connections, enabling you to add live video/audio to your app.

πŸ”§ Skills

  • Frontend ( HTML, CSS, Javascript, React, Redux, Svelte, NextJs ),
  • Backend ( Node.Js, Python, Django ),
  • DBMS ( Redis, MongoDB, PostgreSQL ),
  • Version Control ( Git, Github ),
  • Hosting/Server ( Heroku, GCP, Firebase, Supabase, etc. ),
  • IDE ( Visual Studio Code, Atom )

πŸ‘¨β€πŸ’» Projects to Checkout

πŸ‘“ Check out my portfolio website.

πŸ“« How to reach me:

⚑ Project Defaults : Tailwind, Svelte, Node(Express), Firebase, GCP

Pinned Loading

  1. cbdbenev2 cbdbenev2 Public

    Forked from shubhamAyodhyavasi/cbdbenev2

    JavaScript

  2. Ludo Ludo Public

    A p5.js implementation of the popular board game Ludo.

    JavaScript

  3. Calculator Calculator Public

    A simple calculator app made by using simple HTML5 and raw JS.

    HTML

  4. ghar-wapsi ghar-wapsi Public

    Let's Go to Our Homes. Users signup, to find a herd/group, who are traveling in the same direction.

    JavaScript

  5. adi adi Public

    This repository is for my personal portfolio website.

    CSS

  6. Parse any number into its indian rup... Parse any number into its indian rupees format.
    1
    function parse(n) {
    2
      var rounded= Math.round(n);
    3
      var value = rounded.toString();
    4
      console.log(rounded, value, value.length);
    5
      var number = [];