Code Monkey home page Code Monkey logo

module_1_bagus's Introduction

Howdy. My name is Alfath Bagus Kurnia ๐Ÿ‘‹ ๐Ÿค–


Table of Contents


My Bio ๐Ÿ‘จโ€๐Ÿ’ป

It's a me

I'm a diploma fresh graduate from Jakarta State University in Electronic Engineering and currently working as a HRD clerk.

My hobby is reading novel and playing games. My favorite programming language is Javascript, HTML, and C++(although i'm still not that good with C++).


My Links ๐Ÿ“ฎ

ย ย  ย ย 


My Technical Skill ๐Ÿง‘โ€๐Ÿ”ง

ย  ย  ย  ย 


My Favorite Browser Coding Related Sites ๐ŸŒ

Name URL Description
Firefox Firefox Very recommended browser for all device including Windows for it's sparse usage of memory and cpu and overall lightweight size
Reddit Reddit An all around forum site where people discuss and share questions and topics about anything including programming related.
edX edX A dev course site that founded by Harvard and MIT and house one of the well known courses like CS50 with it's host David J. Malan.
Stack Overflow Stack Overflow Badge Programming related forum site that looks and works exactly like Reddit. If you happened to stumble upon a problem or roadblock, then you can find most of the solution here.
GitHub GitHub The most popular site to publish and collaborate on Git repositories. Just like Git, it offers distributed version control, source control management and additional features that can only be found in this site.
ChatGPT ChatGPT A large language-model-based AI chatbot developed by OpenAI. Which makes it best utilized for coding by asking the exact step for creating a certain script

Code Examples I Have Written ๐Ÿ‘พ

HTML Calculator

<!DOCTYPE html>
<html>
    <head>
        <title>Calculator</title>
        <style>
            button {
                width: 100%
            }
        </style>
    </head>
    <body>
        <table>
            <tr>
                <th colspan="4"><input type="text" name="display"></th>
            </tr>
            <tr>
                <td colspan="2">
                    <button>AC</button>
                </td>
                <td>
                    <button>C</button>
                </td>
                <td>
                    <button>*</button>
                </td>
            </tr>
            <tr>
                <td>
                    <button>7</button>
                </td>
                <td>
                    <button>8</button>
                </td>
                <td>
                    <button>9</button>
                </td>
                <td>
                    <button>/</button>
                </td>
            </tr>
            <tr>
                <td>
                    <button>4</button>
                </td>
                <td>
                    <button>5</button>
                </td>
                <td>
                    <button>6</button>
                </td>
                <td>
                    <button>+</button>
                </td>
            </tr>
            <tr>
                <td>
                    <button>1</button>
                </td>
                <td>
                    <button>2</button>
                </td>
                <td>
                    <button>3</button>
                </td>
                <td>
                    <button>-</button>
                </td>
            </tr>
            <tr>
                <td>
                    <button>+-</button>
                </td>
                <td>
                    <button>0</button>
                </td>
                <td>
                    <button>.</button>
                </td>
                <td>
                    <button>=</button>
                </td>
            </tr>
        </table>
    </body>
</html>

Read .txt Files On Javascript

const fs = require('fs');

const catCallback = (err, cat) => {
    if(err) {
        console.log('Invalid data type');
        return;
    }
    console.log(cat);
};

fs.readFile('notes.txt', 'utf8', catCallback);

Server Initialization In Javascript Using Hapi

const Hapi = require('@hapi/hapi');
const routes = require('./routes');

const init = async () => {
  const server = Hapi.server({
    port: 5000,
    host: 'localhost',
  });

  server.route(routes);

  await server.start();
  console.log(`Server running on ${server.info.uri}`);
};

init();

Week 00 Assignment Qualifications ๐Ÿ“‹

  • Create the fundamental Markdown structure for your responsive website.
  • Emphasize the utilization of proper Markdown semantics for each element.
  • Develop the core content of your website, including headers, paragraphs, and images.
  • Initialize a GitHub repository for your project and push your initial Markdown code into it.

module_1_bagus's People

Contributors

abk1708 avatar github-classroom[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.