This file contains hidden or 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
{ | |
id: "23928", | |
name: "Gluttonous Zombie", | |
color: "16", | |
manacost: "[4],16", | |
cmc: "5", | |
type: "Creature ", | |
rules: "Fear (This creature can’t be blocked except by artifact creatures and/or black creatures.)", | |
power: "3", | |
toughness: "3", |
This file contains hidden or 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
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import javax.swing.JOptionPane; | |
public class Quiz | |
{ | |
public static void main(final String[] args) |
This file contains hidden or 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
var pieOptions = { | |
HtmlText : false, | |
grid : { | |
verticalLines : false, | |
horizontalLines : false | |
}, | |
xaxis : { showLabels : false }, | |
yaxis : { showLabels : false }, |
This file contains hidden or 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 | |
$matches = array();$html = 'lkjasflj <img src="some_image.jpg" alt="other text" width="500px" height="400px" checked="checked"/> lkajsdf'; | |
$junk = "[^>]*"; | |
$src = "src=\"([^\"]*)\""; | |
$width = "width=\"([^\"]*)\""; | |
$height = "height=\"([^\"]*)\""; | |
preg_match_all("#<img ($junk)>#", $html, $matches, PREG_SET_ORDER); | |
$match = array_pop(array_pop($matches)); |
This file contains hidden or 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
#include <stdio.h> | |
void main(int argc, char *argv[]) { | |
int i; | |
for (i = 0; i < sizeof(*argv); ++i) | |
{ | |
printf("test(%d) = %s\n", i + 1, argv[i + 1]); | |
} | |
} |