- 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
<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) |
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
/** | |
* Block external WordPress API request | |
*/ | |
function wp_api_block_request($pre, $args, $url) | |
{ | |
if (strpos($url, 'api.wordpress.org')) { | |
return true; | |
} else { | |
return $pre; | |
} |
A list of my most used commands as well as a few from Oh My Zsh!
https://github.com/robbyrussell/oh-my-zsh/wiki/Cheatsheet
getmaster "feature/foo-branch"