Interstellar - S.T.A.Y (movie) Transistor (video game) Destiny Soundtrack (video game) Bastion (video game) FTL Faster Than Light (video game) Ori and the Blind Forest - Soundtrack (video game) JOURNEY OST (video game) Deus Ex (video game) Shadow of the Colossus - Soundtrack (video game) Undertale Soundtrack (video game)
This file contains hidden or 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 | |
$user = (object)[ | |
'username' => 'ccornutt', | |
'password' => password_hash('test1234', PASSWORD_DEFAULT), | |
'permissions' => ['test1', 'test2', 'edit'] | |
]; | |
$subject = new \Psecio\Verify\Subject\Simple($user); | |
$gate = new Gateway($subject); |
This file contains hidden or 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 | |
$set = new StrategySet(); | |
class StrategySet implements Countable | |
{ | |
public function count() | |
{ | |
return 0; | |
} |
This file contains hidden or 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
Generating optimized autoload files | |
> post-update-cmd: Illuminate\Foundation\ComposerScripts::postUpdate | |
> post-update-cmd: php artisan optimize | |
Script php artisan optimize handling the post-update-cmd event returned with an error | |
[RuntimeException] | |
Error Output: | |
Exception trace: | |
() at phar:///var/www/parseci/releases/20160715023715/composer.phar/src/Composer/EventDispatcher/EventDispatcher.php:226 |
This file contains hidden or 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
Interstellar - S.T.A.Y (movie) | |
Transistor (video game) | |
Destiny Soundtrack (video game) | |
Bastion (video game) | |
FTL Faster Than Light (video game) | |
Ori and the Blind Forest - Soundtrack (video game) | |
JOURNEY OST (video game) | |
Deus Ex (video game) | |
Shadow of the Colossus - Soundtrack (video game) | |
Undertale Soundtrack (video game) |
A partial list from the cache:
- Interstellar - S.T.A.Y (movie)
- Transistor (video game)
- Destiny Soundtrack (video game)
- Bastion (video game)
- FTL Faster Than Light (video game)
- Ori and the Blind Forest - Soundtrack (video game)
- JOURNEY OST (video game)
- Deus Ex (video game)
This file contains hidden or 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 | |
/** | |
* In the example below, I make an iterator and assign three values to it: "foo", "bar" and "baz". | |
* I then manually remove the first one (index 0) and pass the rest into foreach. I expected it | |
* to just start with index 1 and go on and loop through the rest but there's no output at all. | |
* | |
* Is this a bug? | |
*/ | |
class Items implements \Iterator |
This file contains hidden or 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
$itemId = $id.$_GET['SN']; | |
if (isset($_SESSION['productsR'][$itemId]) { | |
$itemCount = $_SESSION['productsR'][$itemId] + 1; | |
} else { | |
$itemCount = $_SESSION['productsR'][$itemId] = 1; | |
} |
This file contains hidden or 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
[ | |
{ | |
"category": "Server Security Misconfguration", | |
"vulnerabilities": [ | |
{ | |
"name": "Using Default Credentials", | |
"priority": "P1", | |
"variants": [ | |
{ "type": "Production Server", "priority": "P1" }, | |
{ "type": "Staging/Development Server", "priority": "P2" } |
OlderNewer