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.
Pick a scale (Major, Harmonic Minor, Dorian…) and a root note. Shows the notes and highlights them on piano & guitar fretboard.
View all CSS system colors (Canvas, ButtonFace, GrayText) as swatches. Click to copy. For forced‑colors adaptation.
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.
Upload a photo and extract a smooth CSS gradient that represents its color mood. Copy the linear-gradient code.
Place colored points on a canvas and see a smooth gradient mesh interpolate between them. Experimental and beautiful. Download PNG.
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.
Choose your cup size and sweetness level, and get exact proportions for tea, milk, syrup, and tapioca pearls. Perfect homemade boba every time.
Enter temperature and wind speed (or humidity) to get the 'feels like' temperature. Safety guidelines included.
Calculate resistor values for transistor fixed bias or voltage divider configuration. Quick quiescent point analysis.
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.
Evaluate the Gamma function for real and complex inputs (real part). Extension of factorial. Academic mathematics tool.
Calculate probability of k successes when sampling without replacement. Useful for quality control and card games.
Easily compute posterior probabilities given prior, likelihood, and marginal likelihood. Visual diagram. All local.
Enter a number to find its golden ratio long and short segments. Use for pleasing design layouts. Instant.
Calculate new dimensions while preserving aspect ratio, or find the ratio from width and height. For video and images.
Find out how large you can print based on image resolution in pixels. Understand DPI and megapixels.
Learn about f‑stops and their effect on light and depth. Calculate equivalent exposure adjustments. Educational.
Find the CAGR of an investment given start and end values over a time period. Instant growth rate.
Calculate your running pace per mile/km, finish time for a race, and split times. Essential for runners.
Measure your waist‑to‑hip ratio and learn about associated health risks. WHR interpretation. Educational only.
Enter two sides of a right triangle and get the third. Also gives area and perimeter. Simple and visual.
Find the centroid (center of mass) of any convex polygon by entering vertex coordinates. Useful for physics and design.