Skip to content

Instantly share code, notes, and snippets.

View MikeMnD's full-sized avatar
👑
Thinking and coding

Mihail Ilinov MikeMnD

👑
Thinking and coding
View GitHub Profile
@MikeMnD
MikeMnD / whygodwhy.php
Last active March 10, 2017 10:55
Човек и добре да живее накрая пише плъгин за Wordpress!
/* To display the custom fields on detail page */
if(!function_exists('tmpl_fields_detail_informations')){
function tmpl_fields_detail_informations($not_show = array('title'),$title_text = TMPL_HEADING_TITLE){
global $post,$htmlvar_name,$heading_type,$used_heading;
$used_heading = array();
$is_edit='';
if(isset($_REQUEST['action']) && $_REQUEST['action']=='edit'){
$is_edit=1;
}
@MikeMnD
MikeMnD / latency.txt
Created May 19, 2017 22:46 — forked from jboner/latency.txt
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers
--------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns 3 us
Send 1K bytes over 1 Gbps network 10,000 ns 10 us
Read 4K randomly from SSD* 150,000 ns 150 us ~1GB/sec SSD
package machine;
import java.util.Scanner;
public class CoffeeMachine {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("The coffee machine has:");
@MikeMnD
MikeMnD / Platformer Tiles.json
Created March 7, 2020 01:01
What Tiled exports
{ "columns":44,
"editorsettings":
{
"export":
{
"format":"Godot",
"target":"Platformer Tiles.tres"
}
},
"image":"..\/assets\/Platformer Tileset\/Platformer Tiles.png",