docker exec -it -u root odoo-clone-jvm-odoo-1 psql -h db -U odoo -W restore
UPDATE "res_users" set "password" = '$pbkdf2-sha512$25000$IMSY8x7j/H.vlVJKCcF4jw$4Y9C8FdNwz9FdaJJpOAVhhrlKbYQGuQhnh7nUhZZndkb7R8ndgqPvmvO5pFTvznBtyOqYVZR0alxIFzXTgz9rg';
#/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) | |
{ |
lsusb -v 2> /dev/null | grep -e "Apple Inc" -A 2 |
Stop the server:
sudo systemctl stop docker
Create/edit the configuration at /etc/docker/daemon.json, for example:
{
"data-root": "/new/path/docker-data-root"
}
nojick rom build download https://androidfilehost.com/?a=show&w=files&flid=322282
xda index all resource https://forum.xda-developers.com/t/index-redmi-3-custom-roms-kernels-etc-19-02-2021.4099085/
KUD project https://androidfilehost.com/?w=files&flid=135748
Viper os
#!/usr/bin/env bash | |
set -e | |
[ -z "$DEBUG" ] || set -x; | |
usage() { | |
echo "$0 <repo> <tag> [<release name>] [-- <asset>...]" >&2; | |
} | |
if [ "$1" = "-h" -o "$1" = "--help" ]; then |
outputDir=/tmp/screenshots/framed | |
mkdir -p ${outputDir} | |
########## | |
# iPhone # | |
########## | |
padPath=/tmp/iphone-pad.png | |
convert -size 1125x185 xc:#e65562 ${padPath} | |
for filePath in $(find /tmp/screenshots/ | grep iPhone | grep -v framed) ; do |
#!/bin/bash | |
# ===> Set these variables first | |
branch="$GIT_BRANCH" | |
# Example: "Jaskaranbir/MyRepo" | |
repo_slug="$TRAVIS_REPO_SLUG" | |
token="$GITHUB_TOKEN" | |
version="$TRAVIS_TAG" | |
# An automatic changelog generator |