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
# only allow specific IPs to access the page | |
# if no IP match, display 500.shtml | |
# put this right after RewriteBase / | |
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.2 | |
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.3 | |
RewriteCond %{REMOTE_ADDR} !^127\.0\.0\.1 | |
RewriteCond %{REQUEST_URI} ^/test/util/url.* | |
RewriteRule .* /500.shtml [PT,L] |
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 | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
require_once('./vendor/autoload.php'); | |
$sparkpost_key = 'your+key+here'; // your password go here | |
$recipient = '[email protected]'; // enter your email here to receive the email | |
$sender = '[email protected]'; // enter your registered domain here at sparkpost | |
$transport = (new Swift_SmtpTransport('smtp.sparkpostmail.com', 2525)) |
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
@ECHO OFF | |
rem For installation, just copy batch file to SendTo folder.. | |
SET _new_extention=mp4 | |
:start | |
if "%~1"=="" (call goto :the_end) | |
CALL :SUB_CONVERT %1 | |
SHIFT | |
goto :start |
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
since you've forced me to upgrade from 7.4x and from 7.3x i've been having a lot of issues with your latest, crappy version of skype: 8.xx. | |
creating conversations / group chats | |
so, whenever i create new group chats, everyone in the gc are administrators. like everyone can do anything they want to do with the gc unlike before where the admin is the only one capable of doing those right? well IT SUCKS. | |
conversation lists | |
the old version 7.xx of skype, the developers at that time already did a very good job of disabling notifications for lesser important conversations. the conversations are greyed out, there's a subtle message counter in orange circle. the conversations in the left-hand side are sorted the way i want them to be sorted. newer messages that arrive in muted conversations don't move up/down the conversation list in an animated fashion... JUST THE WAY I WANT IT... the new version of skype? well, it violated all of those --- the conversation gets re-ordered with an animation that is typically us |
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 | |
header("Content-type: text/plain"); | |
require_once('vendor/autoload.php'); | |
$config = array( | |
// "host" => "siteurl.com", | |
"host" => "localhost", | |
"sender" => "[email protected]", // CHANGE ME | |
"sender_name" => "My New Site to send Messages!", | |
"password" => "CHANGEMEPLS", // CHANGE ME |
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
console.log("hello world"); | |
var trace = []; | |
function getListOfUsers(){ | |
// setTimeout(() => { | |
// return trace.push('the list of users'); | |
// },1000); | |
return trace.push('the list of users'); | |
} |
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 | |
if(isset($_POST["firstname"])){ | |
echo "<pre>"; | |
echo print_r($_POST, true); | |
echo "</pre>"; | |
require("recaptchalib.php"); | |
/** | |
* user your own private key here!!! | |
* @var string |
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 | |
// taken from: https://laravel-tricks.com/tricks/wildcard-routing-setup as of January 16, 2019 11:12 AM | |
// This trick has been superseded by Laravel Sketchpad | |
// https://github.com/davestewart/laravel-sketchpad | |
// tested working for Laravel 5.7 | |
/** | |
* Wildcard routing function | |
* | |
* @param \Illuminate\Routing\Router $routeObject as the router instance |
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
@ECHO OFF | |
rem *********************************************************************** | |
rem * MOV to MPG batch converter. (2014-09-29 Sinx) * | |
rem * * | |
rem * For installation just copy batch file to SendTo directory. * | |
rem * On Win8 execute "SHELL:sendto" to go to Sendto folder. * | |
rem * * | |
rem * I got quite good compression rations with these parameters: * | |
rem * vcodec=h264 codec used * | |
rem * vb=10000 video bandwidth * |
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
Today, I found how to fix my Cloud II horrible boosted treble and very little bass problem. | |
1. Download and install Equalizer APO from | |
https://sourceforge.net/p/equalizerapo/ | |
2. During installation, select HyperX Cloud II from the playback devices available and hit OK. | |
3. Open Equalizer APO Configuration Editor from the start menu. | |
4. Inside 'config.txt' window, delete the three default presets. (click the red minuses) |