โป ็พๅจ็จผๅไธญใฎใตใผใใผใใImageใไฝใๅ ดๅใฏใNo Reboot ใซใใงใใฏ๏ผ
โ Choose AMI
โก Configure details
- Cloud Watch ใฏไปปๆ(่ฟฝๅ ๆ้ใ็บ็ใใ)
| # format all | |
| $ nginx -V 2>&1 | sed 's/--/\n--/g' | |
| # format module only | |
| $ nginx -V 2>&1 | sed 's/--with/\n--with/g' |
| require 'net/http' | |
| require 'uri' | |
| require 'json' | |
| uri = URI.parse("https://hooks.slack.com/services/****") | |
| payload = { | |
| text: "ใใใชใใใใงใใใ", | |
| channel: "@dareka", | |
| username: "oreore", | |
| icon_emoji: ":ghost:" |
| โโโโ | |
| โโ โ | |
| โ โ | |
| โ โ | |
| โ โ | |
| โ โ | |
| โโ โโ | |
| โโโโโ | |
| โโโโโ | |
| โโโโโ |
| <?php | |
| // Create connection | |
| $mysqli = new mysqli('HOST', 'USER', 'PW'); | |
| // Check connection | |
| if ($mysqli->connect_errno) { | |
| printf("Connect failed: %s\n", $mysqli->connect_error); | |
| exit(); | |
| } | |
| // Check DB server | |
| if ($mysqli->ping()) { |
| ini_set('xdebug.var_display_max_data', 4096); | |
| ini_set('xdebug.var_display_max_depth', 20); | |
| var_dump(); |
| SELECT (YEAR(current_date())-YEAR(`dob`)) - (RIGHT(current_date(),5) < RIGHT(`dob`,5)) AS age | |
| FROM `table_name` |
| // #contents { min-height: } | |
| function getBrowserHeight() { | |
| if ( window.innerHeight ) { | |
| return window.innerHeight; | |
| } | |
| else if ( document.documentElement && document.documentElement.clientHeight != 0 ) { | |
| return document.documentElement.clientHeight; | |
| } | |
| else if ( document.body ) { | |
| return document.body.clientHeight; |
| a { | |
| -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | |
| -moz-tap-highlight-color: rgba(0, 0, 0, 0); | |
| tap-highlight-color: rgba(0, 0, 0, 0); | |
| } |