Default keyboard shortcuts for Ghostty terminal emulator. Platform-specific differences are noted where applicable.
Action | Windows/Linux | macOS |
---|---|---|
New window | Ctrl+Shift+N | Cmd+N |
Close window | Alt+F4 | Cmd+Shift+W |
// ========================================== | |
// (WIP) TYPE-SAFE ISO 3166 COUNTRY CODES | |
// ========================================== | |
/** | |
* Countries data. | |
* This is the source that should be updated if you want to add/remove new country codes. | |
*/ | |
const countriesData = [ | |
["Afghanistan", "AF", "AFG"], |
https://cloud.google.com/php/grpc
Install via PECL:
sudo pecl install grpc
sudo pecl install protobuf
I'm sorry for the code quality, got this working in 1 night work.
anyways, this is currently working fine ignore error related to should be object
or Could not resolve reference
it will be fixed in future
requires cebe/php-openapi
package
composer req cebe/php-openapi
The package that linked you here is now pure ESM. It cannot be require()
'd from CommonJS.
This means you have the following choices:
import foo from 'foo'
instead of const foo = require('foo')
to import the package. You also need to put "type": "module"
in your package.json and more. Follow the below guide.await import(…)
from CommonJS instead of require(…)
.I'm sorry for the code quality, got this working in 1 night work.
anyways, this is currently working fine ignore error related to should be object
or Could not resolve reference
it will be fixed in future
requires cebe/php-openapi
package
composer req cebe/php-openapi
<?xml version="1.0" encoding="UTF-8" ?> | |
<ruleset name="Default"> | |
<description>Coding standard configuration.</description> | |
<rule ref="PSR12" /> | |
<rule ref="PEAR.Functions.ValidDefaultValue" /> | |
<rule ref="PEAR.Commenting.InlineComment" /> | |
<rule ref="Squiz.Operators.ValidLogicalOperators" /> | |
<rule ref="Squiz.PHP.CommentedOutCode"> | |
<properties> | |
<property name="maxPercentage" value="50" /> |
<!doctype html> | |
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- CSRF Token --> | |
<meta name="csrf-token" content="{{ csrf_token() }}"> | |
<title>{{ config('app.name', 'Laravel') }}</title> |