https://jasper.monster/sharex/TTS-INT-001-GIL.mp3
https://jasper.monster/sharex/TTS-INT-002-DONTFORGET.mp3
https://jasper.monster/sharex/TTS-INT-003-69-ASS.mp3
// Add this to wherever your theme accepts JavaScript. | |
document.addEventListener('DOMContentLoaded', function() { | |
const form = document.querySelector('form.lsb-form'); // DEFAULT LAPOSTA SIGN-UP FORM CLASS. CHANGE IF NEEDED | |
if (form) { | |
form.addEventListener('submit', function(e) { | |
e.preventDefault(); | |
const formData = new FormData(form); | |
const params = new URLSearchParams(); |
using System; | |
using System.Collections.Generic; | |
public class CPHInline | |
{ | |
public bool Execute() | |
{ | |
// List of banned artists | |
List<string> bannedArtistsList = new List<string> | |
{ |
<?php | |
// My time shortcode [mytime timezone="Europe/Amsterdam" format="h:i A"] | |
// You can also edit the defaults on lines 7 & 8, then you can just use [mytime] to show your current time | |
add_shortcode( 'mytime', 'imw_my_time' ); | |
function imw_my_time( $atts ) { | |
$atts = shortcode_atts( array( | |
'timezone' => 'Europe/Amsterdam', | |
'format' => 'h:i A' | |
), $atts, 'mytime' ); |
<?php | |
/* | |
Usage: [mytime] | |
Edit the timezone on line 8 to reflect your actual timezone. | |
Find your timezone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones */ | |
add_shortcode( 'mytime', 'ims_my_time' ); | |
function ims_my_time( $atts ) { | |
$timezone = new DateTimeZone( 'Europe/Amsterdam' ); // edit this | |
$return = wp_date("h:i A", null, $timezone ); | |
return $return; |
/* | |
* Warzone single headshot fix | |
* This fix will apply to the latest and any previous versions of Warzone | |
* Simply read this fix and apply accordingly | |
*/ | |
Stop playing the game. |
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains WEBSITE.nl \
--no-parent \