Skip to content

Instantly share code, notes, and snippets.

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

Clark ClarkCodes

馃悽
Working on New Projects, but always listening to the Universe...
View GitHub Profile
@ClarkCodes
ClarkCodes / efectoMatrix.js
Created April 12, 2023 16:42
Matrix Effect in html and javascript for web
// Getting the canvas from the html and also the context
const matrixCodeSpace = document.getElementById( "matrixCodeSpace" );
const matrixContext = matrixCodeSpace.getContext( "2d" );
// Setting the canvas width same as the page width
matrixCodeSpace.width = document.body.offsetWidth;
// Getting the canvas width and height to now work with them from now on
const width = matrixCodeSpace.width;
const height = matrixCodeSpace.height;
// Filling the background with pure black
matrixContext.fillStyle = "#000";
@ClarkCodes
ClarkCodes / NetScanner.py
Created April 8, 2023 10:42
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
# NetScanner.py
# * Descripci贸n: 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
# * Author: ClarkCodes
# Imports
import nmap
# Predefined
separator = "********************************************"