In Arch Linux
mkinitcpio -p linux
shows
Possibly missing firmware for module: aic94xx
Possibly missing firmware for module: wd719x
Possibly missing firmware for module: xhci_pci
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEX/TQBcNTh/AAAAAXRSTlMAQObYZgAAAApJREFUeJxjYgAAAAYAAzY3fKgAAAAASUVORK5CYII=" data-src="http://placehold.it/100x100" class="lazy"> |
<?php | |
//====================================================================== | |
// Add post state to the projects page | |
//====================================================================== | |
add_filter( 'display_post_states', 'ecs_add_post_state', 10, 2 ); | |
function ecs_add_post_state( $post_states, $post ) { |
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Share demo</title> | |
</head> | |
<body> | |
<a data-share href="https://www.facebook.com/sharer.php?src=sp&u=http://github.com">FACEBOOK</a> | |
<?php | |
ini_set('display_errors', 1); | |
ini_set('display_startup_errors', 1); | |
error_reporting(E_ALL); | |
$database = 'db'; | |
$user = 'user'; | |
$pass = 'pass'; | |
$host = 'localhost'; |
var scripts = new Array( | |
), | |
css = new Array( | |
'/assets/css/main.min.css' | |
); | |
function downloadJSAtOnload() { | |
var element; | |
for(var i = 0; i < scripts.length; i++){ | |
element = document.createElement("script"); |
<?php | |
set_time_limit(0); | |
ignore_user_abort(true); | |
header("Connection: close"); | |
ob_flush(); | |
flush(); | |
$ftp_server = ''; | |
$ftp_user_name = ''; |
ErrorDocument 404 /404.php | |
<ifModule mod_rewrite.c> | |
RewriteEngine On | |
# переадресация www.domain.com -> domain.com | |
RewriteCond %{HTTP_HOST} . | |
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC] | |
RewriteRule ^(.*)$ http://%1/$1 [R=301,L] |
<?php | |
function scanVirus($dir) { | |
$files = scandir($dir); | |
foreach($files as $file) { | |
if(is_file($dir.$file) and pathinfo($file, PATHINFO_EXTENSION) == 'js') { | |
$content = trim(file_get_contents($dir.$file)); | |
$pattern = '#var ([a-zA-Z0-9]+)="(.[^\"]*)",([a-zA-Z0-9]+)="";for\(var ([a-zA-Z0-9]+)=(.*?).length-1;(.*?)>0;(.*?)--\){if\((.*?)%2==1\)(.*?)+=(.*?).charAt\((.*?)\)}eval\((.*?)\);#mi'; |