Skip to content

Instantly share code, notes, and snippets.

View ziadoz's full-sized avatar

Jamie York ziadoz

View GitHub Profile
@ziadoz
ziadoz / ExampleTest.php
Created January 3, 2024 17:29
Laravel Dusk - Disable Bootstrap 4 CSS Transitions
<?php
namespace Tests\Browser;
use Tests\DuskTestCase;
class ModalTest extends DuskTestCase
{
public function test_modal(): void
{
@ziadoz
ziadoz / BrowsingFailed.php
Last active March 18, 2024 17:43
Laravel Dusk Events
<?php
use Laravel\Dusk\Browser;
use Exception;
class BrowsingFailed
{
/**
* @param array $browsers array<\Laravel\Dusk\Browse>
*/
@ziadoz
ziadoz / readme.md
Created December 22, 2023 21:48
macOS - Restore Missing Finder Progress Window
@ziadoz
ziadoz / ditto.sh
Created December 22, 2023 21:43
macOS - Merge Folders Using The Command Line (Ditto)
# @see: https://apple.stackexchange.com/a/341906
# Merge folder and all sub-folders of A and B into C.
ditto A C
ditto B C
@ziadoz
ziadoz / commas.html
Last active December 20, 2023 20:47
HTML/CSS - Human List, Commas, Oxford Commas
<!DOCTYPE html>
<html>
<head>
<style>
:root {
--commas-separator: ", ";
--commas-last-separator: " & ";
}
ul.commas,
@ziadoz
ziadoz / count_max_multi_array.php
Last active December 8, 2023 16:40
PHP - Get Maximum Count of Multi-Dimensional Array
<?php
// @see: https://stackoverflow.com/questions/2189479/get-the-maximum-value-from-an-element-in-a-multidimensional-array
$array = [
'foo' => [1, 2, 3],
'bar' => [1],
'baz' => [1, 2],
];
echo count(max($array)); // 3
@ziadoz
ziadoz / macos-ms-teams-audio-driver-issues.txt
Last active November 20, 2024 06:43
macOS Microsoft Teams Audio Driver Issues
In the middle of a Zoom call my audio in/out devices changed to “Microsoft Teams Audio Devices”, despite no longer having Microsoft Teams installed.
It turns out Teams leaves its audio driver on your system running, and it occasionally decides to make itself the default.
I had to delete: /Library/Audio/Plug-Ins/HAL/MSTeamsAudioDevice.driver in the end to fix it:
sudo rm -rf /Library/Audio/Plug-Ins/HAL/MSTeamsAudioDevice.driver
https://forums.macrumors.com/threads/how-to-uninstall-core-audio-driver-msteamsaudiodevice-driver.2344450/
@ziadoz
ziadoz / old-reddit-regex.txt
Last active December 13, 2023 23:12
StopTheMadness - Old Reddit Redirect Regular Expression
Redirect from New Reddit to Old Reddit, but ignoring media links, which break and point to a Lady Gaga nice hat page.
Links:
https://old.reddit.com/r/bugs/comments/15p1ctt/why_does_clicking_any_image_on_reddit_open_the/
https://github.com/tom-james-watson/old-reddit-redirect/blob/master/background.js
https://underpassapp.com/StopTheMadness/support-chrome.html#redirects
https://gist.github.com/msanders/52700d5c5ed76f1114594ddb862b530e
Pattern:
/^https?://www\.reddit\.com(?!/(?:(?:media|gallery|settings)\b|r/\w+/s/))([/#?].*)?$/
@ziadoz
ziadoz / debug.md
Created September 26, 2023 11:28
Debugging Dusk/Codeception and ChromeDriver

Start ChromeDriver with logging enabled:

/usr/bin/chromedriver --url-base=/wd/hub --allowed-ips="" --port=9515 --log-level=INFO --log-path=/tmp/chromedriver.log

Run Dusk/Codeception:

php artisan dusk
@ziadoz
ziadoz / test.sh
Created September 21, 2023 09:40
Test PHP Projects Using Docker
docker run --rm --interactive --tty --volume $PWD:/app composer install
docker run -it --rm --name laravel-dusk -v "$PWD":/usr/src/myapp -w /usr/src/myapp php:8.2-cli php vendor/bin/phpunit