Figure with figcaption for blog post image. Smooth transition and clip path included.
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 (session_status() === PHP_SESSION_NONE) { | |
session_start(); | |
} | |
function logoutbutton() { | |
echo "<form action='' method='get'><button name='logout' type='submit'>Logout</button></form>"; //logout button | |
} | |
function loginbutton($buttonstyle = "square") { |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="theme-color" content="#0f720f"> | |
<link href="https://unpkg.com/[email protected]/nprogress.css" rel="stylesheet" /> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> | |
<link rel="stylesheet" href="xbox.app.min.css"> | |
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(CONF_BGVID == "ON"){ ?> | |
<section class="face"> | |
<!-- Specify the path to your video file, because this is video from Facepunch website :) --> | |
<div class="fullvideo"> | |
<video preload="auto" autoplay="autoplay" muted="muted" loop="loop" playsinline=""> | |
<source type="video/mp4" src="<?php echo SITE_URL; ?>/bg.mp4"> | |
</video> | |
</div> | |
<?php ;}else{ ?> | |
<section class="face" style="background-image: url( '<?php echo SITE_URL; ?>/img/bg_0.jpg' );"> |
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 | |
/** | |
* PHPMailer - PHP email creation and transport class. | |
* PHP Version 5.5. | |
* | |
* @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project | |
* | |
* @author Marcus Bointon (Synchro/coolbru) <[email protected]> | |
* @author Jim Jagielski (jimjag) <[email protected]> | |
* @author Andy Prevost (codeworxtech) <[email protected]> |
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 | |
/** | |
* Performs a search | |
* | |
* This class is used to perform search functions in a MySQL database | |
* | |
* @version 1.2 | |
* @author John Morris <[email protected]> | |
* @author Kirill Krasin <[email protected]> | |
*/ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>IPTV Channels</title> | |
</head> | |
<body> | |
<ul> | |
<?php | |
$file = './list.m3u'; //IPTV-playlist |
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 | |
//======================================================================================================= | |
// Create new webhook in your Discord channel settings and copy&paste URL | |
//======================================================================================================= | |
$webhookurl = "YOUR_WEBHOOK_URL"; | |
//======================================================================================================= | |
// Compose message. You can use Markdown | |
// Message Formatting -- https://discordapp.com/developers/docs/reference#message-formatting |
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
var fs = require('fs'); | |
var Steam = require('steam'); | |
var bot = new Steam.SteamClient(); | |
bot.logOn({ | |
accountName: 'username', //Username | |
password: 'password', //Password | |
authCode: 'code', // Steam Guard | |
shaSentryfile: fs.readFileSync('sentry') | |
}); |