โšก CMD ยท 25+ life hacks for designers

web / graphic ๐Ÿ”ฅ 15 new tricks ๐ŸŽฎ fun cli
creative@cmd-studio: ~
C:\Users\Student> echo Hack the terminal! Hack the terminal! C:\Users\Student>
>

โœจ 40+ hacks โ€” click any to run. try ascii art, jokes, matrix!

1/2 ยท intro

why CMD?

Pros use CLI for speed & automation. Win+R โ†’ cmd. Prompt = C:\Users\name. Let's explore 25+ hacks.

3 ยท customization

matrix & colors

color 0a (black/green), color 0c (red). prompt $Gโœจ changes prompt.

4 ยท folders/files

mkdir, cd, echo

mkdir sketches โ†’ cd sketches โ†’ echo <svg>...> draw.svg. Web dev direct.

5 ยท internet magic

ping, ipconfig, wifi

ping google.com / ipconfig / netsh wlan show profiles

6 ยท 15+ NEW HACKS

fun APIs & ascii

๐ŸŒฆ๏ธ curl wttr.in/london?format=3 (weather). ๐Ÿ˜‚ curl v2.jokeapi.dev/joke/Any?format=txt. ๐Ÿช telnet towel.blinkenlights.nl (star wars). ๐Ÿฆœ curl parrot.live (party). ๐ŸŒˆ curl ascii.live/nyan. ๐Ÿ–ผ๏ธ dir /s *.jpg | find /c count images.

7 ยท system tricks

see hidden info

systeminfo (OS), wmic cpu get name (CPU), powercfg /batteryreport (laptop), driverquery, assoc .txt. msg * "hello" popup.

8 ยท automation & scripts

batch & vbs

notepad talk.vbs โ†’ CreateObject("SAPI.SpVoice").Speak"creative" โ†’ run. for /l %i in (1,1,5) do echo rocket %i loop.

9 ยท oneโ€‘liners

open multiple apps

start calc & start mspaint & start msedge. Create funny html: echo ^<marquee>hi</marquee> > fun.html

10 ยท networking deep

tracert, netstat

tracert google.com (route), netstat -an (connections), nslookup github.com (DNS).

11 ยท security & maintenance

sfc /scannow

sfc /scannow (system file checker) simulated. shutdown -s -t timer. shutdown -a abort.

12 ยท fun with curl

live ascii

curl ascii.live/forrest : running forest. curl ascii.live/mario (mario). curl -L https://tinyurl.com/starwars-ascii (star wars).

13 ยท count files / design

find all images

dir /s *.jpg *.png *.gif 2>nul to list all pics. dir /s *.jpg | find /c /i ".jpg" count.

14 ยท environment & fun

whoami, hostname, time

whoami (current user), hostname, echo %date% %time%. set shows all variables.

15 ยท career talk

why cli matters

Sysadmin, devops, cyber: all use cli. you just learned 40+ hacks. go build!