Skip to content

Instantly share code, notes, and snippets.

View ondrejmirtes's full-sized avatar

Ondřej Mirtes ondrejmirtes

View GitHub Profile
<?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;
@ondrejmirtes
ondrejmirtes / main.js
Created June 29, 2011 14:09
Curvy corners - různá nastavení
curvyCorners({
tl: { radius: 5 },
tr: { radius: 5 },
bl: { radius: 5 },
br: { radius: 5 },
antiAlias: true
}, '.box,.items,#footer .up,.grey-box,#navigation ul');
curvyCorners({
tl: { radius: 20 },
@ondrejmirtes
ondrejmirtes / HomepageTest.java
Created September 3, 2011 15:33
Selenium 2.0
package fm;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import static org.junit.Assert.*;
public class HomepageTest {
@Test