Shoelace Length Calculator – Online Eyelet Pairs & Pattern
Enter number of eyelet pairs and lacing style to find the correct shoelace length in inches/cm. Never buy too short.
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.
Enter number of eyelet pairs and lacing style to find the correct shoelace length in inches/cm. Never buy too short.
Enter two city names or coordinates and get the straight‑line distance in miles/km. Local calculation.
Estimate the sinker weight needed to hold bottom in current based on line diameter, depth, and current speed.
Select drip speed or running toilet and see gallons wasted per day and annual cost. Fix leaks!
Enter piece count and piece size to estimate finished dimensions. Check if it fits your table.
Enter rolls remaining and household size to estimate weeks of supply. A humorous yet practical aid.
Enter amount of kernels and see estimated popped volume. Plan movie night snacks perfectly.
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.
Compute simple interest and final amount given principal, annual rate, and duration. Also reverse-calculates rate or time. Local only.
Enter any date and get its ISO week number, plus the start and end dates of that week. Quick reference.
Enter a hex color and get its relative luminance per WCAG definition. Understand why this matters for contrast.
Add N business days to a date, skipping weekends and optionally entering custom holidays. Regional presets.
Calculate the exact number of days, weeks, months, and workdays between two dates. Visual calendar highlights. Perfect for projects.
Choose your cup size and sweetness level, and get exact proportions for tea, milk, syrup, and tapioca pearls. Perfect homemade boba every time.
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.
Easily compute posterior probabilities given prior, likelihood, and marginal likelihood. Visual diagram. All local.
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.
Measure your waist‑to‑hip ratio and learn about associated health risks. WHR interpretation. Educational only.
Find what day of the week any past or future date falls on. Uses Zeller’s congruence. Fun historical reference tool.
Find the centroid (center of mass) of any convex polygon by entering vertex coordinates. Useful for physics and design.
Fairly distribute pooled tips among staff based on hours worked or points. Customizable percentages. All calculations local and private.
Estimate the total price after adding US state sales tax. Select state, enter amount, and see breakdown. Simple and quick, perfect for shoppers.
Project how your savings and investments grow over time with compound interest. Interactive chart and detailed table. Free and anonymous.
Estimate monthly mortgage payments with amortization schedule. Input loan amount, interest rate, and term. All calculations performed securely on your device.