-
Backend:
-
PHP frameworks/components:
- CodeIgniter
- PHPUnit
- Codeception
- Wordpress
- Yii2
-
-
Kohana
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
| server { | |
| listen 80; | |
| server_name campaign; | |
| root /Users/boo1ean/src/campaign/public; | |
| access_log /var/log/nginx/campaign.access.log; | |
| error_log /var/log/nginx/campaign.error.log; | |
| gzip on; | |
| gzip_http_version 1.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
| <VirtualHost *:80> | |
| ServerName test | |
| DocumentRoot /home/boo1ean/src/git/composertest/public | |
| <Directory /home/boo1ean/src/git/composertest/public> | |
| DirectoryIndex index.php | |
| AllowOverride All | |
| Order allow,deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> |
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 require_once '../vendor/autoload.php'; | |
| use Rych\Random\Random; | |
| use Slim\Slim; | |
| $app = new Slim(); | |
| $app->get('/random', function() { | |
| $random = new Random(); | |
| echo $random->getRandomString(50) . PHP_EOL; |
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
| <IfModule mod_rewrite.c> | |
| Options -MultiViews | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^ index.php [L] | |
| </IfModule> |
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 require_once 'vendor/autoload.php'; | |
| use Rych\Random\Random; | |
| $random = new Random(); | |
| echo $random->getRandomString(50) . PHP_EOL; |
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
| snippet req | |
| require("${1:lodash}")${2:;} | |
| snippet def | |
| define(function(require) { | |
| return ${1}; | |
| }); | |
| snippet layout | |
| define(function(require) { | |
| return require("marionette").Layout.extend({ | |
| template: "#template-${1:layout}", |
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
| Whois Server Version 2.0 | |
| Domain names in the .com and .net domains can now be registered | |
| with many different competing registrars. Go to http://www.internic.net | |
| for detailed information. | |
| Server Name: MICROSOFT.COM.ZZZZZZZZZZZZZZZZZZZZZZ.IS.A.GREAT.COMPANY.ITREBAL.COM | |
| IP Address: 97.107.132.202 | |
| Registrar: GANDI SAS |
-
Lang:
- php
-
Db:
- mysql
-
Web server:
- apache2
-
MVC framework:
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
| $(function() { | |
| var App = { | |
| models: {}, | |
| views: {}, | |
| collections: {}, | |
| } | |
| App.models.Task = Backbone.Model.extend({ | |
| url: "/tasks", | |
| destroy: function() { |