- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide, https://ios.cfw.guide/sideloading-apps/
| #!/bin/bash | |
| # | |
| # Chrome Profile Lister | |
| # Lists all Google Chrome profiles with email addresses only | |
| # Format designed for easy selection and extraction in Keyboard Maestro | |
| # | |
| # Process command-line options | |
| SHOW_HEADER=true | |
| FORMAT="default" |
This project provides a simple way to implement fluid typography in Sass using mixins and functions. It enables responsive font sizing that adjusts based on the viewport width while maintaining a smooth transition between different breakpoints.
- Uses
clamp()for smooth scaling between min and max font sizes. - Supports multiple predefined text styles.
- Automatically converts pixel values to
remfor better scalability. - Customizable via SCSS maps.
| #popclip | |
| name: Iconify | |
| identifier: com.pilotmoon.popclip.extension.iconify | |
| description: Search icons on Iconify | |
| popclip version: 4151 | |
| icon: iconify:simple-icons:iconify | |
| app: { name: Iconify, link: https://icon-sets.iconify.design/ } | |
| url: https://icon-sets.iconify.design/?query=*** |
| services: | |
| wordpress: | |
| depends_on: | |
| - db | |
| - mailpit | |
| image: wordpress:6.5.3-php8.3-apache | |
| restart: always | |
| ports: | |
| - 8080:80 | |
| - 7443:443 |
| @use "sass:color"; | |
| @use "sass:list"; | |
| @use "sass:math"; | |
| @use "sass:meta"; | |
| // Create a list of numbers | |
| @function range($from, $to, $step: 1) { | |
| // validation | |
| @if meta.type-of($from) != "number" { | |
| @error "$from must be a number."; |
These are modern “Emulated Devices” (a.k.a. responsive dimensions) for Chrome DevTools’ Mobile Device Viewport Mode.
They are specifically Apple devices, subtracting for recent Safari UI (as in window.innerWidth/Height), and cleverly sorted with some dark-arts unicode shenanigans. (This glitchy, unloved portion of the tools sorts lexicographically, because of course it would.) Ergonomics!
Note
Updated June 2025 with some notes from folks below! TL;DR: use Vibranium!
| #!/bin/bash | |
| # Usage: ./swap-displays.sh 0 1 | |
| # Swaps display 0 (laptop display) position with the display 1 position. | |
| # Also works for more displays, for example: | |
| # ./swap-displays.sh 1 2 | |
| # Must install displayplacer before using: | |
| # https://github.com/jakehilborn/displayplacer |
If you're working on a project that requires a version of PHP higher than the versions that MAMP comes with, you can easily add additional verions.
My version of MAMP came installed with PHP 7.4.21 and 8.0.8. I'm attempting to use MAMP to host a Laravel application which requires at least PHP 8.1.
The version of PHP MAMP uses is often different than the version you have installed. I have installed PHP using Brew. I'm currently running PHP 8.1.8. If you want to check your installed version of PHP, use the terminal and run the following command:
php --version