- Tenda
- Tali
- Lampu tenda
- Flysheet
- Kompor
- Peralatan masak (panci)
- Jerry Can
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
require 'vcr' | |
require 'webmock/rspec' | |
WebMock.disable_net_connect!(allow_localhost: true) | |
VCR.configure do |c| | |
c.cassette_library_dir = Rails.root.join('spec', 'cassettes') | |
c.ignore_localhost = true | |
c.hook_into :webmock | |
c.configure_rspec_metadata! |
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
require: | |
- rubocop-performance | |
- rubocop-rails | |
AllCops: | |
TargetRubyVersion: 2.7 | |
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop | |
# to ignore them, so only the ones explicitly set in this file are enabled. | |
DisabledByDefault: true | |
SuggestExtensions: false |
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
// ignore_for_file: avoid_print, lines_longer_than_80_chars, diagnostic_describe_all_properties | |
/// This simple example app allows users to view and add to a list of log | |
/// messages. | |
/// | |
/// It demonstrates how to: | |
/// | |
/// - initialize Couchbase Lite, | |
/// - open a database, | |
/// - create an index, |
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
#!/usr/bin/env bash | |
sudo apt-get install -y --no-install-recommends \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
software-properties-common | |
curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add - |
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 | |
require_once(dirname(__FILE__) . '/../../Veritrans.php'); | |
if(empty($_POST['token_id'])) { | |
die('Empty token_id!'); | |
} | |
Veritrans_Config::$serverKey = 'server key'; |
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
<html> | |
<head> | |
<title>Two Click</title> | |
</head> | |
<body> | |
<h1>Two Click</h1> | |
<form action="two_click_charge.php" method="POST" id="payment-form"> | |
<p> | |
<label>PIN</label> | |
<input id="card-pin" name="card-pin" size="20" type="text" autocomplete="off"/> |
#Status explanation reference : (http://docs.veritrans.co.id/sandbox/status_code.html)
##Mandiri clickpay ###success notification
{
"status_code" : "200",
"status_message" : "Veritrans payment notification",
"transaction_id" : "e9ebb49c-9d41-4852-b68f-74e76b5ea8dc",
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 | |
require_once(dirname(__FILE__) . '/../../Veritrans.php'); | |
Veritrans_Config::$serverKey = 'change_with_your_server_key'; | |
// Uncomment for production environment | |
// Veritrans_Config::$isProduction = true; | |
// Uncomment to enable sanitization |