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

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.

🤝🏻  Connect with Me

Pinned

  1. 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'
  2. ext_selection_sort.dart ext_selection_sort.dart
    1
    extension Sorting on List<int> {
    2
      List<int> sortAsc() {
    3
        List<int> list = this; // Selection sort algorithm
    4
        int length = this.length;
    5
    
                  
  3. 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
    }
  4. chatapp chatapp Public

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

    JavaScript 1