💡 I like to explore new technologies and develop software solutions.
🎓 I am a 18 year old student who is interested and has a hobby in programming.
🖖
been busy lately
In god we trust, forever learner.
- Jakarta, Indonesia
-
10:37
(UTC +07:00) - s.id/dimasandhika
- in/dimasandhk
Highlights
Pinned Loading
-
fp-cloud-computing-b4
fp-cloud-computing-b4 PublicCloud Architecture Design for Cloud Computing Final Project 2024, using Digital Ocean up to 1000 RPS
-
string-prototype-capitalize.js
string-prototype-capitalize.js 1String.prototype.capitalize = function() {
2return `${this[0].toUpperCase()}${this.slice(1)}`
3}
45console.log('ini teks'.capitalize()) // => 'Ini teks'
-
FizzBuzz.js
FizzBuzz.js 1for(let i = 1; i <= 100; i++) {
2const str = (i % 3 ? '' : 'Fizz') + (i % 5 ? '' : 'Buzz');
3console.log(str || i);
4}
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.