View HomepagePresenterTest.php
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
<?php | |
class HomepagePresenterTest extends TestCase | |
{ | |
public function testLogout() | |
{ | |
$presenter = new HomepagePresenter; | |
$this->login(); | |
$this->assertTrue(Environment::getUser()->isLoggedIn()); |
View Apache + PHP na Ubuntu
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
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 |
View import.php
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
<?php | |
require_once(__DIR__ . '/dibi.min.php'); | |
dibi::connect(array( | |
'driver' => 'postgre', | |
'host' => 'localhost', | |
'dbname' => 'database', | |
'username' => 'username', | |
'password' => '***', |
View export.php
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
<?php | |
require_once(__DIR__ . '/dibi.min.php'); | |
dibi::connect(array( | |
'driver' => 'postgre', | |
'host' => 'localhost', | |
'dbname' => 'database', | |
'user' => 'username', | |
'password' => '***', |
View preg_replace_101.php
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
<?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', |
View gist:875109
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
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. |
View ConsoleDebug.php
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
<?php | |
namespace Tools; | |
use Nette\Debug; | |
use Nette\Environment; | |
use Nette\Finder; | |
/** | |
* Shows exceptions thrown in CLI mode in browser. |
View ModelLoader.php
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
<?php | |
namespace Proj; | |
use Nette\Debug, | |
Nette\Environment, | |
PDO, | |
NotORM, | |
NotOrmPanel, | |
NotORM_Structure_Convention; |
View main.js
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
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 }, |
View HomepageTest.java
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 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 |
OlderNewer