Configuring your dev environment to be able to use xdebug when you're working on Windows 10 (with WSL2) and Docker with VS Code can be (a bit) tricky.
This is a quick reminder of how I've done that.
- Install and configure xdebug in Docker
<?php | |
namespace App\Helpers\File; | |
use Illuminate\Http\File; | |
use Illuminate\Http\UploadedFile; | |
use Illuminate\Support\Arr; | |
class FileHelper | |
{ |
Configuring your dev environment to be able to use xdebug when you're working on Windows 10 (with WSL2) and Docker with VS Code can be (a bit) tricky.
This is a quick reminder of how I've done that.
<?xml version="1.0" encoding="UTF-8"?> | |
<web-app | |
xmlns="http://java.sun.com/xml/ns/javaee" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" | |
metadata-complete="true" | |
version="2.5"> | |
<!-- Cmd CLI Reverse HTTP Proxy Configuration --> |
I've downloaded the tool from fedora website, which automatically downloads the os image, and creates the usb for you. Set the password in the UEFI Setup, then disabled Secure Boot, set USB to be the first drive to boot. Save and exit.
Configure keyboard layout, then I've entered the drive setup section, you have leave selected the drive, then you can choose 3 options, I've selected the middle one, it's something like "manual setup", then I decided to completely wipe the windows stuff and made the partition table (GPT) like this:
mount point - partition type - size
Hi All! | |
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future. | |
Feel free to request any features you'd like to see, and I'll prioritize them accordingly. | |
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it. | |
Here's the link to the repository: https://github.com/Pulimet/ADBugger | |
App Description: | |
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups. |
<?php | |
/** | |
* Class Chainable | |
* Wrapper for convenient chaining methods | |
* | |
* @author Stefano Azzolini <[email protected]> | |
*/ | |
class Chainable { | |
private $instance = null; |