Quartz Cron to Unix Cron Converter - Online Format Translator
Paste a Quartz cron expression (with seconds field) and translate it to standard Unix cron. For devops migrations.
UD5 Toolkit
chmod 755 filename
chmod 755 file gives the owner full control (7=4+2+1) and everyone else read+execute (5=4+1).
x becomes s. A classic example is /usr/bin/passwd (permissions: -rwsr-xr-x).x becomes s./tmp to prevent users from deleting files they don't own, even if they have write permission. The others' x becomes t.
rwx = 4+2+1 = 7, r-x = 4+0+1 = 5, r-- = 4+0+0 = 4. Combine the three digits: 754. Special permissions add a fourth digit at the front: SUID=4, SGID=2, Sticky=1. So chmod 4755 sets SUID + 755.
cd into it or access any files inside, even if you have read permission on those files. Read permission on a directory lets you list its contents (ls), while execute lets you access files inside. Most directories should have 755 or 750 permissions.
/tmp directories (where the sticky bit provides additional protection), or fully isolated development environments. For most purposes, use more restrictive permissions like 755 or 644.
chmod -R 755 /path/to/directory. This changes permissions for the directory and all its contents. Caution: Recursive chmod can break systems if used carelessly. A safer approach for mixed file/directory permissions is: find /path -type d -exec chmod 755 {} \; (directories only) and find /path -type f -exec chmod 644 {} \; (files only). This ensures directories remain traversable while files stay non-executable.
chmod 755 file. It sets all permissions absolutely. Symbolic notation uses letters: chmod u=rwx,g=rx,o=rx file or chmod a+x file (add execute for all). Symbolic is more flexible for relative changes — you can add/remove specific permissions without knowing the current state: chmod g+w file adds group write, chmod o-rwx file removes all others' permissions. Both achieve the same result; numeric is more concise, symbolic is more expressive.
ls -l filename to see permissions in symbolic format (e.g., -rwxr-xr-x). For numeric format, use stat -c "%a %n" filename (Linux) or stat -f "%OLp %N" filename (macOS/BSD). The stat command displays the octal permission value directly. You can also use ls -l | awk '{print $1, $NF}' to see symbolic permissions for all files in a directory.
Paste a Quartz cron expression (with seconds field) and translate it to standard Unix cron. For devops migrations.
Enter a hex color and get its relative luminance per WCAG definition. Understand why this matters for contrast.
An interactive reference for regular expression tokens. Click a token to see its explanation and example. Learn regex faster.
Pick a scale (Major, Harmonic Minor, Dorian…) and a root note. Shows the notes and highlights them on piano & guitar fretboard.
Paste your CSS and strip all `!important` declarations in one click. See a list of affected rules. Local tool.
Enter water temperature and activity to get recommended wetsuit thickness (2/3mm to 6/5mm). Stay comfortable.
View all CSS system colors (Canvas, ButtonFace, GrayText) as swatches. Click to copy. For forced‑colors adaptation.
Check and beautify your TOML config files. Highlights errors and aligns tables and arrays. Safe local parsing.
Apply real-time CSS filters or canvas effects to a video and download the processed output. Experiment with video post-processing locally.
Upload a simple shape image and automatically trace its outline to a CSS clip‑path polygon. For creative web design. Local.
Paste a linear‑gradient CSS value and see all the color stops listed as a palette. Copy individual hex codes. Quick reference.
Take multiple evenly spaced screenshots from a video and combine them into a single filmstrip image. Local canvas.
Paste your full CSS and HTML; automatically identify and extract the styles needed for the visible part. Reduce render‑blocking resources.
Upload a photo and extract a smooth CSS gradient that represents its color mood. Copy the linear-gradient code.
Set up multiple @layers and use revert‑layer to fall back. See the computed style and cascade resolution live.
Searchable table of well‑known TCP and UDP ports with their services. Check 80, 443, 3306, and many more.
Place colored points on a canvas and see a smooth gradient mesh interpolate between them. Experimental and beautiful. Download PNG.
Select a meat or vegetable to see the best wood pairing for smoking. Flavor descriptions and intensity chart.
Enter two city names or coordinates and get the straight‑line distance in miles/km. Local calculation.
Calculate ideal stereo speaker placement (toe-in, distance from wall) for best soundstage. Visual diagram. For audiophiles. Local tool.
Find the optimal TV size for your room or the best viewing distance based on screen size and resolution (1080p, 4K, 8K). Simple THX/SMPTE reference.
Estimate BAC based on gender, weight, drinks consumed, and time. Uses Widmark formula. Educational tool, never encourage drunk driving. Local only.
Find out what day number of the year any date is (1‑366). Also shows days remaining. Simple reference.
Calculate the age of the moon in days since the last new moon. See illumination percentage. Simple algorithm.
Calculate the exact number of days, weeks, months, and workdays between two dates. Visual calendar highlights. Perfect for projects.
Convert any human‑readable date to a Unix timestamp in seconds or milliseconds. Also shows ISO 8601. Clean interface.
Combine multiple identical batteries in series and parallel and see the resulting voltage and total capacity. Electronics helper.
Track your subscriptions, calculate monthly and yearly totals, and find savings by pausing unused services. Local data.
Determine the minimum sample size needed for a survey or A/B test with a given confidence level and margin of error.
Compute confidence intervals for a population mean (known/unknown sigma) and proportion. All popular Z/T values. Local.