Skip to content
View danitechnology's full-sized avatar
๐Ÿ˜ƒ
I may be slow to respond.
๐Ÿ˜ƒ
I may be slow to respond.
Block or Report

Block or report danitechnology

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

Hi there ๐Ÿ‘‹

Hello, best wishes. Let me introduce myself, I'm Dani Ramdani. I am a Programmer with the role of FullStack Web Developer. Currently, I am studying at CUY University through the self-taught method or free online lectures from YouTube. My skills include the ability to create various types of websites, website applications, and APIs. Apart from that, I also have experience in creating WhatsApp Bots. I have been involved in various projects, including creating REST APIs, RESTful APIs using Node and Express, WhatsApp Bots with Node, DDoS script development using Python, Web Streaming Video development with native PHP, WhatsApp Clone using native PHP, as well as other projects. Thank You.

section .data
    full_name db "Dani Ramdani",0
    age db 17
    location db "Bogor, West Java, Indonesia",0
    career db "Programmer",0
    role db "FullStack Web Developer",0
    skills db "HTML & CSS", 0
           db "JavaScript", 0
           db "Bootstrap", 0
           db "Tailwind CSS", 0
           db "Node", 0
           db "Express", 0
           db "PHP", 0
           db "Java", 0
           db "Python", 0
           db "Ruby", 0
           db "C", 0
           db "C++", 0
           db "C#", 0
           db "F#", 0
           db "Go", 0
           
section .text
global _start

_start:
    ; Display personal information
    mov eax, 4         ; syscall: write
    mov ebx, 1         ; file descriptor: stdout
    mov ecx, full_name  ; message to write
    mov edx, 12        ; length of message
    int 0x80           ; interrupt to invoke syscall
    
    ; Display other information...
    
    ; Exit the program
    mov eax, 1         ; syscall: exit
    xor ebx, ebx       ; exit code 0
    int 0x80           ; interrupt to invoke syscall

Website

danitechno.com (Bio link)
danitechid.com (Portfolio)

For business

[email protected]

Popular repositories

  1. chatgpt-api chatgpt-api Public

    Forked from danitechid/chatgpt-api

    ChatGPT API - TypeScript/JavaScript. ChatGPT API ini ditenagai oleh: https://daniapi.biz.id

    JavaScript

  2. example-wa-bot-script2 example-wa-bot-script2 Public

    Forked from danitechid/example-wa-bot-script

    Example of WhatsApp bot script, using library WhatsApp Web API

    JavaScript

  3. wa-web-api wa-web-api Public

    Forked from danitechid/wa-web-api

    WhatsApp Web API - TypeScript/JavaScript. ditenagai oleh library: Baileys.

    JavaScript

  4. wa-bot-md-pairing-code wa-bot-md-pairing-code Public

    Forked from danitechid/wa-bot-md-pairing-code

    WhatsApp BOT Multi Device Pairing Code - NodeJs

    JavaScript

  5. chatgpt-wa-bot-script chatgpt-wa-bot-script Public

    Forked from danitechid/chatgpt-wa-bot-script

    ChatGPT WhatsApp Bot

    JavaScript

  6. ddos-script ddos-script Public

    Forked from danitechid/ddos-script

    DDoS Script - Python

    Python