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
# Touch settings. Scroll to bottom. | |
# | |
# Catch-all evdev loader for udev-based systems | |
# We don't simply match on any device since that also adds accelerometers | |
# and other devices that we don't really want to use. The list below | |
# matches everything but joysticks. | |
Section "InputClass" | |
Identifier "evdev pointer catchall" | |
MatchIsPointer "on" |
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
# Touch settings. Scroll to bottom. | |
# | |
# Catch-all evdev loader for udev-based systems | |
# We don't simply match on any device since that also adds accelerometers | |
# and other devices that we don't really want to use. The list below | |
# matches everything but joysticks. | |
Section "InputClass" | |
Identifier "evdev pointer catchall" | |
MatchIsPointer "on" |
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
[SeatDefaults] | |
#disable screen saver and dmps as well | |
xserver-command=X -s 0 dpms :0 |
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
# For more options and information see | |
# http://www.raspberrypi.org/documentation/configuration/config-txt.md | |
# Some settings may impact device functionality. See link above for details | |
# uncomment if you get no picture on HDMI for a default "safe" mode | |
#hdmi_safe=1 | |
# uncomment this if your display has a black border of unused pixels visible | |
# and your display can output without overscan |
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 | |
$arrayOfNames = array('Egor','Serge','Igor'); | |
echo 'Hello '.array_rand($arrayOfNames); |