Nachricht
« Zurück
Rofl this is the Weekly PHP Classes newsletter of Thursday - 2016-09-15 - PHP Classes
PHP Classes Weekly PHP Classes newsletter of Thursday 20160915
From: PHP Classes Newsletter <list-newsletter@phpclasses.net>, sent: 13:43:27 - 30.12.2016Rofl this is the Weekly PHP Classes newsletter of Thursday - 2016-09-15
Download Plesk Free Trial Secure and easy to use platform to manage your WordPress sites & ecommerce! |
Rofl you are getting this message as free service for being a user of the PHP Classes site to which you registered voluntarily using the email address rofldigger@getsend.xyz. If you wish to unsubscribe go to the unsubscribe page. |
This newsletter is always available online and upto date at: www.phpclasses.net/newsletter/ . |
---|
Latest PHP jobs
US Based Company Looking for Remote Developers (1 day ago)
Posted on: 2016-09-14 Location: Chicago, IL, United States May work remotely from another country Software Developer (2 days ago)
Posted on: 2016-09-13 Location: New York, NY, United States May work remotely from another country PHP/JavaScript Engineer (7 days ago)
Posted on: 2016-09-08 Location: Lille, France May work remotely from another country
Latest PHP Classes blog posts
Notable PHP package: PHP Ignore JSON Key (2 days ago)
Posted on: 2016-09-13 Summary: JSON is nowadays used by many applications and APIs to exchange data in a format that can be supported by many languages.
Sometimes you need to do some processing to filter unwanted entries in JSON data structure. Usually you would use json_decode parse the data, traverse the parsed data and filter the unwanted information, and regenerate it with json_encode.
This class offers a simpler solution. It can take a JSON string and removed the unwanted entries from the JSON string directly.
This way you do not need to perform traversal of data and custom processing to remove the unwanted data.
Read this article to learn more details about how this notable PHP package works.Non Obvious MySQL Index Optimization Tricks part 1 (3 days ago)
Posted on: 2016-09-12 Summary: Every developer knows that adding indexes to database tables may speedup database queries. However, in several circumstances, this may not be the case, and your application may actually get slower when you add indexes.
Watch this short video that is the first part of a talk that teaches what are indexes under the hood, how to determine when you should add indexes to your database tables, when you should not add indexes, and
alternative solutions to optimize MySQL based applications without adding indexes that could slow down your application.Notable PHP package: PHP Form Encryption (7 days ago)
Posted on: 2016-09-08 Summary: When you need to submit security sensitive data to a Web site, you should always use encrypted connections. However, over time older SSL versions have been discovered to be vulnerable, to the point that SSL is not longer synonym of security.
Nowadays you should use at least TLS and we don't know until when the current TLS versions will be safe to use to protect the transmission of private data.
This class provides an additional layer of security by using JavaScript to encrypt data before transmitting form values using RSA public key, and then having the server to decrypt the data with a private key.
This way, eventual man in the middle attacks will not be able to decrypt the data because they don't know what is the private key that the server uses to decrypt it.
Read this article to learn more details about how this notable PHP package works.How to Create a Software Product Business Continuing to Be a Developer (8 days ago)
Posted on: 2016-09-07 Summary: What developers like most is to write code. Creating your own software product business gives you a lot of freedom to work any time you want, anywhere you want, work with the technologies you like, but some developers are afraid that once they start a business they may need to stop writing code and give up on the joy of being a developer.
Fortunately it does not have to be this way. You can create your own software product business and still continue to work as a developer.
Watch this video to learn about different solutions to continuing to be a developer while you work on your own software product business.Notable PHP package: morgen (9 days ago)
Posted on: 2016-09-06 Summary: Developers that have tried to create applications that should run both on the Web, Android and iOS devices know that you need to have a different sets of application image icons that looks well on different resolutions.
This package provides a solution by automatically generating icon sets for different devices and sizes.
It supports generating icons from a SVG source graphics if you can run a program like Inkscape to convert images from SVG to the PNG format.
Read this article to learn more details about how this notable PHP package works.PHP Articles Report August 2016 Edition (13 days ago)
Posted on: 2016-09-02 Summary: This is the August edition of the podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the latest outstanding PHP Articles published recently.
They commented on articles about using the HTTPoxy vulnerability that affects some well known PHP applications, how to use the pthreads extension, and several articles and videos to help developers create software product businesses.
Listen to the podcast, or watch the hangout video to learn more about these PHP articles.Notable PHP package: ITE Collection (14 days ago)
Posted on: 2016-09-01 Summary: PHP is very good at dealing with arrays of values. It provides interfaces that can let developers create classes that can manipulate lists of values using the regular array syntax and functions.
Often the code for manipulating different types of values is the same for different classes that implement array interfaces.
This package provides a trait that can manipulate collections of unique values that can be either arrays and objects. The trait may be reused by other classes that implement similar collections of other types of values.
Read this article to learn more details about how this notable PHP package works.The Best Way To Find a Developer Job in 2016 (15 days ago)
Posted on: 2016-08-31 Summary: Times have passed and the way you get hired jobs as software developer or even other positions has changed.
In the past you used to find jobs and and apply by sending resumes. Or worse you would get chased by annoying recruiters.
Nowadays companies like Hired have inverted the process and made it such way that instead of you applying for jobs, companies apply to find talented professionals.
Read this article to learn how Hired implements this modern hiring process and how you can join to benefit from getting better job opportunities.Notable PHP package: PHP SSH Connection Session (16 days ago)
Posted on: 2016-08-30 Summary: SSH is a protocol to communicate with a remote server via a secure connection that allows to execute commands on a remote machine.
However, the length of the commands that can be executed is limited.
This package provides a workaround for this limitation that consists in creating a shell script to execute long commands and execute it using the bash shell.
Read this article to learn more details about how this notable PHP package works.5 Phases to Create Software Products that Will Be Perfect for Your Customers (17 days ago)
Posted on: 2016-08-29 Summary: Many software products failed because their developers did not start by listening to their customers problems.
Learning about the customers problems is the first of 5 phases of a method called Design Thinking. When well applied this method can lead to the creation of products that are perfect for their customers.
Watch this video to learn how you can apply this method to design your software products in a short period of time and get what customers really need even before you start writing a line of code.PHP and JavaScript Innovation Award Report August 2016 Edition - May 2016 nominees (20 days ago)
Posted on: 2016-08-26 Summary: This is the August 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 May 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.Notable PHP package: PHP Builder Pattern Generator (21 days ago)
Posted on: 2016-08-25 Summary: The builder design pattern allows to dynamically create objects in a way that the same process of construction can allow multiple representations of the object that can be changed over time according to the needs of a project.
This package implements the builder design pattern with a concrete builder class that generates code for classes dynamically to implement a representation of the object class being built at run time.
Read this article to learn more details about how this notable PHP package works.Notable PHP package: CakePHP 2.x Container (23 days ago)
Posted on: 2016-08-23 Summary: Dependency injection is design pattern often used implement functionality on one class using objects from external classes without hardcoding the dependency between the two classes.
Several PHP frameworks implement their own dependency injection containers but since each one implements it in a different way, a generic container interface was defined to allow to call components of one framework to be called from by components of any other framework.
The package implements a component with the generic dependency injection container interface so application services and other types of applications not based on CakePHP can be easily used with CakePHP.
Read this article to learn more details about how this notable PHP package works.How to Create Your Own Software Product Business Without Quitting Your Day Job (24 days ago)
Posted on: 2016-08-22 Summary: Many developers want to create their own software product business but they still need money to support themselves, and so cannot quit their day jobs.
Watch this very short video to learn about a simple tip on how you still can create your own business without having to quit your current job.Notable PHP package: PHP UDP Hole Punching (27 days ago)
Posted on: 2016-08-19 Summary: When you want to connect to a remote machine that is connected to a group of peers but you do not know its address, one common solution is to connect to central server and ask the addresses of the peers to communicate with them.
This technique is used by NAT servers (Network Address Translators) that are often running on router machines in order to route requests to remote machines from local network computers.
This process is called hole punching because it uses an intermediary server to get the addresses of the remote machines, so the client can communicate with them.
This PHP package implements a server with one class that can keeps the list of connected client machines and returns the list of peer addresses and ports.
The client class connects to the server class to get the peer machine address list, so it can send messages to them using UDP packets.
Read this article to learn more details about how this notable PHP package works.Will Lazy Statements Make PHP 7 Programming More Efficient ? Lately in PHP podcast episode 74 (28 days ago)
Posted on: 2016-08-18 Summary: A recent proposal is being discussed for PHP 7 feature called lazy statements. It would allow developers to assign values to variables based on code that is only executed when the variable is accessed for the first time, thus avoiding executing the code if the variable ends up never being accessed.
That was one of the main topics discussed by Manuel Lemos and Arturs Sosins in the episode 74 of the Lately in PHP podcast hangout.
They also talked about the HTTPoxy vulnerability that affects some important PHP projects, as well the usual proposals for upcoming PHP versions like autoloading for global functions, different syntax for returning $this for classes that provide fluent interfaces, support for arbitrary method in the built-in PHP Web server, a new structured object notation for creating objects, etc..
They also mentioned features to be discontinued in PHP 7.1 like SSL 2 support and some extensions that will not ship with PHP 7.1 anymore.
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.Notable PHP package: PHP YouTube Movie Trailers (29 days ago)
Posted on: 2016-08-17 Summary: YouTube is certainly the most popular video hosting site on the Web.
It is used to publish all sorts of videos including trailers of many movies often way before they are released in theathers.
This package can access the YouTube site to perform searches for trailers of specific movies, so it can extract the video identifiers of the trailer movies. It generates HTML to embed those videos on other site Web pages.
Since it just scrapes the YouTube search result pages, it does not need to use an API key.
Read this article to learn more details about how this notable PHP package works.
Top friends of the site
For more information on how to become a friend of the site look here. |
Rank | Friend | Referrals | |
---|---|---|---|
1 | Arturs Sosins | Latvia | 10 |
2 | Olaf Lederer | The Netherlands | 6 |
3 | Cesar D. Rodas | Paraguay | 3 |
4 | Larry Wakeman | United States | 2 |
5 | Rafael Espinosa | Cuba | 2 |
6 | Richard Munroe | United States | 1 |
7 | Khaled Al-Shamaa | Syria | 1 |
8 | Alexander Skakunov | Ukraine | 1 |
9 | Protung Dragos | Germany | 1 |
10 | Ehsanul Haque | Bangladesh | 1 |
Innovation award results
Congratulations to Aleksey Nemiro!
Rank | Class | Author | Score | Points | Prize | |
---|---|---|---|---|---|---|
1 | PHP Small Server Administrator Web panel for small Debian and Ubuntu servers |
Aleksey Nemiro | Russian Federation | 24.14% | 11 | One big elePHPant Plush Mascott |
2 | Jaxon Call PHP classes from JavaScript using AJAX |
Thierry Feuzeu | Cameroon | 17.24% | 10 | |
3 | Faster PHP IP2Location Faster method to find the location of IP addresses |
Chi Hoang | France | 13.79% | 9 | |
4 | Rabbit ORM ORM for CodeIgniter based on Laravel's Eloquent |
Fabio Mazzo | Brazil | 10.34% | 8 | |
5 | PHP String Socializer Replace text with hash tags and social media links |
Luciano Salvino | Argentina | 6.90% | 7 | |
5 | BladeOne Standalone template engine that compiles into PHP |
Jorge Castro | Chile | 6.90% | 7 | |
5 | CMS Airship Content management system with security features |
Scott Arciszewski | United States | 6.90% | 7 | |
5 | PHP Silex REST Multi Lazy Load Create REST APIs with module lazy loading |
John Diaz | Colombia | 6.90% | 7 | |
9 | Automator Shell Action Tools Process console input and environment variables |
Karl Holz | Canada | 3.45% | 3 | |
9 | Deferred Exceptions Queue exceptions and throws them afterwards |
magog | Russian Federation | 3.45% | 3 | |
11 | PHP IIN and BIN Identify card issuer and bank from numbers |
Yorch Ponce | Mexico | <1.00% | 1 |
Nominees to win the award of August of 2016
|