New Baby, Livewire V3, Laracasts, and more!

Hey good people,

Time for my "I've been working on a bunch of stuff and want to tell you all about it" email. Let's gooo! (as the Gen Z YouTubers say)

First up, we had a baby! His name is River and he is currently keeping me up in the middle of the night to write this email. He's a dangerously cute fellow, see for yourself:

Livewire V3

I'm working on a brand new version of Livewire. It's been almost two years since launching V2 (I haven't had a haircut since--you thought that was my wife holding the baby?). I'm absolutely bursting at the seams with new ideas and features I want to add.

I'll share more over time as things develop, but here's a Twitter thread you can browse for suggestions from the community. Feel free to add one of your own. If there's something you think needs to be addressed in Livewire V3, nows the time to let me know!

twitter profile avatar
Caleb Porzio
Twitter Logo
@calebporzio
June 9th 2022
15
Retweets
197
Likes

New Laracasts Series

I had the pleasure of putting together a series for Laracasts called "Livewire Uncovered". In it, I build a stripped down version of Livewire from scratch. It was a ton of fun to record, and so far people are really digging it.

If you use Livewire, great, you'll learn a ton. If you don't still great, you'll definitely find it interesting, and probably still learn a ton lol.

Here it is: https://laracasts.com/series/livewire-uncovered (the full series will be out this week or next, right now it's only half-published with one new episode released every day)

Livewire Partners Program

Over the years, lots of people have asked me to do consulting for them and for the most part I've had to turn them away. Well no longer.

Jason Beggs and I are spinning up a "Livewire Partners" program where companies who use Livewire (and Alpine) day-to-day have access to top-level expertise.

On top of on-demand support, we're offering other perks like team-access to products and regular Zoom calls where we show sneak peaks of upcoming stuff and get feedback on the direction of the framework.

If this sounds interesting to you, throw your email in this form and we'll be in touch!

https://forms.gle/htgqh9n8SWWwr5pe9

Alpine Docs Search

Folks, this is LONG overdue. Finally, we added search functionality to the Alpine docs. It's only been out for a week or so and I've already used it myself a number of times. So next time you're looking for something in the Alpine docs, hit Cmd+k and get going!

That's a wrap!

As always, thanks for following along the Caleb/Livewire journey!

Until next time,

-Caleb

Say hello to Sustainable Stream - An innovative video marketplace.

Hi edward,

It's no secret that the world is dealing with a climate crisis and that everyone needs to act if we want things to improve. Consumers change their habits, organizations update their standards, and the media help create a new perception at scale.

 

Despite the broad awareness of the crisis, the sense of urgency is not yet understood. Only 33% are alarmed, and 66% are non-active individuals.

The train of global warming is moving fast, and it's moving right at us. This is why I'm incredibly proud to launch with our partners at Magnite the "Sustainable Stream."

 

 

This new initiative is a tech-powered marketplace that enables NGOs, brands, and publishers to create an impact by the creation and distribution of sustainable content in a scalable way.

Publishers joining the initiative could help their users discover first-tier earth-friendly content, take part in fighting misinformation and build new inventory for brands that dedicate some of their programmatic investment to sustainable inventory. Revenue split enables content creators & NGOs to create more content, building an economic cycle to help drive change sustainably.

 

 

I am extremely pleased and humbled to work with such outstanding teams at Magnite and Primis, and build an adtech product that can help drive positive change. I also would like to thank the publishers, content creators, and advertising partners who agreed to participate in this initiative.

Alone we can do so little; together we can do so much. So join the movement, and let's help save our planet together!

 

Rotem Shaul,

Co-CEO Primis

Primis, McCann TLV, Tel Aviv, Israel

addTwoNumbers

 var addTwoNumbers = function(l1, l2) {

    var _l1 = "", _l2 = "", answer = 0, answerArr = []

    for(var i = l1.length-1; i >= 0; i--){

        _l1 = _l1 + l1[i]   

    }

  for(var i = l2.length-1; i >= 0; i--){

        _l2 = _l2 + l2[i]   

    }

    answer = parseInt(_l1) + parseInt(_l2)

  for(var i = 0; i < answer.toString().length; i++){

    answerArr.push(parseInt(answer.toString()[i]))

  } 

  

  return answerArr.reverse()

    

};


console.log(addTwoNumbers([2,4,3], [5,6,4]))

1. Two Sum

 /**

 * @param {number[]} nums

 * @param {number} target

 * @return {number[]}

 */

var twoSum = function(nums, target) {

    var num = []

    for(var i = 0; i < nums.length; i++ ){

        for(var j = 0; j < nums.length; j++ ){

           if(target == (nums[i] + nums[j]) && i != j){

                  if(!num.length){

                    num = [i, j] 

                  } 

           } 

        }

    }

    return num

};


console.log(twoSum([2,7,11,15], 9))

Case Study✍️: How Daily Dot Saw A 300% Increase in RPM Using the Primis AMP Player

When Daily Dot wanted to monetize their AMP pages with a video unit, they turned to Primis.

Thank You Substack Subscribers

Watch now (4 mins) | I had some drama with YouTube, but it's because of You that I can pay my bills. ͏     ­͏     ­͏     ­͏     ­͏     ­...

Contact Form

Name

Email *

Message *