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
int a; | |
for ( a=0; a<4; a++ ) { | |
} |
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 net { | |
import flash.events.*; | |
import flash.net.*; | |
import caurina.transitions.Tweener; | |
import com.adobe.serialization.json.*; | |
public class API extends EventDispatcher{ | |
private var debug :Boolean = false; | |
public function API(){ |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:dcterms="http://purl.org/rss/1.0/modules/dcterms/" | |
xmlns:blogChannel="http://backend.userland.com/blogChannelModule" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
> | |
<channel> | |
<title>mash recent codes</title> |
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 Catalyst::Plugin::DumpRequired; | |
use strict; | |
use warnings; | |
use NEXT; | |
our %initial_modules; | |
sub setup_actions { | |
my $c = shift; | |
$c->NEXT::setup_actions(@_); |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Data::Dumper; | |
use Encode; | |
use utf8; | |
use File::Slurp; | |
#my $file = 'template2.csv'; | |
my $file = '0222.1.csv'; |
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 Catalyst::Action::Validator; | |
use strict; | |
use warnings; | |
use base 'Catalyst::Action'; | |
use MRO::Compat; | |
#use Data::Dumper; | |
sub execute { |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>jquery.inputprompt.js</title> | |
<link rel="stylesheet" type="text/css" href="http://view.jquery.com/trunk/qunit/testsuite.css"/> | |
<style type="text/css"> | |
#container { | |
position: absolute; | |
top: 0; |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Data::UUID; | |
use Digest::SHA1 qw/sha1_hex/; | |
use Benchmark qw/cmpthese/; | |
my $uuid_generator = new Data::UUID; | |
cmpthese( 10000, { |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use List::Compare; | |
use Number::Interval; | |
use Benchmark qw/cmpthese/; | |
my ($min1,$max1) = (3,100); | |
my ($min2,$max2) = (20,130); |
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
use Test::Base; | |
{ | |
package TestApp; | |
use Ark; | |
package TestApp::Controller::Root; | |
use Ark 'Controller'; | |
has '+namespace' => default => ''; |
OlderNewer