- TDD
- TBD
- Proper Log
- Metric
- RFC and Initiative
- Sharing Session
- RequestID/Correlation ID (end-to-end)
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
local redis = require "resty.redis" | |
local ngx_log = ngx.log | |
local kickout = "kickout." | |
local kg = "kong." | |
local logout = "logout" | |
local setmetatable = setmetatable | |
local expired_duration = 604800 | |
local _M = {} | |
local function send_to_stdlog(message) |
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 | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Models\PsbAkdDokumenOutput; | |
use App\Models\PsbAkdCsntr; | |
use Barryvdh\DomPDF\Facade\Pdf; | |
class DocumentController extends Controller |
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
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:fluttertoast/fluttertoast.dart'; | |
import 'package:http/http.dart' as http; | |
class TableWidget extends StatefulWidget { | |
final List<String> headers; | |
final String apiUrl; |
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
<div class="login-box"> | |
<h2>Login</h2> | |
<form> | |
<div class="user-box"> | |
<input type="text" name="" required=""> | |
<label>Username</label> | |
</div> | |
<div class="user-box"> | |
<input type="password" name="" required=""> | |
<label>Password</label> |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDGDLF5dMrrx5boOwJ3IIYmdDw5JNS5h1rGZJTm94Br28sY9weBWTbvSh0SvysbFEJ+wNYiULg+AmdRASeReiBTvKfNySrog8zrb76adhv/44PDScRm6qd0jYhJvV7QYAWqnjJahhe1XSdNKsD+BHyvKDj1TqujIbpt430ImPP9RErrCHlAnuEIrjMw+vkvfMJGxjm/WPuTEKVSdTK+5FZTN582sdNJNzsb/EE1wUhqApKRNdaPPGDay31bDr7N53cHqutW5VEXPQmsEQv3EjpczJqfzsMsjhPUJAA6QTWs08m9admM49WsmmYMPhnpI39j2WLbzeDfT85uHrZYJ2c8I6FF4bPD0DZcLoCUb5M0WyMFTxSwr0egL10icjeN3p5URoTuZFYWYw/CxYWBboUJr7BLrHwjj6qmFghHPfhn6hUVHg3XqLf9ox6hEzuLeSMlKsa2n6gswXiHCbtFXQN0eNlQgWSO4Y/m2x8EGBOe4jMSHyobDHGAw07bZc3pUWFAT+FYobIYghkQuC0lAjaS5fZmc8p/p3MChQSykyHXB3I5ZjlT43+QTSEX9VPFUiTd5JYym7OxZSDyDabVwSkN9btfvD+KVrCvVCRiPpG8nJxNQr4WbWzq6sns0WkxT3w6UqL7kYBfdzhNTsRLE3UL6/qOwxQvFTD1yF+iF36Z1w== [email protected] |
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
# Design | |
## Design pattern (Low - Level) | |
- Definition | |
- Best practice technique | |
- Reusable solution | |
- To solve common problems | |
- How components build | |
- Common problems | |
- Availibility | |
- Minimize mean time to recovery |
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
@charset "UTF-8"; | |
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700"); | |
.doku-payment { | |
color: #333333; | |
font-family: "Roboto", sans-serif; | |
} | |
.doku-payment .step-container { | |
background: #ffffff; | |
border-radius: 4px; |
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 | |
vpn_name=$1 | |
vpn_password=$(ga-cmd) | |
echo "$vpn_name,$vpn_password" | |
/usr/bin/osascript <<EOF | |
tell application "System Preferences" | |
reveal pane "Network" | |
activate |
NewerOlder