# Required library
sudo apt-get install libasound2t64
# Download installer
wget https://app.warp.dev/download?package=deb -O warp.deb
# Install warp
sudo apt install -y ./warp.deb
# or use `sudo dpkg -i warp.deb`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$endPoint = 'https://api.github.com/graphql'; | |
$query = <<<'GRAPHQL' | |
query getUsers { | |
user { | |
id | |
name | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { spawn } from "node:child_process"; | |
import { fileURLToPath } from "node:url"; | |
import path from "node:path"; | |
const __filename = fileURLToPath(import.meta.url); | |
const __dirname = path.dirname(__filename); | |
function startLaravelServer(config = {}) { | |
const { | |
host = "127.0.0.1", |
# PHP
sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php &&
sudo apt install php8.3-common \
php-json \
mysql-client \
mysql-server \
php8.3-mysql \
php8.3-xml \
OlderNewer