BBasnetincozey.hashnode.dev路Feb 18, 2023 路 1 min read馃寵Dark Mode Toggle </JS>馃寵馃寲Online Demo馃寲 馃敆colours.pages.dev 馃幆index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0">...00
BBasnetincozey.hashnode.dev路Jan 18, 2023 路 1 min read鉁嶏笍Typewriter Effect <Python/>鉁嶏笍# import required modules import time import random as r # assign something to the name variable name = input("NAME ->>> ").upper() # all of the random characters that we'll use char = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890" # you may also use thes...00
BBasnetincozey.hashnode.dev路Jan 17, 2023 路 1 min read馃攽Password Generator馃攽<Python/>import random while 1: chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890@#$%&" c = 0 len = int(input("How Long? ->>> ")) amt = int(input("How Many? ->>> ")) for i in range(0,amt): password = "" ...00
BBasnetincozey.hashnode.dev路Jan 13, 2023 路 1 min read馃惒3脳3 Matrix Addition馃惒// C Program Code For 3x3 Matrix Addition #include<stdio.h> int main() { int i, j, a[3][3], b[3][3], sum[3][3]; printf("Values of Matrix A: \n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf("%d",&a[i][j]...00
BBasnetincozey.hashnode.dev路Oct 25, 2022 路 3 min read馃幆CSS Battles @Cozey馃幆#1 Simply Square CodeNow <div></div> <style> body{ background:#5d3a3a; margin: 0; } div { width: 200px; height: 200px; background: #b5e0ba; } </style> #2 Carrom CodeNow <div></div> <div></div> <div></div> <div></div> <sty...00