Quick guide on how to setup git signing. Information is aggregated from following sources:
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
""""""""""""""""""""""""""""""""""""""""" | |
" Akil Sagitarius Vimrc configuration " | |
""""""""""""""""""""""""""""""""""""""""" | |
set nocompatible | |
syntax on | |
set nowrap | |
set encoding=utf8 | |
set mouse=a | |
" START Vundle Configuration |
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
" shift+arrow selection | |
nmap <S-Up> v<Up> | |
nmap <S-Down> v<Down> | |
nmap <S-Left> v<Left> | |
nmap <S-Right> v<Right> | |
vmap <S-Up> <Up> | |
vmap <S-Down> <Down> | |
vmap <S-Left> <Left> | |
vmap <S-Right> <Right> | |
imap <S-Up> <Esc>v<Up> |
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
"""""""""""""""""""""""""""" | |
" Akil Vimrc Configuration " | |
"""""""""""""""""""""""""""" | |
__ _ __ _ __ | |
____ _/ /__(_) /_________ (_)___/ / | |
/ __ `/ //_/ / // ___/ __ \ / / __ / | |
/ /_/ / ,< / / // /__/ /_/ / / / /_/ / | |
\__,_/_/|_/_/_(_)___/\____(_)_/\__,_/ | |
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
public function index(){ | |
$HTTPMethod = 'GET'; | |
$RelativeUrl = '/banking/v3/corporates/h2hauto008/accounts/0613006572/statements?EndDate=2020-01-21&StartDate=2020-01-15'; | |
$AccessToken = $_GET['token']; | |
$Timestamp = '2020-01-23T13:11:00.000+07:00'; | |
$RequestBody = ''; | |
$StringToSign = | |
$HTTPMethod .":" . | |
$RelativeUrl .":" . | |
$AccessToken .":" . |
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 | |
/* | |
* 2020 - API BCA Simple | |
* Using Account Statements for Sample Request | |
* | |
* Contact : [email protected] | |
*/ | |
class bca{ |
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
<table border="1" class="table table-bordered table-striped"> | |
<thead> | |
<tr> | |
<th width="15%">1</th> | |
<th width="10%">2</th> | |
<th>3</th> | |
<th width="10%">4</th> | |
<th>5</th> | |
<th>6</th> |
NewerOlder