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
# NOTE also for mysql db driver connections like PDO, try and ensure the following | |
## init_connect = 'SET collation_connection = utf8_unicode_ci' | |
## init_connect = 'SET NAMES utf8' | |
## SET character_set_results=utf8; | |
## SET character_set_client=utf8; | |
## SET character_set_connection=utf8; | |
#~~~~~~ | |
[mysqld] |
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
--- wp-includes/wp-db.php 2013-06-21 14:41:52.000000000 -0400 | |
+++ wp-includes/wp-db.php 2013-07-23 18:37:01.298896949 -0400 | |
@@ -1166,6 +1166,7 @@ | |
$this->ready = true; | |
$this->select( $this->dbname, $this->dbh ); | |
+ mysql_query( "SET sql_mode=''", $this->dbh); | |
} | |
/** |
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/perl | |
use warnings; | |
use strict; | |
use v5.28; | |
### Customizations | |
# | |
my $custom_path = "/home/webdragon/Downloads/hccpa/_files/customization"; | |
my $allversions = "$custom_path/git-export-all-versions"; | |
my $storfile = "$custom_path/_tracking.stor"; |
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
#!/bin/tcsh | |
# place in ~/bin/ang | |
echo "Launching angband..." | |
sleep 2 | |
# Main window | |
setenv ANGBAND_X11_FONT_0 8x13 | |
setenv ANGBAND_X11_AT_X_0 5 | |
setenv ANGBAND_X11_AT_Y_0 22 |
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
[09Nov2021 14:09:52.890] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, WebDragonG3, --version, 1.16.5-forge-36.2.2, --gameDir, C:\Users\macte\AppData\Local\.ftba\instances\9ee2def6-6bd9-448f-9ce5-906fbdf17fc8, --assetsDir, C:\Users\macte\AppData\Local\.ftba\bin\assets, --assetIndex, 1.16, --uuid, bbaca6f71b4e47ef982cee3e559736a8, --accessToken, ????????, --userType, mojang, --versionType, release, --width, 1680, --height, 1050, --launchTarget, fmlclient, --fml.forgeVersion, 36.2.2, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20210115.111550] | |
[09Nov2021 14:09:52.893] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.0.9+86+master.3cf110c starting: java version 1.8.0_51 by Oracle Corporation | |
[09Nov2021 14:09:52.908] [main/WARN] [cpw.mods.modlauncher.SecureJarHandler/]: LEGACY JDK DETECTED, SECURED JAR HANDLING DISABLED | |
[09Nov2021 14:09:53.460] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Adde |
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
[12Nov2021 01:00:52.741] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, WebDragonG3, --version, 1.16.5-forge-36.2.2, --gameDir, C:\Users\macte\AppData\Local\.ftba\instances\9ee2def6-6bd9-448f-9ce5-906fbdf17fc8, --assetsDir, C:\Users\macte\AppData\Local\.ftba\bin\assets, --assetIndex, 1.16, --uuid, bbaca6f71b4e47ef982cee3e559736a8, --accessToken, ????????, --userType, mojang, --versionType, release, --width, 1680, --height, 1050, --launchTarget, fmlclient, --fml.forgeVersion, 36.2.2, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20210115.111550] | |
[12Nov2021 01:00:52.747] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 8.0.9+86+master.3cf110c starting: java version 1.8.0_51 by Oracle Corporation | |
[12Nov2021 01:00:52.770] [main/WARN] [cpw.mods.modlauncher.SecureJarHandler/]: LEGACY JDK DETECTED, SECURED JAR HANDLING DISABLED | |
[12Nov2021 01:00:53.419] [main/INFO] [net.minecraftforge.fml.loading.FixSSL/CORE]: Adde |
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/perl | |
## Author: Scott R. Godin - MAD House Graphics | |
## Created: Wed Nov 9 12:42:52 EST 2022 | |
## Last Updated: Fri, Nov 11, 2022 11:32:04 AM | |
use warnings; | |
use strict; | |
use Getopt::Long; | |
use Pod::Usage; | |
use Regexp::Common qw/ number /; | |
use POSIX qw/ ceil /; |
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/perl | |
use warnings; | |
use v5.16; | |
use Sort::Key::IPv4 qw(ipv4sort); | |
my (%ipcounts, $monthdate); | |
my ($min, $daysago, $verbose, $help, $usage) = ( 8 , 1 ); | |
use Getopt::Long; | |
use Pod::Usage; |
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
<form action="" enctype="multipart/form-data" method="post"> | |
<p> | |
<label for="name">Name: </label> | |
<input id="name" name="name" required="" size="65" type="text" /> | |
</p> | |
<p> | |
<label for="jobtitle">Job Title:</label> | |
<input id="jobtitle" name="jobtitle" required="" size="65" type="text" /> | |
</p> | |
<p> |
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
# Force HTTPS | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{SERVER_PORT} 80 | |
RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ | |
RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ | |
RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ | |
RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ | |
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] | |
</IfModule> |
OlderNewer