Drum Pattern Sequencer - Online Create Beats & Play
Lay down a beat on a grid sequencer for kick, snare, and hi-hat. Play, loop, and adjust tempo. All sound via Web Audio API.
UD5 Toolkit
Quickly look up common network ports, services, and protocols.
| Port β² | Protocol | Service | Description | Category | Range |
|---|
No ports match your search criteria.
Try adjusting the filters or search term.
netstat -tuln, ss -tuln, or lsof -i :PORT to list listening ports. To test connectivity: nc -zv HOST PORT or telnet HOST PORT.netstat -an in Command Prompt, or Test-NetConnection HOST -Port PORT in PowerShell.sudo lsof -i :PORT or sudo ss -tulnp | grep :PORT β these show the PID and process name.netstat -ano | findstr :PORT to get the PID, then tasklist | findstr PID to identify the process. Alternatively, use Resource Monitor.kill PID (Linux/macOS) or Task Manager (Windows).
Port numbers are assigned by IANA (Internet Assigned Numbers Authority). While well-known ports (0β1023) are strictly regulated, registered ports can be used by any application β meaning a port number alone doesn't guarantee which service is running. Always verify with proper network scanning tools like nmap when auditing systems. The total port range is 0β65535 because port numbers are 16-bit unsigned integers (216 = 65,536 possible values).
Lay down a beat on a grid sequencer for kick, snare, and hi-hat. Play, loop, and adjust tempo. All sound via Web Audio API.
Enter a domain and see public WHOIS info via a free API with rate limiting. Quick domain check.
Record daily systolic/diastolic readings and pulse. See a trend chart. All data saved locally in your browser.
Paste an URL or HTML and see the h1βh6 hierarchy as a tree. Detect skipped levels and improve accessibility. Clientβside.
Encode or decode data to/from Base58 (Bitcoin alphabet). Useful for cryptocurrency address generation testing. Fully local, no data sent.
Register a oneβoff background sync and see it fire when connectivity returns. Debug service worker sync logic.
Start/stop timer per project to log hours. See daily and weekly totals. Data stays in localStorage. Export summary as CSV. No account needed.
Play the classic Connect Four in your browser against a friend or CPU. Drop discs to get four in a row. Clean SVG board, local logic.
Simulate different cache strategies (Cache First, Network First, StaleβWhileβRevalidate) and see responses. Learn offline patterns.
Log the hours you slept each night and rate the quality. See a weekly bar chart. Local storage.
Create a breadcrumb schema for your website. Fill in the pages and get the readyβtoβpaste JSONβLD snippet for rich results.
Test the modern File System Access API. Open a file, modify it, and save back to disk. All sandboxed in browser.
Place multiple grid items into the same cells to create overlapping layouts. Learn the technique visually. Copy code.
Keep track of stitches and rows for your knitting projects. Multiple counters with increase/decrease shortcuts. Data saved in your browser.
Paste a SQL CREATE TABLE statement and extract just the column names as a CSV header row. For data migration.
Every second, the background color changes to the hex code corresponding to the current time (HHMMSS). A beautiful, everβchanging clock.
Calculate exact elapsed time between two dates in years, months, weeks, and days. Countdown or time already passed. Simple, visual, and local.
Generate a CSS background that shows a baseline grid. Adjust lineβheight and offset. Perfect for aligning text.
Paste CSV and get a list of SQL INSERT statements. Define table name and column mapping. All local conversion.
Scroll a container and see how sticky elements behave. Adjust top, bottom, and scroll margins. Copy the code.
Answer questions and see typical milestones for 0-5 years. Educational reference for parents. Not a diagnostic tool.
Practice aligning grid items and tracks with the placeβitems, alignβcontent, and justifyβcontent properties. Visual guide.
Structure your episode with timed segments. Includes call to action notes. Export as text.
Live cryptocurrency prices from public APIs. Clean ticker with percentage changes. Pure frontend, no account needed.
Check WHOIS information for any domain: registrar, expiration date, and name servers. Quick and private using public WHOIS data aggregators.
Practice CSS selectors by targeting plates on a virtual restaurant table. 30+ levels. Perfect for beginners.
Add or subtract days, weeks, and months to find a future or past date. Also compute duration between two dates. Essential for project planning.
Enter a URL and see a nested list of all headings (h1βh6). Check your document structure for SEO and accessibility. Pure fetch.
See how alignβitems: baseline works in grid to align different font sizes on the same baseline. Visual guide.
Convert numbers between binary, octal, decimal, and hexadecimal bases. See real-time conversion as you type. Clean and simple programmer utility.