Below is a code for Minifiles Git integration code snippet.
Just insert the code below into this function in your Minifiles config:
config = function()
-- add the git code here
end
@echo off | |
echo Deleting HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Update | |
reg delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Update /f | |
echo Delete HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium\Registration[version and language] | |
for /f "tokens=*" %%i in ('REG QUERY "HKEY_CURRENT_USER\Software\PremiumSoft\NavicatPremium" /s ^| findstr /L "Registration"') do ( | |
reg delete "%%i" /va /f | |
) |
<?php | |
ob_start(); | |
require("../../config/database.php"); | |
require("../../config/function.php"); | |
require("../../config/functions.crud.php"); | |
session_start(); | |
// if (!isset($_SESSION['id_user'])) { | |
// die('Anda tidak diijinkan mengakses langsung'); | |
// } |
stages: | |
- test | |
# Variables: these have to match | |
# the .env.example credentials in your Laravel app | |
# use the default homestead/secret combination, since | |
# that database gets created in the edbizarro/gitlab-ci-pipeline-php:7.1 | |
# docker image. | |
variables: | |
MYSQL_ROOT_PASSWORD: root |
<div class="page" style="margin: 0px !important; padding: 0px !important; font-size:13px!important; color: black!important"> | |
<div class="oe_structure" /> | |
<div class="row justify-content-end"> | |
<div> | |
<div class="d-inline" t-if="env.context.get('proforma', False) or is_pro_forma"> | |
<h4 class="border border-dark rounded p-2">Proforma Invoice</h4> | |
</div> | |
<!--INVOICE DP--> |
#!/system/bin/sh | |
while true | |
do | |
dumpsys battery set level 100 | |
sleep 5 | |
done |
#/var/swap none swap sw 0 0 | |
#/dev/root / auto noatime,errors=remount-ro 0 1 | |
#proc /proc proc defaults 0 0 | |
/dev/root / ext4 defaults,noatime,errors=remount-ro 0 1 | |
tmpfs /tmp tmpfs defaults,nosuid 0 0 | |
LABEL=BOOT_EMMC /boot vfat defaults 0 2 |
id: account.report_payment_receipt_document
<?xml version="1.0"?>
<t t-name="account.report_payment_receipt_document">
<t t-call="web.external_layout">
<t t-set="o" t-value="o.with_context(lang=lang)"/>
<div class="page" style="font-size: 12px;">
<div class="row justify-content-end" t-if="o.partner_type">
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
class Transactional | |
{ | |
public function handle($request, Closure $next) | |
{ |