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
#!/bin/bash | |
if [ $# -ne 5 ]; then | |
printf "\n\nสวัสดี $USER คุณอาจต้องการความช่วยเหลือ:\n\n" | |
cat /opt/kid/help.txt | |
printf "\n" | |
exit | |
fi | |
POSITIONAL=() |
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 | |
$redis = new Redis(); | |
$redis->connect( '127.0.0.1', 6379 ); | |
legible( "Connection to redis server successfully." ); | |
$redis->auth( 'redis181409943' ); | |
legible( "Client authenticated!" ); | |
legible( "Server is running: " . $redis->ping() ); | |
// Normal string |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>COLUMN CHART BY NAWAWISH SAMERPARK</title> | |
<style id="jsbin-css"> | |
html, body { | |
width: 100%; | |
height: 100%; |