MLMatthew Lakeinmatthewlake.hashnode.dev·Jul 25, 2021 · 8 min readHow To Implement a TipTap WYSIWYG Editor in Laravel LivewireIn this article, I am going to show you how to build a simple application that implements a TipTap editor into a Livewire component. The completed sample code can be found on GitHub here What is TipTap? TipTap is a headless, framework-agnostic WYSI...00
MLMatthew Lakeinmatthewlake.hashnode.dev·Jun 2, 2021 · 3 min readCode Challenge - array_filter()For these code challenge we are again looking at traversing and working with arrays. First we will take a look at the problem, which was originally posed by Stripe. The Problem Given an array of integers, find the first missing positive integer in l...00
MLMatthew Lakeinmatthewlake.hashnode.dev·May 21, 2021 · 2 min readCode Challenge - More array methodsWe have another array based challenge, which we will solve in PHP, so lets get started. The Problem Given an array of integers, return a new array such that each element at index i of the new array is the product of all the numbers in the original a...00
MLMatthew Lakeinmatthewlake.hashnode.dev·May 11, 2021 · 3 min readCode Challenge, searching through arraysThis is the first in a series of code challenges that we will solve using PHP, let's jump straight in. The Problem This problem was asked by Google. Given a list of numbers and a number k, return whether any two numbers from the list add up to k. Fo...00