[go: up one dir, main page]

Skip to content
View dimasandhk's full-sized avatar

Block or report dimasandhk

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

Hey there! I'm Dimas Andhika 👋

👨🏻‍💻  About Me

💡  I like to explore new technologies and develop software solutions.
🎓  I am a 17 year old student who is interested and has a hobby in programming.

⚙️  GitHub Analytics


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

💭  Currently Learning

roadmap.sh

🤝🏻  Connect with Me

Pinned Loading

  1. chatapp chatapp Public

    Realtime chat app made with socketio. Full Features (room id, join & leave indicator, share location, etc)

    JavaScript 1

  2. fp-cloud-computing-b4 fp-cloud-computing-b4 Public

    Cloud Architecture Design for Cloud Computing Final Project 2024, using Digital Ocean up to 1000 RPS

    1

  3. string-prototype-capitalize.js string-prototype-capitalize.js
    1
    String.prototype.capitalize = function() {
    2
      return `${this[0].toUpperCase()}${this.slice(1)}`
    3
    }
    4
    
                  
    5
    console.log('ini teks'.capitalize()) // => 'Ini teks'
  4. FizzBuzz.js FizzBuzz.js
    1
    for(let i = 1; i <= 100; i++) {
    2
      const str = (i % 3 ? '' : 'Fizz') + (i % 5 ? '' : 'Buzz');
    3
      console.log(str || i);
    4
    }