mysql -u root -p < C:\laragon\backup\mysql\xxx.sqlcd C:\laragon\usr\bin && curl -L -O https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && echo @ECHO OFF > wp.bat && echo php "%~dp0wp-cli.phar" %* >> wp.battheme = Spacegray
background-opacity = 0.7
font-family = "HackGen Console NF", "Menlo", "Monaco", "Courier New", "monospace"
font-thicken = true
maximize = true
fullscreen = false
keybind = super+shift+arrow_left=previous_tab
keybind = super+shift+arrow_right=next_tab
#####################################################################################
RUNNING ODOO UPDATE COMMAND IN DOCKER CONTAINER AND OUTPUTTING LOG TO ANOTHER TERMINAL
# Inside container
odoo -u my_module_name -d my_database --stop-after-init > /proc/1/fd/1 2> /proc/1/fd/2
GIVES IN BOTH LOGS
odoo -u my_module_name -d my_database --stop-after-init 2>&1 | tee /proc/1/fd/1
######################################################################################.visually-hidden {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
width: 1px;
overflow: hidden;
position: absolute;
}<?php
class Database {
private $host = "localhost";
private $db_name = "your_database";
private $username = "db_user";
private $password = "db_pass";
public $conn;
public function connect() {
$this->conn = null;
try {
$this->conn = new PDO(
"mysql:host={$this->host};dbname={$this->db_name};charset=utf8mb4",
$this->username,
$this->password,
[
PDO::ATTR_ERRMODE# 1. Clear all Laravel caches
php artisan cache:clear
php artisan config:clear
php artisan route:clear
php artisan view:clear
php artisan optimize:clear
# 2. Clear storage directories
rm -rf storage/framework/sessions/*
rm -rf storage/framework/cache/*
rm -rf bootstrap/cache/*
# 3. Run fresh migrations (creates all tables)
php artisan migrate:fresh
# 4. Seed the database with initial data
php artisan db:seed
# 5. Clear caches again after seeding
php artisan cache:clear
php artisan config:cleCREATE USER 'user'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON dbname.* TO 'user'@'localhost';
FLUSH PRIVILEGES;
_____ Jeanson Ancheta _________
π
π»πΈ Fresh Logs Pricing πΈπ»
π UK/US Logs / Clean Bank Drops (GBP/$)
π° 10K GBP/$ = 250
π° 12K GBP/$ = 300
π° 16K GBP/$ = 350
π° 20K GBP/$ = 500
π° 30K GBP/$ = 800
π‘οΈ Verified β’ HQ Access β’ Fast Delivery
π¬ DM for escrow or direct π₯
WESTERN UNION / MONEY GRAM/BANKS LOGINS/BANK TRANFERS/PAYPAL TRANSFERS WORLDWIDE/CASHAPP/ZELLLE/APPLE PAY/SKRILL/VENMO TRANSFER
Telegram:@JeansonTooL
Group: https://t.me/+2__ynBAtFP00M2Fk
________ Scattered Spiders _________
π
π»πΈ Fresh Logs Pricing πΈπ»
π UK/US Logs / Clean Bank Drops (GBP/$)
π° 10K GBP/$ = 250
π° 12K GBP/$ = 300
π° 16K GBP/$ = 350
π° 20K GBP/$ = 500
π° 30K GBP/$ = 800
π‘οΈ Verified β’ HQ Access β’ Fast Delivery
π¬ DM for escrow or direct π₯
WESTERN UNION / MONEY GRAM/BANKS LOGINS/BANK TRANFERS/PAYPAL TRANSFERS WORLDWIDE/CASHAPP/ZELLLE/APPLE PAY/SKRILL/VENMO TRANSFER
Telegram:@JeansonTooL
Group: https://t.me/+2__ynBAtFP00M2Fk Short and readable β no long sentences, just clear phrasing.
Key responsibilities highlighted β using strong action verbs.
Experience section quick to scan β concise bullet points that emphasize achievements.
Professional tone β polished grammar, consistent formatting, no filler words.
Ideal PROFESSIONAL EXPERIENCE Checklist (Before Finalizing)
β Clear job title and dates
β Quantified impact in most bullets
β Tools and methods mentioned naturally
β No duplicate or repeated points
β Easy tohttps://blogs.ontoorsolutions.com/post/oracle-apex-css-template-directive-pattern-library/
{case STATUS/}
{when ACTIVE/}
<span class="os-badge os-badge--success">Active</span>
{when INACTIVE/}
<span class="os-badge os-badge--warning">Inactive</span>
{when CANCELLED/}
<span class="os-badge os-badge--danger">Cancelled</span>
{otherwise/}
<span class="os-badge os-badge--muted">Unknown</span>
{endcase/}create or replace type salary_history_ot as object (
salary number,
date_from date,
date_to date
);
/
create or replace type salary_history_ntt is table of salary_history_ot;
/
create or replace type employee_ot as object (
employee_id number,
first_name varchar2(100),
last_name varchar2(100),
email varchar2(100),
job_id varchar2(100),
salary_history salary_history_ntt,
constructor function employee_ot
#Providing scope definition
Connect-MgGraph -Scopes "Device.Read.All"
<#Get all devices and export to AllDevices.csv path - include columns specified under "Select-Object".
- find additional fields to include beyond:
DisplayName
operating system
operating system version
registration date/time
last logon date/time
account enabled status
compliance?
compliance grace period?
ownership
#>
Get-MgDevice -All | Select-Object DisplayName, OperatingSystem, OperatingSystemVersion, Regi# Insert master key
gpg --list-keys
#This will be the key id listed under the pub section, not the subkey
gpg --edit-key <your fingerprint>
#Inside the gpg prompt now...
#List the keys
list
#select the subkey you want to renew (need to cound from the top), first key in the list is 1
key <subkey number>
#once selected a * will appear next to the selected key
#renew the key
expire #comand to renew
2y #prompts for renew period, say 2 years or whatever value you wish
y #confirm with y
# unse