Tokyo, Japan 2019

The following are the talks defined for the event.

WORKSHOP DAY 1 - Thu, November 7th

09:00
12:00

Basic Workshop Day 1

Jorge González

Join us for a structured workshop on building a basic CakePHP application - learn application structure including models, controllers and views. Complete with interactive examples and much more!

Here's the reference code used https://github.com/steinkel/cakefest2019

Go to slides

The video is not available yet!

13:45
15:45

Advanced Workshop Day 1 Part 1

Mark Story

Advanced Workshop Day 1 Part 1

Reference code used here: https://github.com/markstory/cakefest-workshop-2019

Go to slides

The video is not available yet!

16:00
17:00

Advanced Workshop Day 1 Part 2

Mark Story

Advanced Workshop Day 1 Part 2.

Reference code used here: https://github.com/markstory/cakefest-workshop-2019

Go to slides

The video is not available yet!

WORKSHOP DAY 2 - Fri, November 8th

09:00
12:00

Basic Workshop Day 2

Jorge González

Continuation from Day 1, covering basic concepts of the framework.

Here's the reference code used https://github.com/steinkel/cakefest2019

Go to slides

The video is not available yet!

13:45
15:45

Advanced Workshop Day 2 Part 1

José Rodríguez

Advanced Workshop Day 2 Part 1

The slides are not available yet!

The video is not available yet!

16:00
17:00

Advanced Workshop Day 2 Part 2

José Rodríguez

Advanced Workshop Day 2 Part 2

The slides are not available yet!

The video is not available yet!

CONFERENCE DAY 1 - Sat, November 9th

10:55
11:30

CakeFest 2019 open and Sponsor Keynote

A short welcome to CakeFest 2019 and a few words from our Diamond Sponsor

The slides are not available yet!

The video is not available yet!

11:35
12:10

A safer and more helpful CakePHP in 4.0

Mark Story

CakePHP is quickly approaching a 4.0 release. While it cannot read minds, we hope that it will help you develop your applications quickly and more safely. Safety, and early helpful feedback are two themes of CakePHP 4.0. I'd like to talk about some of the larger changes in CakePHP 4.0 and how they aim to make building applications easier and safer.

Go to slides

The video is not available yet!

12:30
13:05

The CakePHP features I wish you were using more

José Rodríguez

CakePHP is a big framework with thousands of cool features, so it's not your fault you don't know them all by heart. In this talk I'd like to point to a few lesser known or under-utilised features that could make your life easier and your applications more robust.

Go to slides

The video is not available yet!

13:10
13:45

Consider a smooth upgrade to CakePHP 3

Yuki Kanazawa

It is important to be able to upgrade smoothly in order to keep using CakePHP.

Lancers of the crowdsourcing service gradually upgraded the 600,000 step source code from CakePHP 1.3 to CakePHP 2.8 step by step.
In order to upgrade the version without stopping the usual enhancement development, Model and Lib co-existed 1.3 and 2.8 and upgraded by Controller unit, it took about 1 year.

To upgrade to CakePHP 3, there is a bigger problem such as ORM acquisition format.

I will introduce the controller-based migration method we conducted this time and further think about how to solve the problem of CakePHP 3 transition.

Go to slides

The video is not available yet!

15:30
16:30

12 Factor CakePHP Applications - The Remix

Jose Gonzalez

In many cases, developers will write code and assume it will perform exactly the same or better in production. However, as we�ve all seen, applications that build correctly locally do not necessarily perform well once they are being used by the world at large.

In a previous incarnation of this talk, there was a brief overview of what 12 factor applications are and how to best apply those principles to CakePHP Applications. This talk will cover practical changes that can be made to a PHP application - in this case using the CakePHP framework, but easily applicable to other frameworks - in order to better support distributed, cloud-based environments, as well as various tactics developers can use to monitor and alert on application health.

Go to slides

The video is not available yet!

16:35
17:10

Test-driven development to avoid painful of test code

KAZUKI HIGASHIGUCHI

Recently the importance of testing is increased among PHP developers, I feel.
However, some people feel it painful to write test code. I think the cause is "no testing code is not good design, that's why testing become very tough."
To avoid such a painful, I think Test-driven development(TDD) approach is useful.
This talk will be useful for people from beginner to intermediate level.

Go to slides

The video is not available yet!

17:30
18:05

CakePHP & Spatial Big Data - Visualising Spatial Data & Metrics over 70 Billion+ rows

Daniel Voyce

LOCALLY is a global leader in location data intelligence and real-time consumer engagement. Our innovative and highly precise location technology merges physical places and digital devices with powerful AI and ML models, along with the transparency of blockchain, to deliver insights that are actionable at scale.

We have been working with CakePHP 3.x since the inception of the company (and personally as developers over 8 years), where we were processing around 500K records per month through a standard MQ workflow, over the past year we have scaled up to be ingesting over 20B records each month.

This talk will discuss how we interface our Data Warehouse with CakePHP to produce sub-second aggregation counts over Billions of rows over a variety of metrics, we talk about how we integrate with Presto (A Facebook open-source Big Data Query Engine) to provide an SQL like interface to our data-warehouse that is accessible by CakePHP and how we use HyperLogLog++ Sketches to allow for dynamic up-to-the second unique aggregation counts of both standard metrics and Geospatial Joins to be achieved in sub-second times.

Go to slides

The video is not available yet!

18:10
18:45

Working with Database Replication

Tadahisa MOTOOKA

This talk is related to the RFC "Read/Write database splitting" https://github.com/cakephp/cakephp/issues/9197
As mentioned in comments of the RFC, it's true that supporting database replications in the core is not the best way. But more applications than ever before are based on replicated databases and managing connections. This talk intends to introduce ways to support replications.

Also, this talk will include the following topics :

- design patterns to support read-replicas
- adding read-replica to an existing CakePHP application
- transaction considerations
- unit test considerations
- database replications for local development environments

Go to slides

The video is not available yet!

CONFERENCE DAY 2 - Sun, November 10th

10:30
11:10

Beyond unit testing: How to make your applications more reliable

José Rodríguez

It seems to be common knowledge that unit testing your code is a good guarantee for quality software, but whoever has tried to test all aspects of any given couple application, has come to the conclusion that unit testing is not enough to catch the important bugs or that the amount of effort it requires seems to not be paying off at the end. How can we do better?

In this talk we will explore several techniques that will help you catch bugs faster, and before your clients do. Some of those techniques include but are not limited to: using static analysis tools, refactoring code for clarity, and thinking thoroughly about your application.

Go to slides

The video is not available yet!

12:00
13:00

Baking with Vue.js

David Yell

The development landscape is changing, and as always Javascript is the front runner. In my job we produce lots of visual tables of data, which all need sorting and filtering. This talk will cover how we developed a new front-end dynamic table component for our CakePHP websites using Vue.js and CakePHP.

How do you integrate Vue.js into your CakePHP application? What can Vue.js do for your CakePHP application? Hopefully after this talk, you'll have a better understanding of the answers to those questions. We'll be looking at an internal CakePHP web service and how to interact with Vue.js to use that new web service.

Go to slides

The video is not available yet!

15:30
16:05

Building interactivity with websockets

Wim Godden

The time of static or dynamically generated sites is long gone. Non-stop interaction with users is the new normal. However, polling with Ajax requests is processor intensive and cumbersome. Websockets allow you to interact with users in real-time without increasing system load. We'll go through the basics and see all the different options, illustrated with live examples.

Go to slides

The video is not available yet!

16:10
16:45

Life after CakePHP

Andrej Griniuk

After 10 years with CakePHP, I started my new job at a company using another popular framework as a tool of choice (spoiler alert - Laravel). After such a long and deep relationship, I unwillingly look at everything through CakePHP prism and now, after having extensive experience with something different, in this talk I'd like to summarize why I love CakePHP, what makes it such a great tool, as well as what could we, as community, do better, compared to other frameworks. Both tech and non-tech wise. What is the life like after CakePHP?

Go to slides

The video is not available yet!

16:45
17:20

Let's start your first OSS with CakePHP

Sho Ito

Have you ever wanted to develop OSS? But, many people can not move to action. I used to be the same as you.
In this talk, I will tell you step by step how to make and publish OSS with CakePHP. And, I will also introduce the learned and cautionary points in this experience.
Specifically, it is a talk when I made OSS called "Easy Query" which behavior plugin for easily some complicated queries like upsert, bulk upsert and bulk insert.
Through this talk, I would like to support your first OSS development!

Go to slides

The video is not available yet!