View Platformer Tiles.json
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
{ "columns":44, | |
"editorsettings": | |
{ | |
"export": | |
{ | |
"format":"Godot", | |
"target":"Platformer Tiles.tres" | |
} | |
}, | |
"image":"..\/assets\/Platformer Tileset\/Platformer Tiles.png", |
View gist:a40f2d5cd1df9bb96d9249e881f3e8be
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
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:"); |
View latency.txt
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
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 |
View whygodwhy.php
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
/* 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; | |
} |