Skip to content

Instantly share code, notes, and snippets.

View FathomCode's full-sized avatar

Fathom Code FathomCode

View GitHub Profile
@FathomCode
FathomCode / 2048 Evolution.MD
Last active November 17, 2019 18:07
Developing 2048 Evolution

Android Game: 2048 Evolution

Developing "2048 Evolution" Game for Android building in Java/LibGDX The 2048 is a puzzle game whose purpose is to drag tiles on a grid, to combine them and create a tile with the number 2048.

This game is a fun and educational copy of the game of 2048.

The original game of 2048 was created in March 2014 by Gabriele Cirulli, an Italian web-designer, in the form of a free online game and open source. Himself strongly inspired by Veewo Studio's 1024 game and Asher Vollmer's Threes game.

Getting Started

@pmbaldha
pmbaldha / get-current-url-in-wordpress-wp.php
Created November 16, 2016 09:47
Get current url in wordpress
global $wp;
$current_url = home_url(add_query_arg(array(),$wp->request));
@qstudio
qstudio / get_post_by_meta.php
Last active April 4, 2024 11:24
WordPress / Get Post by Meta Value
<?php
/**
* Get Post object by post_meta query
*
* @use $post = get_post_by_meta( array( meta_key = 'page_name', 'meta_value = 'contact' ) )
* @since 1.0.4
* @return Object WP post object
*/
function get_post_by_meta( $args = array() )