Skip to content
View ClarkCodes's full-sized avatar
🐢
Working on New Projects, but always listening to the Universe...
🐢
Working on New Projects, but always listening to the Universe...

Highlights

  • Pro

Block or report ClarkCodes

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

ClarkCodes Logo OnTransparent_100x100px_300ppi Hey what's up man!, I'm Clark... Welcome to ClarkCodes! 👋

Twitter Follow GitHub Followers

I'm a self-taugh Software Developer, currently a Software Engineering university superior grade student, passionated about programming and technology, I like to write code and develop useful tools to improve people lives, to solve a need, to make things better, I love learning new things and practicing my coding skills, so I'm doing it constantly, I like to contribute whether creating content about software development or sharing code I've made when practicing, contributing to the world... for a brighter tomorrow.

  • 🔭 I’m currently working on my technical coding skills, 🌱 practicing a lot developing personal projects and working in my formal professional education.

  • ✨ Always listening for bussiness, 💬 if you need something, send me an e-mail, and we could talk about it.

Languages and technologies that I've worked with


JavaScript-Icon HTML-Icon CSS-Icon Python-Icon Csharp-Icon DotNet-Icon Java-Icon Kotlin-Icon

Git-Icon SQL-Server-Icon MySQL-Icon VSCode-Icon Visual-Studio-Icon Android-Studio-Icon GIMP-Icon Linux-Icon

How to reach me

  • 📫 You can send me an email to [email protected] and I'll try to answer as soon as possible, you can also follow me on my socials if you want to see my content.

Thanks for visiting

Thank you very much for visiting my profile, my projects have been made with love and passion as everything I do, it is my nature, I put my passion in my work, I like it to be crafted with attention on details, I really enjoyed doing projects, it's been pretty cool, so I'm doing more projects, I see you on YouTube with more videos and on my socials, hugs, cheers... with love and enthusiasm...

Happy Coding! <3

Clark.

Pinned Loading

  1. ClarkCodesMusicPlayer-WebComponents ClarkCodesMusicPlayer-WebComponents Public

    Customized Audio and Music Player Web Components for web sites

    JavaScript

  2. PetalsAndFruits PetalsAndFruits Public

    Proyecto Estudiantil - Sitio Web de la Tienda Petals&Fruits

    HTML 1

  3. SmallvilleClock_Java_Netbeans SmallvilleClock_Java_Netbeans Public

    Simple Useful Clock, una aplicación utilitaria con Reloj Mundial, Temporizador y Cronómetro, personalizable y disponible en español e inglés.

    Java 1

  4. Python-Scripts-And-Utilities Python-Scripts-And-Utilities Public

    Here there are Python Scripts and Utilities I've written

    Python 1

  5. Utilidad de red escrita en Python pa... Utilidad de red escrita en Python para escanear y detectar dispositivos en un segmento de red indicado con nmap, obtener su dirección ip, dirección mac y sus puertos abiertos
    1
    # NetScanner.py
    2
    # * Descripción: Utilidad de red escrita en Python para escanear y detectar dispositivos en un segmento de red indicado con nmap, 
    3
    # * obtener su dirección ip, dirección mac y sus puertos abiertos
    4
    # * Author: ClarkCodes
    5
    
                  
  6. Matrix Effect in html and javascript... Matrix Effect in html and javascript for web
    1
    // Getting the canvas from the html and also the context
    2
    const matrixCodeSpace = document.getElementById( "matrixCodeSpace" );
    3
    const matrixContext = matrixCodeSpace.getContext( "2d" );
    4
    // Setting the canvas width same as the page width
    5
    matrixCodeSpace.width = document.body.offsetWidth;