This file contains 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
# encoding: utf-8 | |
# | |
# Copyright 2013-2023 | Jesse G. Donat <donatj~gmail~com> | |
# https://github.com/donatj/PhpUserAgent | |
# | |
# Copyright 2019-2023 | Fabrice Creuzot (luigifab) <code~luigifab~fr> | |
# https://gist.github.com/luigifab/19a68d9aa98fa80f2961809d7cec59c0 (1.8.0-fork2) | |
# | |
# Parses a user agent string into its important parts | |
# Licensed under the MIT License |
This file contains 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 | |
/** | |
* Copyright 2013-2023 | Jesse G. Donat <donatj~gmail~com> | |
* https://github.com/donatj/PhpUserAgent | |
* | |
* Copyright 2019-2023 | Fabrice Creuzot (luigifab) <code~luigifab~fr> | |
* https://gist.github.com/luigifab/4cb373e75f3cd2f342ca6bc25504b149 (1.8.0-fork2) | |
* | |
* Parses a user agent string into its important parts | |
* Licensed under the MIT License |
This file contains 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
# GtkWindow3: restore focus on application start | |
# https://github.com/GNOME/gtk/blob/3.24.37/gtk/gtkwindow.c | |
Index: b/gtk/gtkwindow.c | |
=================================================================== | |
--- a/gtk/gtkwindow.c | |
+++ b/gtk/gtkwindow.c | |
@@ -6357,7 +6357,9 @@ gtk_window_map | |
/* inherit from transient parent, so that a dialog that is | |
* opened via keynav shows focus initially | |
*/ |
This file contains 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 | |
// configuration : https://www.visugpx.com/forum/read_13532.html | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
ini_set('default_socket_timeout', 20); | |
//echo '<pre>'; print_r($_SERVER); exit; | |
$host = getenv('HTTP_HOST'); | |
$tile = getenv('REQUEST_URI'); |
This file contains 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 | |
/** | |
* Magento | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the Open Software License (OSL 3.0) | |
* that is bundled with this package in the file LICENSE.txt. | |
* It is also available through the world-wide-web at this URL: | |
* http://opensource.org/licenses/osl-3.0.php |
This file contains 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/python3 | |
# -*- coding: utf8 -*- | |
# Created L/19/10/2020 | |
# Updated L/01/01/2024 | |
# | |
# Copyright 2020-2024 | Fabrice Creuzot (luigifab) <code~luigifab~fr> | |
# https://github.com/luigifab/python-radexreader | |
# | |
# This program is free software, you can redistribute it or modify | |
# it under the terms of the GNU General Public License (GPL) as published |
This file contains 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
-- DEBUG FOR ONE ORDER AND ONE SHIPMENT | |
-- RUN THIS BEFORE AND AFTER AND COMPARE | |
SELECT increment_id, weight | |
FROM sales_flat_order; | |
SELECT sfoi.product_type, sfoi.item_id, sfoi.parent_item_id, sfoi.product_id, CAST(sfoi.qty_ordered AS FLOAT) AS qty, | |
CAST(sfoi.row_weight AS FLOAT) AS order_row_weight, CAST(sfoi.weight AS FLOAT) AS order_weight, | |
sfsi.entity_id AS ship_item_id, CAST(sfsi.weight AS FLOAT) AS shipment_weight, | |
CAST(cped.value AS FLOAT) AS orig_weight |