Skip to content

Instantly share code, notes, and snippets.

View ondrejmirtes's full-sized avatar

Ondřej Mirtes ondrejmirtes

View GitHub Profile
<?php
use Guzzle\Http\Url;
use Nette\Diagnostics\Debugger;
use Nette\Utils\Strings;
use React\Http\Request;
use React\Http\Response;
use React\SocketClient\ConnectionManager;
use React\Stream\Stream;
@ondrejmirtes
ondrejmirtes / FshlHandler.php
Created April 20, 2014 18:31
FSHL Handler for Texy
<?php
namespace AmphibianDemo\Model;
use FSHL\Highlighter;
use Texy;
use TexyHandlerInvocation;
use TexyHtml;
use TexyModifier;
<?php
class HomepagePresenterTest extends TestCase
{
public function testLogout()
{
$presenter = new HomepagePresenter;
$this->login();
$this->assertTrue(Environment::getUser()->isLoggedIn());
sudo apt-get install apache2 php5-cgi libapache2-mod-fastcgi
cd /etc/apache2/mods-enabled/
sudo ln -s ../mods-available/actions.load
sudo ln -s ../mods-available/actions.conf
/etc/apache2/mods-enabled/fastcgi.conf:
====================
<IfModule mod_fastcgi.c>
AddHandler fastcgi-script .fcgi
<?php
require_once(__DIR__ . '/dibi.min.php');
dibi::connect(array(
'driver' => 'postgre',
'host' => 'localhost',
'dbname' => 'database',
'username' => 'username',
'password' => '***',
<?php
require_once(__DIR__ . '/dibi.min.php');
dibi::connect(array(
'driver' => 'postgre',
'host' => 'localhost',
'dbname' => 'database',
'user' => 'username',
'password' => '***',
<?php
echo preg_replace(array(
'~\[b\](\w+)\[/b\]~',
'~\[i\](\w+)\[/i\]~i',
'~\[u\](\w+)\[/u\]~i',
'~\[s\](\w+)\[/s\]~i',
'~\[img\](\w+)\[/img\]~i',
'~\[url=(\w+)\](\w+)\[/url\]~i',
'~\[email\](\w+)\[/email\]~i',
I am writing my bachelor thesis,
I am working hardly as a developer,
my first CMS was called Nemesis.
it didn't work much better.
I am stuck with the PHP language,
I see ASP as an epic failage,
I tried Java EE last month,
that's when I needed to change my cloth.
@ondrejmirtes
ondrejmirtes / ConsoleDebug.php
Created March 18, 2011 12:44
PHP Nette CLI comfortable debugging
<?php
namespace Tools;
use Nette\Debug;
use Nette\Environment;
use Nette\Finder;
/**
* Shows exceptions thrown in CLI mode in browser.
<?php
namespace Proj;
use Nette\Debug,
Nette\Environment,
PDO,
NotORM,
NotOrmPanel,
NotORM_Structure_Convention;