406. PHP and JavaScript Innovation Award Report June 2016 Edition - March 2016 nominees
Updated on: 2016-06-23
Posted on: 2016-06-23
This is the June edition of the Innovation Award podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the outstanding features of all the past month nominees and winners PHP and JavaScript packages, the prizes that the authors earned, starting with the nominees from the month of March 2016.
Listen to the podcast, or watch the hangout video to learn why the nominated packages were considered to be innovative, as well the current rankings of the Innovation Award Championship by author and by country.
More ...
Post a comment
See comments (0) Trackbacks (0)
Listen to the podcast, or watch the hangout video to learn why the nominated packages were considered to be innovative, as well the current rankings of the Innovation Award Championship by author and by country.
405. Notable PHP package: Zephir HandlerSocket Client
Updated on: 2016-06-22
Posted on: 2016-06-22
Zephir is a statically typed language derived from PHP that can be compiled into native PHP extensions which can run along with PHP code based on the Zend Engine.
This HandlerSocket Client package is the first Zephir based package to be published in the PHP Classes site.
This package is able to connect to a MySQL database server and treat INNODB tables as NoSQL databases, thus allowing PHP developers to take advantage of both worlds in the same application: the world of transactional databases with regular SQL and the world of NoSQL databases.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This HandlerSocket Client package is the first Zephir based package to be published in the PHP Classes site.
This package is able to connect to a MySQL database server and treat INNODB tables as NoSQL databases, thus allowing PHP developers to take advantage of both worlds in the same application: the world of transactional databases with regular SQL and the world of NoSQL databases.
Read this article to learn more details about how this notable PHP package works.
404. Using Microsoft Visual Studio as PHP IDE with the PHP Tools extension: Part 3 Debugging
Updated on: 2016-06-21
Posted on: 2016-06-21
One of the most important features when choosing an IDE is how easily it allows you to debug your code.
PHP Tools is a extension of Microsoft's Visual Studio that uses and enhances the powerful debugging options that ships with this popular IDE.
Read this article to learn how to take advantage of PHP Tools to quickly debug your PHP applications.
More ...
Post a comment
See comments (0) Trackbacks (0)
PHP Tools is a extension of Microsoft's Visual Studio that uses and enhances the powerful debugging options that ships with this popular IDE.
Read this article to learn how to take advantage of PHP Tools to quickly debug your PHP applications.
403. 7 Reasons Why Developers Need to Create their Own Software Product Businesses
Updated on: 2017-03-28
Posted on: 2016-06-20
Many developers are not happy with working for other companies. They do not have much autonomy to work on projects they want, they cannot work from home, they cannot work any time they want, and in the end they get paid a limited amount of money.
The alternative for these unhappy developers is to create their own software products and sell them to many customers. Unfortunately many developers do not know how to get started and become successful.
The good news is that this is the first of series of short videos that will teach developers all they need to know to create their own businesses developing products that the customers really want and will pay for.
Watch this short video to learn about why creating your own products is the right step to be a happier developer, as well how you can attend a free online workshop that will teach the essential steps to achieve that goal.
More ...
Post a comment
See comments (4) Trackbacks (0)
The alternative for these unhappy developers is to create their own software products and sell them to many customers. Unfortunately many developers do not know how to get started and become successful.
The good news is that this is the first of series of short videos that will teach developers all they need to know to create their own businesses developing products that the customers really want and will pay for.
Watch this short video to learn about why creating your own products is the right step to be a happier developer, as well how you can attend a free online workshop that will teach the essential steps to achieve that goal.
402. Notable PHP package: Axync
Updated on: 2016-06-19
Posted on: 2016-06-16
Cooperative multitasking is a way to execute multiple tasks concurrently.
Only one task runs at each moment but it gives the turn to the next task in the list of concurrent tasks, for instance when it needs to wait for some I/O operation to complete, like accesses to files, databases, or network connections.
This class implements a manager for cooperative multitasking in pure PHP.
It takes advantage of generators introduced in PHP 5.5 to let one task decide when it can give the control to the next task.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Only one task runs at each moment but it gives the turn to the next task in the list of concurrent tasks, for instance when it needs to wait for some I/O operation to complete, like accesses to files, databases, or network connections.
This class implements a manager for cooperative multitasking in pure PHP.
It takes advantage of generators introduced in PHP 5.5 to let one task decide when it can give the control to the next task.
Read this article to learn more details about how this notable PHP package works.
401. Built-in Protection Against CSRF Security Attacks in PHP 7.1 - Lately in PHP podcast episode 72
Updated on: 2016-12-23
Posted on: 2016-06-15
Cross-Site Request Forgery (CSRF) are a type of security attacks that may cause user accounts to be abused, so attackers can make users perform actions inadvertently in a vulnerable site and cause serious problems to the users and the sites.
There is a new proposal for PHP 7.1 to provide built-in semi-automatic protection against CSRF attacks, so it will be easier for PHP developers to protect the sites they develop against this type of exploit.
That was one of the main topics discussed by Manuel Lemos and Arturs Sosins in the episode 72 of the Lately in PHP podcast hangout.
They also talked about other proposals for PHP 7.1, as well the election of two release managers that will take care of the steps necessary to release PHP 7.1 later this year on the planned schedule.
This article includes a transcript of the podcast summary.
Listen to the podcast, or watch the hangout video, or read the summary transcript to learn more about these interesting PHP topics.
More ...
Post a comment
See comments (0) Trackbacks (0)
There is a new proposal for PHP 7.1 to provide built-in semi-automatic protection against CSRF attacks, so it will be easier for PHP developers to protect the sites they develop against this type of exploit.
That was one of the main topics discussed by Manuel Lemos and Arturs Sosins in the episode 72 of the Lately in PHP podcast hangout.
They also talked about other proposals for PHP 7.1, as well the election of two release managers that will take care of the steps necessary to release PHP 7.1 later this year on the planned schedule.
This article includes a transcript of the podcast summary.
Listen to the podcast, or watch the hangout video, or read the summary transcript to learn more about these interesting PHP topics.
1. Why Reactive Programming is the Evolution of Web Development
Updated on: 2016-06-14
Posted on: 2016-06-14
Blog: PHP Nuclear Reactor package blog
Package: PHP Nuclear Reactor
Reactive programming is a paradigm that allows applications to be developed in such way that they consume less resources, can respond faster, and deal with much more information.
Read this article to learn more about Reactive programming, how it can be implemented in PHP integrating MVC frameworks.
More ...
Post a comment
See comments (0) Trackbacks (0)
Read this article to learn more about Reactive programming, how it can be implemented in PHP integrating MVC frameworks.
400. Notable PHP package: PHP Nuclear Reactor
Updated on: 2016-06-09
Posted on: 2016-06-09
Asynchronous programming is a way to create programs that can execute multiple parallel tasks faster in the same process by executing code while other parts if the programs wait for I/O operations to finish, like database accesses, file accesses, network accesses, etc..
ReactPHP is a low level library similar to JavaScript Node.js that can be used to implement asynchronous programming in PHP, so you can write PHP code that can efficiently access multiple files, databases, or network computers in parallel, making everything faster.
The PHP Nuclear Reactor is library based on PIMF micro-framework that implements the MVC design pattern on top of ReactPHP.
This way you can continue to write PHP MVC components the way you are used to do, and still work well in an asynchronous programming environment based on ReactPHP.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
ReactPHP is a low level library similar to JavaScript Node.js that can be used to implement asynchronous programming in PHP, so you can write PHP code that can efficiently access multiple files, databases, or network computers in parallel, making everything faster.
The PHP Nuclear Reactor is library based on PIMF micro-framework that implements the MVC design pattern on top of ReactPHP.
This way you can continue to write PHP MVC components the way you are used to do, and still work well in an asynchronous programming environment based on ReactPHP.
Read this article to learn more details about how this notable PHP package works.
399. How to Automate Actions on Apple Mac OS X using a PHP Shell Script for Automator
Updated on: 2016-06-08
Posted on: 2016-06-08
Automator is an applications for Apple's Mac OS X that can automate tasks using scripts for performing many types of automated routines.
Automator can be configured to automate tasks using scripts of several possible languages.
Read this article to learn how to automate tasks with Automator using PHP as scripting language to implement those tasks.
More ...
Post a comment
See comments (2) Trackbacks (0)
Automator can be configured to automate tasks using scripts of several possible languages.
Read this article to learn how to automate tasks with Automator using PHP as scripting language to implement those tasks.
1. How to use Corcel Laravel WordPress API to create Web Applications
Updated on: 2016-06-07
Posted on: 2016-06-07
Blog: Corcel (Laravel + WordPress) package blog
Package: Corcel (Laravel + WordPress)
WordPress is certainly the most popular PHP application ever. However, many PHP developers do not like to develop on top of its code because it is in great part not based on object oriented code and does not follow the latest PHP framework trends.
Nowadays many developers love newer frameworks like Laravel to build their applications.
The Corcel framework brings the two worlds: WordPress and Laravel or other modern frameworks.
Read this article to learn how you can use the Corcel framework to build applications on the top of WordPress backend.
More ...
Post a comment
See comments (1) Trackbacks (0)
Nowadays many developers love newer frameworks like Laravel to build their applications.
The Corcel framework brings the two worlds: WordPress and Laravel or other modern frameworks.
Read this article to learn how you can use the Corcel framework to build applications on the top of WordPress backend.
