This will always be up to date.
GPU: Gigabyte G1 GTX 1080 @ 2.1Ghz
Motherboard: Gigabyte H170-WIFI
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | |
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"> | |
<link href="./styles.css" rel="stylesheet"> | |
<title>Hello World!</title> | |
</head> | |
<body> |
.container-RYiLUQ { background-color: #f3f3f3; } | |
.inner-ptMwR- { color: black; } | |
.channel-3YGMy1 { color: black; } | |
.name-3gtcmp { color: #2a2c31; } | |
.button-3WJ5FX { background-color: #2a2c31; } | |
.container-iksrDt { color: #2a2c31; background: #f3f3f3; } | |
.nameSpeaking-3ROx9q { color: #2a2c31; } | |
.container-3lnMWU { color: #2a2c31; background: #f3f3f3; } | |
.nameHovered-28u_Fz { color: red; } | |
.nameHoveredVoice { color: red; } |
'use strict'; | |
(function() { | |
var styleOverrides = [ | |
// remove blocked users messages automagically. | |
".message-group-blocked { display:none; }" | |
]; | |
var style = document.getElementsByClassName("guildlistOverrideStyle")[0]; | |
if (!style) { | |
style = document.createElement("style"); |
<?php | |
error_reporting(E_ALL); | |
ini_set('display_errors', 'Off'); | |
$string = file_get_contents($_POST['requestURL']); | |
$regex = '/\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i'; | |
preg_match_all($regex, $string, $matches); | |
$urls = $matches[0]; | |
// go over all links | |
foreach($urls as $url) |
This will always be up to date.
GPU: Gigabyte G1 GTX 1080 @ 2.1Ghz
Motherboard: Gigabyte H170-WIFI
<?php | |
$json = '{ | |
"Message360": { | |
"ResponseStatus": 0, | |
"Errors": { | |
"Error": [ | |
{ | |
"Code": "ER-M360-EML-104", | |
"Message": "Please enter a correctly formatted email address.", |
.message-group-blocked{ | |
display:none; | |
} |
if(msg[0] == "!eval2" && e.message.author.id === "67757683851132928"){ | |
try{ | |
e.message.channel.sendMessage("```javascript\n" + eval("require('util').inspect(" + args + ")") + "```") | |
return | |
}catch(err){ | |
e.message.channel.sendMessage(":thumbsdown: `" + err + "`") | |
return | |
} | |
} | |
if(msg[0] == "!eval" && e.message.author.id === "67757683851132928"){ |
.guild-header header { | |
height: 45px; | |
font-size: 15px; | |
padding: 0 18px; | |
box-shadow: none; | |
} | |
.guild-header header span { line-height: 46px; } | |
.guild-header header button { margin-top: -2px; } |