R: 0 / I: 0 Newfag idk what to post so have something halfchan? ?
R: 0 / I: 0
^_^
Cringe Chan ^_^
R: 1 / I: 0 I wish people would stop saying "bullsoykaf." It's like they forget the word is filtered. It's just not punchy enough with three syllables.
R: 1 / I: 0
test inline code
test
test
test
R: 1 / I: 0 why do is everybody posting ''test''?
R: 1 / I: 3 this is a test
R: 1 / I: 1 testing lol
R: 4 / I: 0 test
R: 0 / I: 0
Shrine
You can delete a guy's thread but not his feels.
But seriously, whoever deleted my thread was really nice to not ban me.
R: 7 / I: 0
test post
yep
R: 6 / I: 0 Test for mod messages. Be patient.
R: 0 / I: 0 test
R: 3 / I: 0
firefux-mobile android file request and post
ifbthis post succeds then all is well on this test
k
R: 9 / I: 4
Test
He stepped out of the way to let a dark-suited sarariman, by spotting the Mitsubishi-Genentech logo tattoed across the back of the man’s right hand … The sarariman had been Japanese, but the Ninsei crowd was a gaijin crowd.
R: 0 / I: 0
Testing
Just testing.
R: 0 / I: 0
Im a test
Im the testest
R: 0 / I: 0
<?php/* * SCORE ( 18 pts ) * * file : 1 * statements : 11 * variables : 6 (arrays and class instance are counted as a variable) *//* * We use the PHP's autoload function to load dynamicaly classes. */require_once("autoload.php");/* * We use a template engine because as you know it is far better * to use MVC :-) */require_once("lib/twig/lib/Twig/Autoloader.php");Twig_Autoloader::register();/* * We create a new Twig Environment with debug and templates cache. */$twig = new Twig_Environment( new Twig_Loader_Filesystem( "design/templates" /* The place where to look for templates */ ), array( 'debug' => true, 'cache' => 'var/cache/templates' ));/* * We add the debug extension because we should be able to detect what is wrong if needed */$twig->addExtension(new Twig_Extension_Debug());/* * We create a new page to be displayed in the body. */$page = new Page();/* * We add our famous title : Hello World !!! */$page->add( 'Title', array( 'level' => 1, 'text' => 'Hello World' ) );/* * We are now ready to render the content and display it. */$final_result = $twig->render( 'pages/hello_world.twig', array( 'Page' => $page->toXML() ));/* * Everything is OK, we can print the final_result to the page. */echo $final_result;?>