- Visit fmhy.net/android-iosguide#ios-ipas for more sources.
- Sideloading Guide: https://rentry.co/sideloadingguide
| #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
goto chrome://flags/ the press f12 and paste code then run backup() or restore()
function saveFile(filename, data) {
return new Promise(resolve => {
const blob = new Blob([data], { type: 'octet/stream' });
const url = window.URL.createObjectURL(blob);
const dom = document.createElement('a');This will get you setup with Laravel & Valet on your Mac. Quentin Watt has a good video tutorial on getting setup here as well
Go to https://brew.sh/ and copy the command and run in your terminal
It will be something like this...
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"