Free PHP obfuscator, Encoding PHP

PHP: Code obfuscation in 10 steps: https://www.blubgoo.com/php-code-obfuscation-in-10-steps/

PhpMinify: http://www.binpress.com/app/phpminify/632

********************
Encoding & Decoding PHP Code: https://perishablepress.com/encoding-decoding-php/

Example: https://perishablepress.com/tools/decoding/

PHP Classes: http://www.phpclasses.org/package/4926-PHP-Obfuscate-PHP-as-base64-encoded-strings.html

GitHub: PHP Obfuscator

Ncryptd, open-source: http://ncryptd.com/

PHP Obfuscator

https://github.com/naneau/php-obfuscator

This is an “obfuscator” for PSR/OOp PHP code. Different from other obfuscators, which often use a (reversible) eval() based obfuscation, this tool actually parses PHP, and obfuscates variable names, methods, etc. This means is can not be reversed by tools such as UnPHP. This library was written out of the need to obfuscate the source for a private library which for various reasons could not be shared without steps to protect the source from prying eyes. It is not technically feasible to “encrypt” PHP source code, while retaining the option to run it on a standard PHP runtime.

install: git clone https://github.com/naneau/php-obfuscator , composer install

Run: path//php-obfuscator$ ./bin/obfuscate obfuscate input output

input, output – directories in the php-obfuscator folder.

 

Design Patterns

Design Patterns
https://refactoring.guru/design-patterns/abstract-factory

PHP Design Patterns

This is a collection of known design patterns and some sample code how to implement them in PHP. Every pattern has a small list of examples (most of them from Zend Framework, Symfony2 or Doctrine2 as I’m most familiar with this software).

https://github.com/domnikl/DesignPatternsPHP

Egy nagyon hasznos, példákkal teletűzdelt összefoglaló a PHP-ban használatos (divatos) programozási mintákról .

Creational

AbstractFactory
Builder
FactoryMethod
Multiton (is considered an anti-pattern! )
Pool
Prototype
SimpleFactory
Singleton  (is considered an anti-pattern! )
StaticFactory

Structural

Adapter
Bridge
Composite
DataMapper
Decorator
DependencyInjection
Facade
FluentInterface
Proxy
Registry

Behavioral

ChainOfResponsibilities
Command
Iterator
Mediator
Memento
NullObject
Observer
Specification
State
Strategy
TemplateMethod
Visitor

More

Delegation
ServiceLocator
Repository

Balaton versek, dalok

Szeretem a Balatont

Akkordok: E A C G

Szeretem a Balatont, szeretlek nagyon, jó ide utazni.
Süt rám a nap, a víz simogat, nem illik belepisilni.

Drága itt minden, de jó lesz a lángos, meg egy vizibicikli.
Siófok alsó, Szabadifürdő, jó a vizet fröcskölni.

Akkor is jó, ha nem süt a Nap, a metorólógiát hallgatni.
Hideg van, esik az eső, valamiben reménykedni.

Szeretem a Balatont, szeretlek Balaton, jó ide utazni.
Süt rám a nap, a víz simogat, nem illik belepisilni.

 

Balaton vize

Itt vagyok a Balatonon, süt rám a Nap.
Anyukák a bikiniből majd kibuggyannak.
Fürdenek körülöttük a sok gyerekek.
Pistikém a pisit a vízbe eresszed.

Balatoni nyár, balatoni pisi.
Itt van az egész ország, sok itt a misi.
Mindenki a vízben áll,
jaj de szép ez a táj.

 

Balatoni zokni

Balatonra nem kell zokni.
Ezt könnyen meg lehet szokni.
Elég, ha kék az ég és zöld a fű,
az élet így gömbölyű.

 

Lumen – fast micro-framework by Laravel – Tutorial

Lumen is designed to build blazing fast micro-services and APIs. For example, if there is one aspect of your Laravel application that receives drastically more traffic than the rest of the application, you may choose to build that aspect of the application as a small, separate Lumen application.

http://lumen.laravel.com/docs/introduction

Developing a web application with Lumen and MySql
Lumen seems to be a very promising framework for the fast prototyping of small web apps.
http://loige.co/developing-a-web-application-with-lumen-and-mysql/