- JAVA
- WEB
- ANDROID
- C#
- WPF (MORE UNDERSTAND THE STYLE OF CONTROL AND CAN WRITE BY MYSELF
- WEB (LEARNING HOW TO WRITE A WEB USE C#
- MACHINE LEARNING
- BOOK [ MACHINE LEARNING IN ACTION ]
- ENGLINE
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 // Simple PHP script to lookup for blacklisted IP against multiple DNSBLs at once. ?> | |
<html> | |
<head> | |
<title>DNSBL Lookup Tool - IP Blacklist Check Script</title> | |
</head> | |
<body> | |
<h2>IP Blacklist Check Script</h2> | |
<form action="" method="get"> | |
<input type="text" value="" name="ip"/> | |
<input type="submit" value="LOOKUP"/> |
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> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
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
<script> | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-00000000-1', 'auto'); | |
ga('send', 'pageview'); | |
</script> |
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 get_header(); ?> | |
<main class="wrap"> | |
<section class="content-area content-full-width"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<article class="article-full"> | |
<header> | |
<h2><?php the_title(); ?></h2> | |
By: <?php the_author(); ?> | |
</header> | |
<?php the_content(); ?> |
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 get_header(); ?> | |
<main class="wrap"> | |
<section class="content-area content-thin"> | |
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<article class="article-full"> | |
<header> | |
<h2><?php the_title(); ?></h2> | |
By: <?php the_author(); ?> | |
</header> | |
<?php the_content(); ?> |
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 | |
/* | |
Plugin Name: My Custom Post Types | |
Description: Add post types for movies and movie reviews | |
Author: Liam Carberry | |
*/ | |
// Hook <strong>lc_custom_post_movie()</strong> to the init action hook | |
add_action( 'init', 'lc_custom_post_movie' ); | |
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
a = setInterval( function () { var o = document.getElementsByClassName("recsGamepad__button--like"); o[0].click() }, 1000) |
NewerOlder