Skip to content

Instantly share code, notes, and snippets.

View quangbahoa's full-sized avatar
🎯
Focusing

Le Duy Quang quangbahoa

🎯
Focusing
View GitHub Profile
@quangbahoa
quangbahoa / Windows XP All Editions Universal Product Keys Collection.md
Last active December 28, 2025 13:31 — forked from Fuwn/README.md
Windows XP All Editions Universal Product Keys Collection.

Windows XP Logo

Although Microsoft does not support Windows XP updates any more, I'm sure there are still many users using it due to their personal habits or job demands. Therefore, XP's product keys may still be necessary. Here lies the most comprehensive list of Windows XP product keys.

The following CD keys are official and original from Microsoft, primarily used for Windows XP Professional Service Pack 2/3 VOL/VLK system images, which are among the easiest to find on the Internet.

Windows XP Setup

UTM Image

en_windows_xp_professional_sp3_Nov_2013_Incl_SATA_Drivers.iso

Run from Terminal:

python3 odoo-bin shell -d mydb --addons-path=/your/addons/path

Run from python console:

self.env['ir.module.module'].search([('name', '=', 'crm')]).button_immediate_uninstall()

AES-256 encryption and decryption in PHP and C#

Update: There is a more secure version available. Details

PHP

<?php

$plaintext = 'My secret message 1234';
@quangbahoa
quangbahoa / Commands
Created November 13, 2023 08:13 — forked from lukecav/Commands
Bulk update all product posts in WooCommerce with a post status of publish or draft using a WP-CLI command
# Bulk update all product posts with a post status of publish to draft
wp post list --field=ID --post_type=product --posts_per_page=500 --post_status=publish | xargs wp post update --post_status=draft
# Bulk update all product posts with a post status of draft to publish
wp post list --field=ID --post_type=product --posts_per_page=500 --post_status=draft | xargs wp post update --post_status=publish
@quangbahoa
quangbahoa / font.css
Created November 25, 2022 04:23 — forked from angusjune/font.css
Better Helvetica Font Family
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
}
@quangbahoa
quangbahoa / default.vcl_PREFACE.md
Created December 6, 2020 08:52 — forked from fevangelou/default.vcl_PREFACE.md
The perfect Varnish configuration for Joomla, WordPress & other CMS based websites

The perfect Varnish configuration for Joomla, WordPress & other CMS based websites

IMPORTANT: Read this before implementing one of the configuration files below (for either Varnish 3.x or 4.x+).

USE: Replace the contents of the main Varnish configuration file located in /etc/varnish/default.vcl (root server access required - obviously) with the contents of the configuration you'll use (depending on your Varnish version) from the 2 examples provided below.

IMPORTANT: The following setup assumes a 180 sec (3 minute) cache time for cacheable content that does not have the correct cache-control HTTP headers. You can safely increase this to 300 sec (or more) for less busier sites or drop it to 60 sec or even 30 sec for high traffic sites.

This configuration requires an HTTP Header and a user cookie to identify if a user is logged in a site, in order to bypass caching overall (see how it's done for Joomla & WordPress). If your CMS provides a way to add these two requirements, then you can use this configurati

@quangbahoa
quangbahoa / enable-gpf-render-cache.php
Last active November 9, 2020 11:52 — forked from leewillis77/enable-gpf-render-cache.php
Enable WooCommerce Google Product Feed extension feed item cache.
<?php
/*
Plugin Name: Product Feed Cache Fixed
Plugin URI: vncase.com
Description: Enables feed item caching in the Google Product Feed extension.
Version: 1.0
Author: Le
Author URI: https://cleon.vn
*/
ffmpeg -i data/video.mp4 -vcodec h264 -b:v 1000k -acodec mp2 data/output.mp4
ffmpeg -i data/video.mp4 -vcodec h264 -b:v 1000k -acodec mp3 data/output.mp4

Direct copy of pre-encoded file:

$ ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8

@quangbahoa
quangbahoa / functions.php
Created September 19, 2019 11:17 — forked from lukecav/functions.php
Disable Elementor overview dashboard widget in WordPress
function disable_elementor_dashboard_overview_widget() {
remove_meta_box( 'e-dashboard-overview', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'disable_elementor_dashboard_overview_widget', 40);