This file contains hidden or 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 http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>AdminLTE 2 | Log in</title> | |
<!-- Tell the browser to be responsive to screen width --> | |
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> | |
<!-- Bootstrap 3.3.7 --> | |
<link rel="stylesheet" href="../../bower_components/bootstrap/dist/css/bootstrap.min.css"> |
This file contains hidden or 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 | |
for($i = 1; $i <= 1000; $i++) { | |
echo $i." "; | |
if($i % 5 == 0) { | |
echo "* "; | |
} | |
} |
This file contains hidden or 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 | |
$c1 = 1; | |
$c2 = 1; | |
for($i = 1; $i <= 1000; $i++) { | |
if($c1 == 6) { | |
echo "# "; | |
echo $i." "; | |
$c1 = 0; |
This file contains hidden or 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
function decrypt(res) { | |
if(res.secure == true) { | |
@php | |
$key = explode(':', env('APP_KEY')); | |
@endphp | |
var r = JSON.parse(Base64.decode(res.data)); | |
let decrypted = CryptoJS.AES.decrypt(r.value, CryptoJS.enc.Base64.parse('{{ @$key[1] }}'), { |
This file contains hidden or 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
server { | |
# listen 80; | |
# listen [::]:80 ipv6only=on; | |
listen 443; | |
ssl on; | |
# ssl_certificate /var/www/certificates/reseller.domain.com.pem; | |
# ssl_certificate_key /var/www/certificates/reseller.domain.com-key.pem; |
This file contains hidden or 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
[ | |
{ | |
"id": 1, | |
"name": "Telkomsel", | |
"image": null, | |
"kode": "TSLPLS_", | |
"type": "Pulsa", | |
"type_kategori": null, | |
"icon": "telkomsel.png", | |
"created_at": "2020-11-15 03:48:03", |
This file contains hidden or 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 | |
namespace App\Console\Commands\Cronjobs\Hestia; | |
use App\Area; | |
use App\Cronjob; | |
use App\Zipcode; | |
use App\Gallery; | |
use App\Properties; | |
use App\Hestia_url; |
This file contains hidden or 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
/* | |
* @Author : Newbiecoder | |
* @Date : 19 September 2019 | |
* @Description : How to use sound sensor | |
*/ | |
int Sensor = A0; | |
int totalClap = 0; | |
void setup() { |