This file contains 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
[Unit] | |
Description=Chromium Kiosk | |
Wants=graphical.target | |
After=graphical.target | |
[Service] | |
Environment=DISPLAY=:0.0 | |
Environment=XAUTHORITY=/home/pi/.Xauthority | |
Type=simple | |
ExecStart=/bin/bash /home/pi/Desktop/kiosk.sh |
This file contains 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 | |
$query->allowedSorts('id', 'name') | |
->allowedFilters( | |
AllowedFilter::custom('search', new FuzzySearch('name', 'email', 'address.city')) | |
); |
This file contains 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
interface Phone { | |
number: string | |
extension?: string | |
} | |
interface Person { | |
firstName?: string; | |
lastName?: string; | |
age?: number; | |
address?: { |