Podcasts about puds

  • 43PODCASTS
  • 75EPISODES
  • 49mAVG DURATION
  • 1MONTHLY NEW EPISODE
  • Mar 6, 2026LATEST

POPULARITY

20192020202120222023202420252026


Best podcasts about puds

Latest podcast episodes about puds

Latent Space: The AI Engineer Podcast — CodeGen, Agents, Computer Vision, Data Science, AI UX and all things Software 3.0

All speakers are announced at AIE EU, schedule coming soon. Join us there or in Miami with the renowned organizers of React Miami! Singapore CFP also open!We've called this out a few times over in AINews, but the overwhelming consensus in the Valley is that “the IDE is Dead”. In November it was just a gut feeling, but now we actually have data: even at the canonical “VSCode Fork” company, people are officially using more agents than tab autocomplete (the first wave of AI coding):Cursor has launched cloud agents for a few months now, and this specific launch is around Computer Use, which has come a long way since we first talked with Anthropic about it in 2024, and which Jonas productized as Autotab:We also take the opportunity to do a live demo, talk about slash commands and subagents, and the future of continual learning and personalized coding models, something that Sam previously worked on at New Computer. (The fact that both of these folks are top tier CEOs of their own startups that have now joined the insane talent density gathering at Cursor should also not be overlooked).Full Episode on YouTube!please like and subscribe!Timestamps00:00 Agentic Code Experiments00:53 Why Cloud Agents Matter02:08 Testing First Pillar03:36 Video Reviews Second Pillar04:29 Remote Control Third Pillar06:17 Meta Demos and Bug Repro13:36 Slash Commands and MCPs18:19 From Tab to Team Workflow31:41 Minimal Web UI Philosophy32:40 Why No File Editor34:38 Full Stack Cursor Debate36:34 Model Choice and Auto Routing38:34 Parallel Agents and Best Of N41:41 Subagents and Context Management44:48 Grind Mode and Throughput Future01:00:24 Cloud Agent Onboarding and MemoryTranscriptEP 77 - CURSOR - Audio version[00:00:00]Agentic Code ExperimentsSamantha: This is another experiment that we ran last year and didn't decide to ship at that time, but may come back to LM Judge, but one that was also agentic and could write code. So it wasn't just picking but also taking the learnings from two models or and models that it was looking at and writing a new diff.And what we found was that there were strengths to using models from different model providers as the base level of this process. Basically you could get almost like a synergistic output that was better than having a very unified like bottom model tier.Jonas: We think that over the coming months, the big unlock is not going to be one person with a model getting more done, like the water flowing faster and we'll be making the pipe much wider and so paralyzing more, whether that's swarms of agents or parallel agents, both of those are things that contribute to getting much more done in the same amount of time.Why Cloud Agents Matterswyx: This week, one of the biggest launches that Cursor's ever done is cloud agents. I think you, you had [00:01:00] cloud agents before, but this was like, you give cursor a computer, right? Yeah. So it's just basically they bought auto tab and then they repackaged it. Is that what's going on, or,Jonas: that's a big part of it.Yeah. Cloud agents already ran in their own computers, but they were sort of site reading code. Yeah. And those computers were not, they were like blank VMs typically that were not set up for the Devrel X for whatever repo the agents working on. One of the things that we talk about is if you put yourself in the model shoes and you were seeing tokens stream by and all you could do was cite read code and spit out tokens and hope that you had done the right thing,swyx: no chanceJonas: I'd be so bad.Like you obviously you need to run the code. And so that I think also is probably not that contrarian of a take, but no one has done that yet. And so giving the model the tools to onboard itself and then use full computer use end-to-end pixels in coordinates out and have the cloud computer with different apps in it is the big unlock that we've seen internally in terms of use usage of this going from, oh, we use it for little copy changes [00:02:00] to no.We're really like driving new features with this kind of new type of entech workflow. Alright, let's see it. Cool.Live Demo TourJonas: So this is what it looks like in cursor.com/agents. So this is one I kicked off a while ago. So on the left hand side is the chat. Very classic sort of agentic thing. The big new thing here is that the agent will test its changes.So you can see here it worked for half an hour. That is because it not only took time to write the tokens of code, it also took time to test them end to end. So it started Devrel servers iterate when needed. And so that's one part of it is like model works for longer and doesn't come back with a, I tried some things pr, but a I tested at pr that's ready for your review.One of the other intuition pumps we use there is if a human gave you a PR asked you to review it and you hadn't, they hadn't tested it, you'd also be annoyed because you'd be like, only ask me for a review once it's actually ready. So that's what we've done withTesting Defaults and Controlsswyx: simple question I wanted to gather out front.Some prs are way smaller, [00:03:00] like just copy change. Does it always do the video or is it sometimes,Jonas: Sometimes.swyx: Okay. So what's the judgment?Jonas: The model does it? So we we do some default prompting with sort. What types of changes to test? There's a slash command that people can do called slash no test, where if you do that, the model will not test,swyx: but the default is test.Jonas: The default is to be calibrated. So we tell it don't test, very simple copy changes, but test like more complex things. And then users can also write their agents.md and specify like this type of, if you're editing this subpart of my mono repo, never tested ‘cause that won't work or whatever.Videos and Remote ControlJonas: So pillar one is the model actually testing Pillar two is the model coming back with a video of what it did.We have found that in this new world where agents can end-to-end, write much more code, reviewing the code is one of these new bottlenecks that crop up. And so reviewing a video is not a substitute for reviewing code, but it is an entry point that is much, much easier to start with than glancing at [00:04:00] some giant diff.And so typically you kick one off you, it's done you come back and the first thing that you would do is watch this video. So this is a, video of it. In this case I wanted a tool tip over this button. And so it went and showed me what that looks like in, in this video that I think here, it actually used a gallery.So sometimes it will build storybook type galleries where you can see like that component in action. And so that's pillar two is like these demo videos of what it built. And then pillar number three is I have full remote control access to this vm. So I can go heat in here. I can hover things, I can type, I have full control.And same thing for the terminal. I have full access. And so that is also really useful because sometimes the video is like all you need to see. And oftentimes by the way, the video's not perfect, the video will show you, is this worth either merging immediately or oftentimes is this worth iterating with to get it to that final stage where I am ready to merge in.So I can go through some other examples where the first video [00:05:00] wasn't perfect, but it gave me confidence that we were on the right track and two or three follow-ups later, it was good to go. And then I also have full access here where some things you just wanna play around with. You wanna get a feel for what is this and there's no substitute to a live preview.And the VNC kind of VM remote access gives you that.swyx: Amazing What, sorry? What is VN. AndJonas: just the remote desktop. Remote desktop. Yeah.swyx: Sam, any other details that you always wanna call out?Samantha: Yeah, for me the videos have been super helpful. I would say, especially in cases where a common problem for me with agents and cloud agents beforehand was almost like under specification in my requests where our plan mode and going really back and forth and getting detailed implementation spec is a way to reduce the risk of under specification, but then similar to how human communication breaks down over time, I feel like you have this risk where it's okay, when I pull down, go to the triple of pulling down and like running this branch locally, I'm gonna see that, like I said, this should be a toggle and you have a checkbox and like, why didn't you get that detail?And having the video up front just [00:06:00] has that makes that alignment like you're talking about a shared artifact with the agent. Very clear, which has been just super helpful for me.Jonas: I can quickly run through some other Yes. Examples.Meta Agents and More DemosJonas: So this is a very front end heavy one. So one question I wasswyx: gonna say, is this only for frontJonas: end?Exactly. One question you might have is this only for front end? So this is another example where the thing I wanted it to implement was a better error message for saving secrets. So the cloud agents support adding secrets, that's part of what it needs to access certain systems. Part of onboarding that is giving access.This is cloud is working onswyx: cloud agents. Yes.Jonas: So this is a fun thing isSamantha: it can get super meta. ItJonas: can get super meta, it can start its own cloud agents, it can talk to its own cloud agents. Sometimes it's hard to wrap your mind around that. We have disabled, it's cloud agents starting more cloud agents. So we currently disallow that.Someday you might. Someday we might. Someday we might. So this actually was mostly a backend change in terms of the error handling here, where if the [00:07:00] secret is far too large, it would oh, this is actually really cool. Wow. That's the Devrel tools. That's the Devrel tools. So if the secret is far too large, we.Allow secrets above a certain size. We have a size limit on them. And the error message there was really bad. It was just some generic failed to save message. So I was like, Hey, we wanted an error message. So first cool thing it did here, zero prompting on how to test this. Instead of typing out the, like a character 5,000 times to hit the limit, it opens Devrel tools, writes js, or to paste into the input 5,000 characters of the letter A and then hit save, closes the Devrel tools, hit save and gets this new gets the new error message.So that looks like the video actually cut off, but here you can see the, here you can see the screenshot of the of the error message. What, so that is like frontend backend end-to-end feature to, to get that,swyx: yeah.Jonas: Andswyx: And you just need a full vm, full computer run everything.Okay. Yeah.Jonas: Yeah. So we've had versions of this. This is one of the auto tab lessons where we started that in 2022. [00:08:00] No, in 2023. And at the time it was like browser use, DOM, like all these different things. And I think we ended up very sort of a GI pilled in the sense that just give the model pixels, give it a box, a brain in a box is what you want and you want to remove limitations around context and capabilities such that the bottleneck should be the intelligence.And given how smart models are today, that's a very far out bottleneck. And so giving it its full VM and having it be onboarded with Devrel X set up like a human would is just been for us internally a really big step change in capability.swyx: Yeah I would say, let's call it a year ago the models weren't even good enough to do any of this stuff.SoSamantha: even six months ago. Yeah.swyx: So yeah what people have told me is like round about Sonder four fire is when this started being good enough to just automate fully by pixel.Jonas: Yeah, I think it's always a question of when is good enough. I think we found in particular with Opus 4 5, 4, 6, and Codex five three, that those were additional step [00:09:00] changes in the autonomy grade capabilities of the model to just.Go off and figure out the details and come back when it's done.swyx: I wanna appreciate a couple details. One 10 Stack Router. I see it. Yeah. I'm a big fan. Do you know any, I have to name the 10 Stack.Jonas: No.swyx: This just a random lore. Some buddy Sue Tanner. My and then the other thing if you switch back to the video.Jonas: Yeah.swyx: I wanna shout out this thing. Probably Sam did it. I don't knowJonas: the chapters.swyx: What is this called? Yeah, this is called Chapters. Yeah. It's like a Vimeo thing. I don't know. But it's so nice the design details, like the, and obviously a company called Cursor has to have a beautiful cursorSamantha: and it isswyx: the cursor.Samantha: Cursor.swyx: You see it branded? It's the cursor. Cursor, yeah. Okay, cool. And then I was like, I complained to Evan. I was like, okay, but you guys branded everything but the wallpaper. And he was like, no, that's a cursor wallpaper. I was like, what?Samantha: Yeah. Rio picked the wallpaper, I think. Yeah. The video.That's probably Alexi and yeah, a few others on the team with the chapters on the video. Matthew Frederico. There's been a lot of teamwork on this. It's a huge effort.swyx: I just, I like design details.Samantha: Yeah.swyx: And and then when you download it adds like a little cursor. Kind of TikTok clip. [00:10:00] Yes. Yes.So it's to make it really obvious is from Cursor,Jonas: we did the TikTok branding at the end. This was actually in our launch video. Alexi demoed the cloud agent that built that feature. Which was funny because that was an instance where one of the things that's been a consequence of having these videos is we use best of event where you run head to head different models on the same prompt.We use that a lot more because one of the complications with doing that before was you'd run four models and they would come back with some giant diff, like 700 lines of code times four. It's what are you gonna do? You're gonna review all that's horrible. But if you come back with four 22nd videos, yeah, I'll watch four 22nd videos.And then even if none of them is perfect, you can figure out like, which one of those do you want to iterate with, to get it over the line. Yeah. And so that's really been really fun.Bug Repro WorkflowJonas: Here's another example. That's we found really cool, which is we've actually turned since into a slash command as well slash [00:11:00] repro, where for bugs in particular, the model of having full access to the to its own vm, it can first reproduce the bug, make a video of the bug reproducing, fix the bug, make a video of the bug being fixed, like doing the same pattern workflow with obviously the bug not reproducing.And that has been the single category that has gone from like these types of bugs, really hard to reproduce and pick two tons of time locally, even if you try a cloud agent on it. Are you confident it actually fixed it to when this happens? You'll merge it in 90 seconds or something like that.So this is an example where, let me see if this is the broken one or the, okay, this is the fixed one. Okay. So we had a bug on cursor.com/agents where if you would attach images where remove them. Then still submit your prompt. They would actually still get attached to the prompt. Okay. And so here you can see Cursor is using, its full desktop by the way.This is one of the cases where if you just do, browse [00:12:00] use type stuff, you'll have a bad time. ‘cause now it needs to upload files. Like it just uses its native file viewer to do that. And so you can see here it's uploading files. It's going to submit a prompt and then it will go and open up. So this is the meta, this is cursor agent, prompting cursor agent inside its own environment.And so you can see here bug, there's five images attached, whereas when it's submitted, it only had one image.swyx: I see. Yeah. But you gotta enable that if you're gonna use cur agent inside cur.Jonas: Exactly. And so here, this is then the after video where it went, it does the same thing. It attaches images, removes, some of them hit send.And you can see here, once this agent is up, only one of the images is left in the attachments. Yeah.swyx: Beautiful.Jonas: Okay. So easy merge.swyx: So yeah. When does it choose to do this? Because this is an extra step.Jonas: Yes. I think I've not done a great job yet of calibrating the model on when to reproduce these things.Yeah. Sometimes it will do it of its own accord. Yeah. We've been conservative where we try to have it only do it when it's [00:13:00] quite sure because it does add some amount of time to how long it takes it to work on it. But we also have added things like the slash repro command where you can just do, fix this bug slash repro and then it will know that it should first make you a video of it actually finding and making sure it can reproduce the bug.swyx: Yeah. Yeah. One sort of ML topic this ties into is reward hacking, where while you write test that you update only pass. So first write test, it shows me it fails, then make you test pass, which is a classic like red green.Jonas: Yep.swyx: LikeJonas: A-T-D-D-T-D-Dswyx: thing.No, very cool. Was that the last demo? Is thereJonas: Yeah.Anything I missed on the demos or points that you think? I think thatSamantha: covers it well. Yeah.swyx: Cool. Before we stop the screen share, can you gimme like a, just a tour of the slash commands ‘cause I so God ready. Huh, what? What are the good ones?Samantha: Yeah, we wanna increase discoverability around this too.I think that'll be like a future thing we work on. Yeah. But there's definitely a lot of good stuff nowJonas: we have a lot of internal ones that I think will not be that interesting. Here's an internal one that I've made. I don't know if anyone else at Cursor uses this one. Fix bb.Samantha: I've never heard of it.Jonas: Yeah.[00:14:00]Fix Bug Bot. So this is a thing that we want to integrate more tightly on. So you made it forswyx: yourself.Jonas: I made this for myself. It's actually available to everyone in the team, but yeah, no one knows about it. But yeah, there will be Bug bot comments and so Bug Bot has a lot of cool things. We actually just launched Bug Bot Auto Fix, where you can click a button and or change a setting and it will automatically fix its own things, and that works great in a bunch of cases.There are some cases where having the context of the original agent that created the PR is really helpful for fixing the bugs, because it might be like, oh, the bug here is that this, is a regression and actually you meant to do something more like that. And so having the original prompt and all of the context of the agent that worked on it, and so here I could just do, fix or we used to be able to do fixed PB and it would do that.No test is another one that we've had. Slash repro is in here. We mentioned that one.Samantha: One of my favorites is cloud agent diagnosis. This is one that makes heavy use of the Datadog MCP. Okay. And I [00:15:00] think Nick and David on our team wrote, and basically if there is a problem with a cloud agent we'll spin up a bunch of subs.Like a singleswyx: instance.Samantha: Yeah. We'll take the ideas and argument and spin up a bunch of subagents using the Datadog MCP to explore the logs and find like all of the problems that could have happened with that. It takes the debugging time, like from potentially you can do quick stuff quickly with the Datadog ui, but it takes it down to, again, like a single agent call as opposed to trolling through logs yourself.Jonas: You should also talk about the stuff we've done with transcripts.Samantha: Yes. Also so basically we've also done some things internally. There'll be some versions of this as we ship publicly soon, where you can spit up an agent and give it access to another agent's transcript to either basically debug something that happened.So act as an external debugger. I see. Or continue the conversation. Almost like forking it.swyx: A transcript includes all the chain of thought for the 11 minutes here. 45 minutes there.Samantha: Yeah. That way. Exactly. So basically acting as a like secondary agent that debugs the first, so we've started to push more andswyx: they're all the same [00:16:00] code.It is just the different prompts, but the sa the same.Samantha: Yeah. So basically same cloud agent infrastructure and then same harness. And then like when we do things like include, there's some extra infrastructure that goes into piping in like an external transcript if we include it as an attachment.But for things like the cloud agent diagnosis, that's mostly just using the Datadog MCP. ‘Cause we also launched CPS along with along with this cloud agent launch, launch support for cloud agent cps.swyx: Oh, that was drawn out.Jonas: We won't, we'll be doing a bigger marketing moment for it next week, but, and you can now use CPS andswyx: People will listen to it as well.Yeah,Jonas: they'llSamantha: be ahead of the third. They'll be ahead. And I would I actually don't know if the Datadog CP is like publicly available yet. I realize this not sure beta testing it, but it's been one of my favorites to use. Soswyx: I think that one's interesting for Datadog. ‘cause Datadog wants to own that site.Interesting with Bits. I don't know if you've tried bits.Samantha: I haven't tried bits.swyx: Yeah.Jonas: That's their cloud agentswyx: product. Yeah. Yeah. They want to be like we own your logs and give us our, some part of the, [00:17:00] self-healing software that everyone wants. Yeah. But obviously Cursor has a strong opinion on coding agents and you, you like taking away from the which like obviously you're going to do, and not every company's like Cursor, but it's interesting if you're a Datadog, like what do you do here?Do you expose your logs to FDP and let other people do it? Or do you try to own that it because it's extra business for you? Yeah. It's like an interesting one.Samantha: It's a good question. All I know is that I love the Datadog MCP,Jonas: And yeah, it is gonna be no, no surprise that people like will demand it, right?Samantha: Yeah.swyx: It's, it's like anysystemswyx: of record company like this, it's like how much do you give away? Cool. I think that's that for the sort of cloud agents tour. Cool. And we just talk about like cloud agents have been when did Kirsten loves cloud agents? Do you know, in JuneJonas: last year.swyx: June last year. So it's been slowly develop the thing you did, like a bunch of, like Michael did a post where himself, where he like showed this chart of like ages overtaking tap. And I'm like, wow, this is like the biggest transition in code.Jonas: Yeah.swyx: Like in, in [00:18:00] like the last,Jonas: yeah. I think that kind of got turned out.Yeah. I think it's a very interest,swyx: not at all. I think it's been highlighted by our friend Andre Kati today.Jonas: Okay.swyx: Talk more about it. What does it mean? Yeah. Is I just got given like the cursor tab key.Jonas: Yes. Yes.swyx: That's that'sSamantha: cool.swyx: I know, but it's gonna be like put in a museum.Jonas: It is.Samantha: I have to say I haven't used tab a little bit myself.Jonas: Yeah. I think that what it looks like to code with AI code generally creates software, even if you want to go higher level. Is changing very rapidly. No, not a hot take, but I think from our vendor's point at Cursor, I think one of the things that is probably underappreciated from the outside is that we are extremely self-aware about that fact and Kerscher, got its start in phase one, era one of like tab and auto complete.And that was really useful in its time. But a lot of people start looking at text files and editing code, like we call it hand coding. Now when you like type out the actual letters, it'sswyx: oh that's cute.Jonas: Yeah.swyx: Oh that's cute.Jonas: You're so boomer. So boomer. [00:19:00] And so that I think has been a slowly accelerating and now in the last few months, rapidly accelerating shift.And we think that's going to happen again with the next thing where the, I think some of the pains around tab of it's great, but I actually just want to give more to the agent and I don't want to do one tab at a time. I want to just give it a task and it goes off and does a larger unit of work and I can.Lean back a little bit more and operate at that higher level of abstraction that's going to happen again, where it goes from agents handing you back diffs and you're like in the weeds and giving it, 32nd to three minute tasks, to, you're giving it, three minute to 30 minute to three hour tasks and you're getting back videos and trying out previews rather than immediately looking at diffs every single time.swyx: Yeah. Anything to add?Samantha: One other shift that I've noticed as our cloud agents have really taken off internally has been a shift from primarily individually driven development to almost this collaborative nature of development for us, slack is actually almost like a development on [00:20:00] Id basically.So Iswyx: like maybe don't even build a custom ui, like maybe that's like a debugging thing, but actually it's that.Samantha: I feel like, yeah, there's still so much to left to explore there, but basically for us, like Slack is where a lot of development happens. Like we will have these issue channels or just like this product discussion channels where people are always at cursing and that kicks off a cloud agent.And for us at least, we have team follow-ups enabled. So if Jonas kicks off at Cursor in a thread, I can follow up with it and add more context. And so it turns into almost like a discussion service where people can like collaborate on ui. Oftentimes I will kick off an investigation and then sometimes I even ask it to get blame and then tag people who should be brought in. ‘cause it can tag people in Slack and then other people will comeswyx: in, can tag other people who are not involved in conversation. Yes. Can just do at Jonas if say, was talking to,Samantha: yeah.swyx: That's cool. You should, you guys should make a big good deal outta that.Samantha: I know. It's a lot to, I feel like there's a lot more to do with our slack surface area to show people externally. But yeah, basically like it [00:21:00] can bring other people in and then other people can also contribute to that thread and you can end up with a PR again, with the artifacts visible and then people can be like, okay, cool, we can merge this.So for us it's like the ID is almost like moving into Slack in some ways as well.swyx: I have the same experience with, but it's not developers, it's me. Designer salespeople.Samantha: Yeah.swyx: So me on like technical marketing, vision, designer on design and then salespeople on here's the legal source of what we agreed on.And then they all just collaborate and correct. The agents,Jonas: I think that we found when these threads is. The work that is left, that the humans are discussing in these threads is the nugget of what is actually interesting and relevant. It's not the boring details of where does this if statement go?It's do we wanna ship this? Is this the right ux? Is this the right form factor? Yeah. How do we make this more obvious to the user? It's like those really interesting kind of higher order questions that are so easy to collaborate with and leave the implementation to the cloud agent.Samantha: Totally. And no more discussion of am I gonna do this? Are you [00:22:00] gonna do this cursor's doing it? You just have to decide. You like it.swyx: Sometimes the, I don't know if there's a, this probably, you guys probably figured this out already, but since I, you need like a mute button. So like cursor, like we're going to take this offline, but still online.But like we need to talk among the humans first. Before you like could stop responding to everything.Jonas: Yeah. This is a design decision where currently cursor won't chime in unless you explicitly add Mention it. Yeah. Yeah.Samantha: So it's not always listening.Yeah.Jonas: I can see all the intermediate messages.swyx: Have you done the recursive, can cursor add another cursor or spawn another cursor?Samantha: Oh,Jonas: we've done some versions of this.swyx: Because, ‘cause it can add humans.Jonas: Yes. One of the other things we've been working on that's like an implication of generating the code is so easy is getting it to production is still harder than it should be.And broadly, you solve one bottleneck and three new ones pop up. Yeah. And so one of the new bottlenecks is getting into production and we have a like joke internally where you'll be talking about some feature and someone says, I have a PR for that. Which is it's so easy [00:23:00] to get to, I a PR for that, but it's hard still relatively to get from I a PR for that to, I'm confident and ready to merge this.And so I think that over the coming weeks and months, that's a thing that we think a lot about is how do we scale up compute to that pipeline of getting things from a first draft An agent did.swyx: Isn't that what Merge isn't know what graphite's for, likeJonas: graphite is a big part of that. The cloud agent testingswyx: Is it fully integrated or still different companiesJonas: working on I think we'll have more to share there in the future, but the goal is to have great end-to-end experience where Cursor doesn't just help you generate code tokens, it helps you create software end-to-end.And so review is a big part of that, that I think especially as models have gotten much better at writing code, generating code, we've felt that relatively crop up more,swyx: sorry this is completely unplanned, but like there I have people arguing one to you need ai. To review ai and then there is another approach, thought school of thought where it's no, [00:24:00] reviews are dead.Like just show me the video. It's it like,Samantha: yeah. I feel again, for me, the video is often like alignment and then I often still wanna go through a code review process.swyx: Like still look at the files andSamantha: everything. Yeah. There's a spectrum of course. Like the video, if it's really well done and it does like fully like test everything, you can feel pretty competent, but it's still helpful to, to look at the code.I make hep pay a lot of attention to bug bot. I feel like Bug Bot has been a great really highly adopted internally. We often like, won't we tell people like, don't leave bug bot comments unaddressed. ‘cause we have such high confidence in it. So people always address their bug bot comments.Jonas: Once you've had two cases where you merged something and then you went back later, there was a bug in it, you merged, you went back later and you were like, ah, bug Bot had found that I should have listened to Bug Bot.Once that happens two or three times, you learn to wait for bug bot.Samantha: Yeah. So I think for us there's like that code level review where like it's looking at the actual code and then there's like the like feature level review where you're looking at the features. There's like a whole number of different like areas.There'll probably eventually be things like performance level review, security [00:25:00] review, things like that where it's like more more different aspects of how this feature might affect your code base that you want to potentially leverage an agent to help with.Jonas: And some of those like bug bot will be synchronous and you'll typically want to wait on before you merge.But I think another thing that we're starting to see is. As with cloud agents, you scale up this parallelism and how much code you generate. 10 person startups become, need the Devrel X and pipelines that a 10,000 person company used to need. And that looks like a lot of the things I think that 10,000 person companies invented in order to get that volume of software to production safely.So that's things like, release frequently or release slowly, have different stages where you release, have checkpoints, automated ways of detecting regressions. And so I think we're gonna need stacks merg stack diffs merge queues. Exactly. A lot of those things are going to be importantswyx: forward with.I think the majority of people still don't know what stack stacks are. And I like, I have many friends in Facebook and like I, I'm pretty friendly with graphite. I've just, [00:26:00] I've never needed it ‘cause I don't work on that larger team and it's just like democratization of no, only here's what we've already worked out at very large scale and here's how you can, it benefits you too.Like I think to me, one of the beautiful things about GitHub is that. It's actually useful to me as an individual solo developer, even though it's like actually collaboration software.Jonas: Yep.swyx: And I don't think a lot of Devrel tools have figured that out yet. That transition from like large down to small.Jonas: Yeah. Kers is probably an inverse story.swyx: This is small down toJonas: Yeah. Where historically Kers share, part of why we grew so quickly was anyone on the team could pick it up and in fact people would pick it up, on the weekend for their side project and then bring it into work. ‘cause they loved using it so much.swyx: Yeah.Jonas: And I think a thing that we've started working on a lot more, not us specifically, but as a company and other folks at Cursor, is making it really great for teams and making it the, the 10th person that starts using Cursor in a team. Is immediately set up with things like, we launched Marketplace recently so other people can [00:27:00] configure what CPS and skills like plugins.So skills and cps, other people can configure that. So that my cursor is ready to go and set up. Sam loves the Datadog, MCP and Slack, MCP you've also been using a lot butSamantha: also pre-launch, but I feel like it's so good.Jonas: Yeah, my cursor should be configured if Sam feels strongly that's just amazing and required.swyx: Is it automatically shared or you have to go and.Jonas: It depends on the MCP. So some are obviously off per user. Yeah. And so Sam can't off my cursor with my Slack MCP, but some are team off and those can be set up by admins.swyx: Yeah. Yeah. That's cool. Yeah, I think, we had a man on the pod when cursor was five people, and like everyone was like, okay, what's the thing?And then it's usually something teams and org and enterprise, but it's actually working. But like usually at that stage when you're five, when you're just a vs. Code fork it's like how do you get there? Yeah. Will people pay for this? People do pay for it.Jonas: Yeah. And I think for cloud agents, we expect.[00:28:00]To have similar kind of PLG things where I think off the bat we've seen a lot of adoption with kind of smaller teams where the code bases are not quite as complex to set up. Yes. If you need some insane docker layer caching thing for builds not to take two hours, that's going to take a little bit longer for us to be able to support that kind of infrastructure.Whereas if you have front end backend, like one click agents can install everything that they need themselves.swyx: This is a good chance for me to just ask some technical sort of check the box questions. Can I choose the size of the vm?Jonas: Not yet. We are planning on adding that. Weswyx: have, this is obviously you want like LXXL, whatever, right?Like it's like the Amazon like sort menu.Jonas: Yes, exactly. We'll add that.swyx: Yeah. In some ways you have to basically become like a EC2, almost like you rent a box.Jonas: You rent a box. Yes. We talk a lot about brain in a box. Yeah. So cursor, we want to be a brain in a box,swyx: but is the mental model different? Is it more serverless?Is it more persistent? Is. Something else.Samantha: We want it to be a bit persistent. The desktop should be [00:29:00] something you can return to af even after some days. Like maybe you go back, they're like still thinking about a feature for some period of time. So theswyx: full like sus like suspend the memory and bring it back and then keep going.Samantha: Exactly.swyx: That's an interesting one because what I actually do want, like from a manna and open crawl, whatever, is like I want to be able to log in with my credentials to the thing, but not actually store it in any like secret store, whatever. ‘cause it's like this is the, my most sensitive stuff.Yeah. This is like my email, whatever. And just have it like, persist to the image. I don't know how it was hood, but like to rehydrate and then just keep going from there. But I don't think a lot of infra works that way. A lot of it's stateless where like you save it to a docker image and then it's only whatever you can describe in a Docker file and that's it.That's the only thing you can cl multiple times in parallel.Jonas: Yeah. We have a bunch of different ways of setting them up. So there's a dockerfile based approach. The main default way is actually snapshottingswyx: like a Linux vmJonas: like vm, right? You run a bunch of install commands and then you snapshot more or less the file system.And so that gets you set up for everything [00:30:00] that you would want to bring a new VM up from that template basically.swyx: Yeah.Jonas: And that's a bit distinct from what Sam was talking about with the hibernating and re rehydrating where that is a full memory snapshot as well. So there, if I had like the browser open to a specific page and we bring that back, that page will still be there.swyx: Was there any discussion internally and just building this stuff about every time you shoot a video it's actually you show a little bit of the desktop and the browser and it's not necessary if you just show the browser. If, if you know you're just demoing a front end application.Why not just show the browser, right? Like it Yeah,Samantha: we do have some panning and zooming. Yeah. Like it can decide that when it's actually recording and cutting the video to highlight different things. I think we've played around with different ways of segmenting it and yeah. There's been some different revs on it for sure.Jonas: Yeah. I think one of the interesting things is the version that you see now in cursor.com actually is like half of what we had at peak where we decided to unshift or unshipped quite a few things. So two of the interesting things to talk about, one is directly an answer to your [00:31:00] question where we had native browser that you would have locally, it was basically an iframe that via port forwarding could load the URL could talk to local host in the vm.So that gets you basically, so inswyx: your machine's browser,likeJonas: in your local browser? Yeah. You would go to local host 4,000 and that would get forwarded to local host 4,000 in the VM via port forward. We unshift that like atswyx: Eng Rock.Jonas: Like an Eng Rock. Exactly. We unshift that because we felt that the remote desktop was sufficiently low latency and more general purpose.So we build Cursor web, but we also build Cursor desktop. And so it's really useful to be able to have the full spectrum of things. And even for Cursor Web, as you saw in one of the examples, the agent was uploading files and like I couldn't upload files and open the file viewer if I only had access to the browser.And we've thought a lot about, this might seem funny coming from Cursor where we started as this, vs. Code Fork and I think inherited a lot of amazing things, but also a lot [00:32:00] of legacy UI from VS Code.Minimal Web UI SurfacesJonas: And so with the web UI we wanted to be very intentional about keeping that very minimal and exposing the right sum of set of primitive sort of app surfaces we call them, that are shared features of that cloud.Environment that you and the agent both use. So agent uses desktop and controls it. I can use desktop and controlled agent runs terminal commands. I can run terminal commands. So that's how our philosophy around it. The other thing that is maybe interesting to talk about that we unshipped is and we may, both of these things we may reship and decide at some point in the future that we've changed our minds on the trade offs or gotten it to a point where, putswyx: it out there.Let users tell you they want it. Exactly. Alright, fine.Why No File EditorJonas: So one of the other things is actually a files app. And so we used to have the ability at one point during the process of testing this internally to see next to, I had GID desktop and terminal on the right hand side of the tab there earlier to also have a files app where you could see and edit files.And we actually felt that in some [00:33:00] ways, by restricting and limiting what you could do there, people would naturally leave more to the agent and fall into this new pattern of delegating, which we thought was really valuable. And there's currently no way in Cursor web to edit these files.swyx: Yeah. Except you like open up the PR and go into GitHub and do the thing.Jonas: Yeah.swyx: Which is annoying.Jonas: Just tell the agent,swyx: I have criticized open AI for this. Because Open AI is Codex app doesn't have a file editor, like it has file viewer, but isn't a file editor.Jonas: Do you use the file viewer a lot?swyx: No. I understand, but like sometimes I want it, the one way to do it is like freaking going to no, they have a open in cursor button or open an antigravity or, opening whatever and people pointed that.So I was, I was part of the early testers group people pointed that and they were like, this is like a design smell. It's like you actually want a VS. Code fork that has all these things, but also a file editor. And they were like, no, just trust us.Jonas: Yeah. I think we as Cursor will want to, as a product, offer the [00:34:00] whole spectrum and so you want to be able to.Work at really high levels of abstraction and double click and see the lowest level. That's important. But I also think that like you won't be doing that in Slack. And so there are surfaces and ways of interacting where in some cases limiting the UX capabilities makes for a cleaner experience that's more simple and drives people into these new patterns where even locally we kicked off joking about this.People like don't really edit files, hand code anymore. And so we want to build for where that's going and not where it's beenswyx: a lot of cool stuff. And Okay. I have a couple more.Full Stack Hosting Debateswyx: So observations about the design elements about these things. One of the things that I'm always thinking about is cursor and other peers of cursor start from like the Devrel tools and work their way towards cloud agents.Other people, like the lovable and bolts of the world start with here's like the vibe code. Full cloud thing. They were already cloud edges before anyone else cloud edges and we will give you the full deploy platform. So we own the whole loop. We own all the infrastructure, we own, we, we have the logs, we have the the live site, [00:35:00] whatever.And you can do that cycle cursor doesn't own that cycle even today. You don't have the versal, you don't have the, you whatever deploy infrastructure that, that you're gonna have, which gives you powers because anyone can use it. And any enterprise who, whatever you infra, I don't care. But then also gives you limitations as to how much you can actually fully debug end to end.I guess I'm just putting out there that like is there a future where there's like full stack cursor where like cursor apps.com where like I host my cursor site this, which is basically a verse clone, right? I don't know.Jonas: I think that's a interesting question to be asking, and I think like the logic that you laid out for how you would get there is logic that I largely agree with.swyx: Yeah. Yeah.Jonas: I think right now we're really focused on what we see as the next big bottleneck and because things like the Datadog MCP exist, yeah. I don't think that the best way we can help our customers ship more software. Is by building a hosting solution right now,swyx: by the way, these are things I've actually discussed with some of the companies I just named.Jonas: Yeah, for sure. Right now, just this big bottleneck is getting the code out there and also [00:36:00] unlike a lovable in the bolt, we focus much more on existing software. And the zero to one greenfield is just a very different problem. Imagine going to a Shopify and convincing them to deploy on your deployment solution.That's very different and I think will take much longer to see how that works. May never happen relative to, oh, it's like a zero to one app.swyx: I'll say. It's tempting because look like 50% of your apps are versal, superb base tailwind react it's the stack. It's what everyone does.So I it's kinda interesting.Jonas: Yeah.Model Choice and Auto Routingswyx: The other thing is the model select dying. Right now in cloud agents, it's stuck down, bottom left. Sure it's Codex High today, but do I care if it's suddenly switched to Opus? Probably not.Samantha: We definitely wanna give people a choice across models because I feel like it, the meta change is very frequently.I was a big like Opus 4.5 Maximalist, and when codex 5.3 came out, I hard, hard switch. So that's all I use now.swyx: Yeah. Agreed. I don't know if, but basically like when I use it in Slack, [00:37:00] right? Cursor does a very good job of exposing yeah. Cursors. If people go use it, here's the model we're using.Yeah. Here's how you switch if you want. But otherwise it's like extracted away, which is like beautiful because then you actually, you should decide.Jonas: Yeah, I think we want to be doing more with defaults.swyx: Yeah.Jonas: Where we can suggest things to people. A thing that we have in the editor, the desktop app is auto, which will route your request and do things there.So I think we will want to do something like that for cloud agents as well. We haven't done it yet. And so I think. We have both people like Sam, who are very savvy and want know exactly what model they want, and we also have people that want us to pick the best model for them because we have amazing people like Sam and we, we are the experts.Yeah. We have both the traffic and the internal taste and experience to know what we think is best.swyx: Yeah. I have this ongoing pieces of agent lab versus model lab. And to me, cursor and other companies are example of an agent lab that is, building a new playbook that is different from a model lab where it's like very GP heavy Olo.So obviously has a research [00:38:00] team. And my thesis is like you just, every agent lab is going to have a router because you're going to be asked like, what's what. I don't keep up to every day. I'm not a Sam, I don't keep up every day for using you as sample the arm arbitrator of taste. Put me on CRI Auto.Is it free? It's not free.Jonas: Auto's not free, but there's different pricing tiers. Yeah.swyx: Put me on Chris. You decide from me based on all the other people you know better than me. And I think every agent lab should basically end up doing this because that actually gives you extra power because you like people stop carrying or having loyalty with one lab.Jonas: Yeah.Best Of N and Model CouncilsJonas: Two other maybe interesting things that I don't know how much they're on your radar are one the best event thing we mentioned where running different models head to head is actually quite interesting becauseswyx: which exists in cursor.Jonas: That exists in cur ID and web. So the problem is where do you run them?swyx: Okay.Jonas: And so I, I can share my screen if that's interesting. Yeahinteresting.swyx: Yeah. Yeah. Obviously parallel agents, very popal.Jonas: Yes, exactly. Parallel agentsswyx: in you mind. Are they the same thing? Best event and parallel agents? I don't want to [00:39:00] put words in your mouth.Jonas: Best event is a subset of parallel agents where they're running on the same prompt.That would be my answer. So this is what that looks like. And so here in this dropdown picker, I can just select multiple models.swyx: Yeah.Jonas: And now if I do a prompt, I'm going to do something silly. I am running these five models.swyx: Okay. This is this fake clone, of course. The 2.0 yeah.Jonas: Yes, exactly. But they're running so the cursor 2.0, you can do desktop or cloud.So this is cloud specifically where the benefit over work trees is that they have their own VMs and can run commands and won't try to kill ports that the other one is running. Which are some of the pains. These are allswyx: called work trees?Jonas: No, these are all cloud agents with their own VMs.swyx: Okay. ButJonas: When you do it locally, sometimes people do work trees and that's been the main way that people have set out parallel so far.I've gotta say.swyx: That's so confusing for folks.Jonas: Yeah.swyx: No one knows what work trees are.Jonas: Exactly. I think we're phasing out work trees.swyx: Really.Jonas: Yeah.swyx: Okay.Samantha: But yeah. And one other thing I would say though on the multimodel choice, [00:40:00] so this is another experiment that we ran last year and the decide to ship at that time but may come back to, and there was an interesting learning that's relevant for, these different model providers. It was something that would run a bunch of best of ends but then synthesize and basically run like a synthesizer layer of models. And that was other agents that would take LM Judge, but one that was also agentic and could write code. So it wasn't just picking but also taking the learnings from two models or, and models that it was looking at and writing a new diff.And what we found was that at the time at least, there were strengths to using models from different model providers as the base level of this process. Like basically you could get almost like a synergistic output that was better than having a very unified, like bottom model tier. So it was really interesting ‘cause it's like potentially, even though even in the future when you have like maybe one model as ahead of the other for a little bit, there could be some benefit from having like multiple top tier models involved in like a [00:41:00] model swarm or whatever agent Swarm that you're doing, that they each have strengths and weaknesses.Yeah.Jonas: Andre called this the council, right?Samantha: Yeah, exactly. We actually, oh, that's another internal command we have that Ian wrote slash council. Oh, and they some, yeah.swyx: Yes. This idea is in various forms everywhere. And I think for me, like for me, the productization of it, you guys have done yeah, like this is very flexible, but.If I were to add another Yeah, what your thing is on here it would be too much. I what, let's say,Samantha: Ideally it's all, it's something that the user can just choose and it all happens under the hood in a way where like you just get the benefit of that process at the end and better output basically, but don't have to get too lost in the complexity of judging along the way.Jonas: Okay.Subagents for ContextJonas: Another thing on the many agents, on different parallel agents that's interesting is an idea that's been around for a while as well that has started working recently is subagents. And so this is one other way to get agents of the different prompts and different goals and different models, [00:42:00] different vintages to work together.Collaborate and delegate.swyx: Yeah. I'm very like I like one of my, I always looking for this is the year of the blah, right? Yeah. I think one of the things on the blahs is subs. I think this is of but I haven't used them in cursor. Are they fully formed or how do I honestly like an intro because do I form them from new every time?Do I have fixed subagents? How are they different for slash commands? There's all these like really basic questions that no one stops to answer for people because everyone's just like too busy launching. We have toSamantha: honestly, you could, you can see them in cursor now if you just say spin up like 50 subagents to, so cursor definesswyx: what Subagents.Yeah.Samantha: Yeah. So basically I think I shouldn't speak for the whole subagents team. This is like a different team that's been working on this, but our thesis or thing that we saw internally is that like they're great for context management for kind of long running threads, or if you're trying to just throw more compute at something.We have strongly used, almost like a generic task interface where then the main agent can define [00:43:00] like what goes into the subagent. So if I say explore my code base, it might decide to spin up an explore subagent and or might decide to spin up five explore subagent.swyx: But I don't get to set what those subagent are, right?It's all defined by a model.Samantha: I think. I actually would have to refresh myself on the sub agent interface.Jonas: There are some built-in ones like the explore subagent is free pre-built. But you can also instruct the model to use other subagents and then it will. And one other example of a built-in subagent is I actually just kicked one off in cursor and I can show you what that looks like.swyx: Yes. Because I tried to do this in pure prompt space.Jonas: So this is the desktop app? Yeah. Yeah. And that'sswyx: all you need to do, right? Yeah.Jonas: That's all you need to do. So I said use a sub agent to explore and I think, yeah, so I can even click in and see what the subagent is working on here. It ran some fine command and this is a composer under the hood.Even though my main model is Opus, it does smart routing to take, like in this instance the explorer sort of requires reading a ton of things. And so a faster model is really useful to get an [00:44:00] answer quickly, but that this is what subagent look like. And I think we wanted to do a lot more to expose hooks and ways for people to configure these.Another example of a cus sort of builtin subagent is the computer use subagent in the cloud agents, where we found that those trajectories can be long and involve a lot of images obviously, and execution of some testing verification task. We wanted to use that models that are particularly good at that.So that's one reason to use subagents. And then the other reason to use subagents is we want contexts to be summarized reduced down at a subagent level. That's a really neat boundary at which to compress that rollout and testing into a final message that agent writes that then gets passed into the parent rather than having to do some global compaction or something like that.swyx: Awesome. Cool. While we're in the subagents conversation, I can't do a cursor conversation and not talk about listen stuff. What is that? What is what? He built a browser. He built an os. Yes. And he [00:45:00] experimented with a lot of different architectures and basically ended up reinventing the software engineer org chart.This is all cool, but what's your take? What's, is there any hole behind the side? The scenes stories about that kind of, that whole adventure.Samantha: Some of those experiments have found their way into a feature that's available in cloud agents now, the long running agent mode internally, we call it grind mode.And I think there's like some hint of grind mode accessible in the picker today. ‘cause you can do choose grind until done. And so that was really the result of experiments that Wilson started in this vein where he I think the Ralph Wigga loop was like floating around at the time, but it was something he also independently found and he was experimenting with.And that was what led to this product surface.swyx: And it is just simple idea of have criteria for completion and do not. Until you complete,Samantha: there's a bit more complexity as well in, in our implementation. Like there's a specific, you have to start out by aligning and there's like a planning stage where it will work with you and it will not get like start grind execution mode until it's decided that the [00:46:00] plan is amenable to both of you.Basically,swyx: I refuse to work until you make me happy.Jonas: We found that it's really important where people would give like very underspecified prompt and then expect it to come back with magic. And if it's gonna go off and work for three minutes, that's one thing. When it's gonna go off and work for three days, probably should spend like a few hours upfront making sure that you have communicated what you actually want.swyx: Yeah. And just to like really drive from the point. We really mean three days that No, noJonas: human. Oh yeah. We've had three day months innovation whatsoever.Samantha: I don't know what the record is, but there's been a long time with the grantsJonas: and so the thing that is available in cursor. The long running agent is if you wanna think about it, very abstractly that is like one worker node.Whereas what built the browser is a society of workers and planners and different agents collaborating. Because we started building the browser with one worker node at the time, that was just the agent. And it became one worker node when we realized that the throughput of the system was not where it needed to be [00:47:00] to get something as large of a scale as the browser done.swyx: Yeah.Jonas: And so this has also become a really big mental model for us with cloud, cloud agents is there's the classic engineering latency throughput trade-offs. And so you know, the code is water flowing through a pipe. The, we think that over the coming months, the big unlock is not going to be one person with a model getting more done, like the water flowing faster and we'll be making the pipe much wider and so ing more, whether that's swarms of agents or parallel agents, both of those are things that contribute to getting.Much more done in the same amount of time, but any one of those tasks doesn't necessarily need to get done that quickly. And throughput is this really big thing where if you see the system of a hundred concurrent agents outputting thousands of tokens a second, you can't go back like that.Just you see a glimpse of the future where obviously there are many caveats. Like no one is using this browser. IRL. There's like a bunch of things not quite right yet, but we are going to get to systems that produce real production [00:48:00] code at the scale much sooner than people think. And it forces you to think what even happens to production systems. Like we've broken our GitHub actions recently because we have so many agents like producing and pushing code that like CICD is just overloaded. ‘cause suddenly it's like effectively weg grew, cursor's growing very quickly anyway, but you grow head count, 10 x when people run 10 x as many agents.And so a lot of these systems, exactly, a lot of these systems will need to adapt.swyx: It also reminds me, we, we all, the three of us live in the app layer, but if you talk to the researchers who are doing RL infrastructure, it's the same thing. It's like all these parallel rollouts and scheduling them and making sure as much throughput as possible goes through them.Yeah, it's the same thing.Jonas: We were talking briefly before we started recording. You were mentioning memory chips and some of the shortages there. The other thing that I think is just like hard to wrap your head around the scale of the system that was building the browser, the concurrency there.If Sam and I both have a system like that running for us, [00:49:00] shipping our software. The amount of inference that we're going to need per developer is just really mind-boggling. And that makes, sometimes when I think about that, I think that even with, the most optimistic projections for what we're going to need in terms of buildout, our underestimating, the extent to which these swarm systems can like churn at scale to produce code that is valuable to the economy.And,swyx: yeah, you can cut this if it's sensitive, but I was just Do you have estimates of how much your token consumption is?Jonas: Like per developer?swyx: Yeah. Or yourself. I don't need like comfy average. I just curious. ISamantha: feel like I, for a while I wasn't an admin on the usage dashboard, so I like wasn't able to actually see, but it was a,swyx: mine has gone up.Samantha: Oh yeah.swyx: But I thinkSamantha: it's in terms of how much work I'm doing, it's more like I have no worries about developers losing their jobs, at least in the near term. ‘cause I feel like that's a more broad discussion.swyx: Yeah. Yeah. You went there. I didn't go, I wasn't going there.I was just like how much more are you using?Samantha: There's so much stuff to be built. And so I feel like I'm basically just [00:50:00] trying to constantly I have more ambitions than I did before. Yes. Personally. Yes. So can't speak to the broader thing. But for me it's like I'm busier than ever before.I'm using more tokens and I am also doing more things.Jonas: Yeah. Yeah. I don't have the stats for myself, but I think broadly a thing that we've seen, that we expect to continue is J'S paradox. Whereswyx: you can't do it in our podcast without seeingJonas: it. Exactly. We've done it. Now we can wrap. We've done, we said the words.Phase one tab auto complete people paid like 20 bucks a month. And that was great. Phase two where you were iterating with these local models. Today people pay like hundreds of dollars a month. I think as we think about these highly parallel kind of agents running off for a long times in their own VM system, we are already at that point where people will be spending thousands of dollars a month per human, and I think potentially tens of thousands and beyond, where it's not like we are greedy for like capturing more money, but what happens is just individuals get that much more leverage.And if one person can do as much as 10 people, yeah. That tool that allows ‘em to do that is going to be tremendously valuable [00:51:00] and worth investing in and taking the best thing that exists.swyx: One more question on just the cursor in general and then open-ended for you guys to plug whatever you wanna put.How is Cursor hiring these days?Samantha: What do you mean by how?swyx: So obviously lead code is dead. Oh,Samantha: okay.swyx: Everyone says work trial. Different people have different levels of adoption of agents. Some people can really adopt can be much more productive. But other people, you just need to give them a little bit of time.And sometimes they've never lived in a token rich place like cursor.And once you live in a token rich place, you're you just work differently. But you need to have done that. And a lot of people anyway, it was just open-ended. Like how has agentic engineering, agentic coding changed your opinions on hiring?Is there any like broad like insights? Yeah.Jonas: Basically I'm asking this for other people, right? Yeah, totally. Totally. To hear Sam's opinion, we haven't talked about this the two of us. I think that we don't see necessarily being great at the latest thing with AI coding as a prerequisite.I do think that's a sign that people are keeping up and [00:52:00] curious and willing to upscale themselves in what's happening because. As we were talking about the last three months, the game has completely changed. It's like what I do all day is very different.swyx: Like it's my job and I can't,Jonas: Yeah, totally.I do think that still as Sam was saying, the fundamentals remain important in the current age and being able to go and double click down. And models today do still have weaknesses where if you let them run for too long without cleaning up and refactoring, the coke will get sloppy and there'll be bad abstractions.And so you still do need humans that like have built systems before, no good patterns when they see them and know where to steer things.Samantha: I would agree with that. I would say again, cursor also operates very quickly and leveraging ag agentic engineering is probably one reason why that's possible in this current moment.I think in the past it was just like people coding quickly and now there's like people who use agents to move faster as well. So it's part of our process will always look for we'll select for kind of that ability to make good decisions quickly and move well in this environment.And so I think being able to [00:53:00] figure out how to use agents to help you do that is an important part of it too.swyx: Yeah. Okay. The fork in the road, either predictions for the end of the year, if you have any, or PUDs.Jonas: Evictions are not going to go well.Samantha: I know it's hard.swyx: They're so hard. Get it wrong.It's okay. Just, yeah.Jonas: One other plug that may be interesting that I feel like we touched on but haven't talked a ton about is a thing that the kind of these new interfaces and this parallelism enables is the ability to hop back and forth between threads really quickly. And so a thing that we have,swyx: you wanna show something or,Jonas: yeah, I can show something.A thing that we have felt with local agents is this pain around contact switching. And you have one agent that went off and did some work and another agent that, that did something else. And so here by having, I just have three tabs open, let's say, but I can very quickly, hop in here.This is an example I showed earlier, but the actual workflow here I think is really different in a way that may not be obvious, where, I start t

Law School
Property Law Part Five: Land Use Controls

Law School

Play Episode Listen Later Feb 20, 2026 50:06


This conversation delves into the complexities of land use controls, focusing on the interplay between individual property rights and government regulations. It explores the concept of police power, zoning laws, eminent domain, and regulatory takings, providing a comprehensive overview of how these elements shape property law. The discussion highlights key cases, modern trends, and the implications of government actions on private property rights, ultimately emphasizing the ongoing negotiation between public interest and private ownership.Most property owners don't realize how easily their land can be redefined or taken by the government — and the rules that determine when you get paid are more complex than you think. If you're facing land use restrictions, rezoning, or government seizures, understanding the subtle distinctions could be the difference between compensation and being left empty-handed.In this eye-opening episode, we cut through the legal jargon to reveal how land use law balances individual property rights against the state's police power. You'll discover how the concept of police power grants governments broad authority to regulate land for public health, safety, and welfare — but that power is checked by constitutional limits that can turn a regulation into a costly takings claim.We break down the core frameworks that govern land disputes:Zoning: How local governments draw legal lines that enforce land use categories like residential, commercial, or industrial. You'll learn why courts give zoning laws the rational basis test, often leading to deference but with key exceptions for nonconforming uses, variances, and spot rezoning. Plus, the history behind Euclidean zoning and its modern reforms—mixed use, PUDs, and inclusionary zoning—are explained with practical insights for real-world or exam scenarios.Eminent Domain: Dive into the power that allows governments to seize land for public use, with the landmark Kelo v. New London case illustrating the broad interpretation of public purpose, including economic development. We'll explore what it means to be paid just compensation — mainly fair market value — and the pitfalls involving sentimental value and partial takings.Regulatory Takings: This gray zone is where law fights to define “too far.” Justice Holmes' famous Mahon line sets the stage: regulations that deny all economic value (Lucas) or involve permanent physical invasions (Loretto) trigger per se compensation. You'll learn how courts analyze cases where regulations restrict land use but stop short of total deprivation, using tests like Penn Central balancing factors, and the importance of parcel as a whole (Murr) in valuing property.Advanced Concepts: We discuss the denominator problem—how property boundaries influence claims—and how exactions (like impact fees or land dedication) are scrutinized via Nolan and Dolan tests for nexus and proportionality. Discover the innovative use of transferable development rights that turn regulation into market transactions, offering strategic ways to mitigate takings claims.Recent Developments: The episode closes with compelling cases like Cedar Point Nursery, affirming that even partial physical invasions are takings, and Tyler v. Hennepin, emphasizing that government overreach in foreclosures can cross the line into “home equity theft.”This episode is essential for anyone navigating property disputes, land use planning, or preparing for law exams. Master the step-by-step checklist: from applying the rational basis test in zoning, to spotting per se takings, and balancing analysis in complex regulatory cases. Property law is a battlefield of rights and limits. By understanding where the line is drawn—and when it's crossed—you'll be better equipped to protect your interests or challenge overreach. land use, zoning, eminent domain, regulatory takings, property law, police power, property rights, Euclid v. Ambler, nonconforming use, exactions

Cork's 96fm Opinion Line
Salted Caramel Christmas :Out with the old puds in with the new

Cork's 96fm Opinion Line

Play Episode Listen Later Dec 22, 2025 9:01


PJ Chats with Cork's Niamh Cosgrave who charts the fastest-growing festive flavours and the decline of the old-school pud. Hosted on Acast. See acast.com/privacy for more information.

PUDs Podcast
It's Not "Goodbye" It's "See You Later"

PUDs Podcast

Play Episode Listen Later Apr 17, 2025 60:10


Send us some fan mail here!It's the end of the road for the PUDs boys for now...for a multitude of reasons we will be taking a break from the PUDs Podcast and moving onto different projects. Maybe we'll be back from time to time if the podcast beckons. Listen in to hear why on this thanks-for-listening-to-us-across-seventy-eight-episodes episode of the PUDs Podcast!Episode Links:Listen to Nick on the Sounds Like A Search And Rescue PodcastListen to Josh on the Not Safe For Sunday PodcastNick Sidla Photography at Bristol Peak RusticsFollow us on Instagram: @pudspodcastFollow us on Facebook: PUDs PodcastSubscribe to Nick's YouTube Channel: Nick in NatureFollow Nick on Instagram: @nick__in__natureFollow Josh on Instagram: @josh___talksEmail us at: pudspod@outlook.comRecorded and Produced in Black Cat Studios by Nick Sidla© 2025 PUDs Podcast

Schøtministeriet
Klyngebombe af puds // NyUgesSamtale 19. FEB 2025

Schøtministeriet

Play Episode Listen Later Feb 19, 2025 61:41


Mads Holm, Simon Astrup og Michael Schøt holder morgenmøde i Schøtministeriet ⭐️Jeg skal på tour i 2025!⭐️ Du finder billetter på www.michaelschoet.dk Har du lyst til at prøve Zetland, så kan du gøre det på: https://www.zetland.dk/ministeriet

jeg zetland michael sch puds mads holm simon astrup
PUDs Podcast
SPUDs: Hiking with a Newborn, Infant, & Toddler

PUDs Podcast

Play Episode Listen Later Feb 18, 2025 62:37


Send us some fan mail here!Nick has had a crazy week with a family illness and Josh is all tied up, so Ash sits down with Nick to bang out a quick S(mall)PUDs episode! The forever-hiking buddies discuss their journey, experiences, and challenges (thus far) hiking with their daughter from the age of 2 weeks to nearly 2.5 years!Local hikes in Rehoboth at 2 weeks with Daddy, summit dances on Mount Willard, many ascents of Mount Wachusett, Mount Van Hoevenburg in the Adirondacks, losing pinecones on Hedgehog Mountain, a temper tantrum on Mount Stinson, day hiking some of the Long Trail, sleeping in a carrier pack, forgetting a puffy and substituting with a blanket and hand warmers, hot days on the Cliff Walk in Newport, sunsets on Bald Mountain,"snackies" are paramount, plus many more "family" hiking stories, on this all-about-hiking-with-a-young-kiddo-episode of the PUDs Podcast!!!Episode Links:Osprey Poco Child CarrierErgobaby Omni 360 All-Position Baby Carrier (7-45lbs)Hedgehog Mountain with Ash & Rylan on Nick's YouTube ChannelMount Stinson with Ash & Rylan on Nick's YouTube ChannelSunset Ledge on the Long Trail with Ash & Rylan on Nick's YouTube ChannelKingsbury Reservoir Loop with Ash & Rylan on Nick's YouTube ChannelMount Willard with Ash, Rylan, Wilkie, Lorrie, & Mike on Nick's YouTube Channel Follow us on Instagram: @pudspodcastFollow us on Facebook: PUDs PodcastSubscribe to Nick's YouTube Channel: Nick in NatureFollow Nick on Instagram: @nick__in__natureFollow Josh on Instagram: @josh___talksEmail us at: pudspod@outlook.comRecorded and Produced in Black Cat Studios by Nick Sidla© 2025 PUDs Podcast

Sounds Like A Search And Rescue Podcast
Episode 182 - Welcome NH Wild, White Mountain Active Projects, Wildcats, Greenleaf Rescue, Snowshoes and Butt Sledding

Sounds Like A Search And Rescue Podcast

Play Episode Listen Later Jan 24, 2025 108:46


https://slasrpodcast.com/      SLASRPodcast@gmail.com   Welcome to episode 182 of the Sounds like a search and rescue podcast. This week we are joined by the NH Wild Crew - Nichole and Paul. They are avid white mountain hikers who focus on fun, photography and friends. They are here this week to share some stories, give us some info on their favorite hikes, tips on gear and photography. Plus we give a run down on proposed projects in the White Mountain National Forest including updates on Sawyer River road, Lincoln Woods, Hermit lake shelter and others. Stomp shares a story about Mt. Everest climbers using performance enhancers to increase their odds of finishing, butt sledding accidents, a review of some winter clothes from US Sherpa, a discussion about Snowshoe etiquette and butt sledding safety and a recent close call rescue off the greenleaf trail.  This weeks Higher Summit Forecast   About NH Wild NH Wild Instagram NH Wild Facebook   Topics The Stomp crew was hit Plymouth, NH is the Nacho capital of NH White Mountains Schedule of Proposed Actions (SOPA) National news - hikers getting shot near the southern border Two Butt (or Bum) sledders injured in Canada Performance Enhancers for Mount Everest Wind Chill - Snow in Florida US Sherpa Clothes Burton - longboarders Skiing in the Dry River Dave Shits in the Woods is on the PUDS Podcast this week  Hiking the Wildcats, Mike, Nichole and Paul Notable Hikes Welcome Paul and Nichole from NH Wild  Snowshoes - when to use, tips and tricks Butt Sledding - advice and safety Recent Search and Rescues   Show Notes Apple Podcast link for 5 star reviews SLASR Merchandise SLASR LinkTree MWRR registration Northern Extremes Snowmobile Plymouth kills it for best nachos in NH Current Schedule of Proposed Actions in the WMNF Current Schedule of Proposed Actions in the WMNF Sawyer River 2 Bridge Replacement Lincoln Woods New single track bike trail at Great Glen Outdoors Center Hermit Lake Shelters - Current accommodations Huntington Ravine Winter Access Bridge Replacements AMC Galehead Hut is proposing to install Solar Panels Campton Dam Sale,  - potential buyer - Mad River Power Fabyan Cabin - Rental camp Falling Waters Trail Relocation  Hiker shot by cartel, Southern border  A spike in butt sled incidents Xenon assist up Everest Xenon Gas banned in professional cycling after use by Russians in Sochi Olympics Nationwide windchill map 9 inches of snow in Pensacola  US Sherpa clothing Khumjung Hat  Burton finally listens to the longboarders PUDS for a discussion about bushwhacking the NH Highest Hundred & the NHI69  Ken McGray's recent article on snowshoes PCT Mystery BC skiers lost of Spruce Peak, rescued by Stowe Mountain Rescue Hikers assisted on Greenleaf Trail More details on the rescue   Sponsors, Friends  and Partners Wild Raven Endurance Coaching CS Instant Coffee 2024 Longest Day - 48 Peaks Mount Washington Higher Summits Forecast Hiking Buddies  Vaucluse - Sweat less. Explore more. – Vaucluse Gear Fieldstone Kombucha

PUDs Podcast
Winter Arrives in the Whites; Waterville Valley, the Osceolas, & Carrigain

PUDs Podcast

Play Episode Listen Later Jan 7, 2025 98:04


Send us some fan mail here!Hope you all had a great Christmas, Happy Holidays, and New Year's! The holidays are over, and the boys are back with a fresh episode for 2025!Josh questions what kind of Taco Bell item Nick is, the boys recap their holiday celebrations, Josh visits the "Boston Museum of Illusion" and stays in Waterville Valley over New Year's and gets our for a few hikes; including Big Pines Path and Boulder Path, Nick continues chipping away at his Winter New Hampshire Four-Thousand-Footers with hikes of the Osceolas and Carrigain, how does Squid Game Season 2 stack up to the original, and the first hyperthetical of 2025 on this new-year-same-PUDs-episode of the PUDs Podcast!Special Thanks to Our Sponsor:Impact Botanicals - use code "puds" for 20% off your order!Nick's Music Moment: Rome - The National - 2024 Josh's Jazzy Music Moment: Decide - Djo - 2022 ("End of Beginning" single)Episode Links:Waterville Valley - Best Hikes for KidsOsceolas via Greeley Ponds Trail - AllTrailsCarrigain via Signal Ridge Trail - AllTrails (keep in mind you will have to walk ~2 miles from 302 to reach this on Sawyer River Road and ~2 miles back on the way out)Follow us on Instagram: @pudspodcastFollow us on Facebook: PUDs PodcastSubscribe to Nick's YouTube Channel: Nick in NatureFollow Nick on Instagram: @nick__in__natureFollow Josh on Instagram: @josh___talksEmail us at: pudspod@outlook.comRecorded and Produced in Black Cat Studios by Nick Sidla© 2024 PUDs Podcast

Sounds Like A Search And Rescue Podcast
Mike & Stomp join the Puds Podcast

Sounds Like A Search And Rescue Podcast

Play Episode Listen Later Dec 25, 2024 111:57


We were thrilled and honored to join Nick & Josh, of the Puds Podcast, for a wide-ranging chat about hiking, podcasting and more.   Mike & Stomp    

stomp puds
Nestology Podcast
MUDs, PIDs, and PUDs, Oh My!

Nestology Podcast

Play Episode Listen Later Dec 10, 2024 16:04


In this episode, we break down the confusing world of MUDs, PIDs, PUDs, and TIFs. What do these acronyms mean, and how do they affect your property taxes and homeownership? Join us as we simplify these complex terms and explain what you need to know before buying or building in areas with special taxing districts. Whether you're a first-time buyer or a seasoned homeowner, this episode will help you navigate these important considerations with confidence.Be sure to check out our socials to get the breakdown of these!Facebook - https://www.facebook.com/nestologypodcastInstagram - http://instagram.com/nestologypodcastSend us a textEnjoyed this episode? Share it with friends and family or leave us a review! Have questions or stories to share? Send them our way, and they might be featured in a future episode! Stay Connected:- Follow us on Instagram and Facebook for more updates and visuals.- Visit our website at NestologyPodcast.com for additional resources and episode archives.- Email us at NestologyPodcast@gmail.com with your questions and stories!

muds tifs pids puds
PUDs Podcast
SPUDs: Carrabasset Valley Hiking & Sauchuk's Corn Maze and Pumpkin Patch

PUDs Podcast

Play Episode Listen Later Oct 19, 2024 52:01


Send us some fan mail here!Josh and Nick have been getting in the autumnal spirit with some Fall hikes up in Maine's Carrabasset Valley a trip to Sauchuk's Farm in Plympton, Massachusetts!Nick, Ash, friend-of-the-podcast Wilkie, and family, head up to the far reaches of northwest Maine to continue their quest to bag the New England 67 Four-Thousand Footers and check out a few other local hikes in the area, Nick wraps up his Taylor James Steeves Foundation Tay's Summit Challenge in Rhode Island's Arcadia Wildlife Management Area, and the PUDs boys hang with their families at Sauchuk's Farm and try not to get lost in a Boston-Bruins-themed corn maze in this lovely-little-recap-SPUDs-isode of the PUDs Podcast!Special Thanks to Our Sponsor:Adventurisitq Clothing - use code "PUDSPOD" for 20% off your first order!Episode Links:Sauchuk's Corn Maze and Pumpkin PatchHiking Maine's 4,000 Footers GuidebookFollow us on Instagram: @pudspodcastFollow us on Facebook: PUDs PodcastSubscribe to Nick's YouTube Channel: Nick in NatureFollow Nick on Instagram: @nick__in__natureFollow Josh on Instagram: @jrogers.32Email us at: pudspod@outlook.comRecorded and Produced in Black Cat Studios by Nick Sidla© 2024 PUDs Podcast

Sounds Like A Search And Rescue Podcast
Episode 172 - Welcome Chris Gothberg, Self Rescue, Nick from PUDs Podcast, More White Mountains History

Sounds Like A Search And Rescue Podcast

Play Episode Listen Later Oct 18, 2024 120:47


https://slasrpodcast.com/      SLASRPodcast@gmail.com   This week we are joined for a listener spot spotlight with Chris Gothberg. Chris is a hiker, trail runner and photographer who will share some stories of his recent hikes in and around the Whites. I'm going to ask him to highlight some areas of Western NH that we don't often talk about. Stomp gives his tips on Self Rescue - when should you and when should you not. Also sitting in with us is one half of the popular PUDs Podcast - Nick Sidla. Nick is going to add his perspective on a variety of topics including - NH trails get overrun with poorly behaving tourists during leaf season and it is all Stomps fault, plus snow has arrived on the higher summits this week, Moose safety tips, Space and Alien news, Safety courses in Avalanche and Snowmobiles, some history segments - Stomp looks back at the case of a Dartmouth Student who went missing on an outing club hike in 2019, I'll share an AMC snowshoe trip itinerary from February of 1908 and we will review a trip report to the site of the Old Man on Cannon from the Summer of 1908. Plus Stomp hikes Lafayette, and we will cover recent search and rescue news.   This weeks Higher Summit Forecast   Donations + Guests Go Fund Me - Peter Gibney About Chris Chris Instagram PUDS Podcast   Donations to Hurricane Helene Care of: Stacey Manney 942 Yorktown Dr,  Charleston SC 29412   Topics Stomp the smoker Happy 8th Anniversary to Redline Guiding Artist Bluff is overrun with leaf peepers Snow on Mount Washington Hurricane Helene Donations Welcome back Nick Sidla from PUDs Podcast Moose encounters, dead horses, Yosemite Death Space Rockets and Alien Radio Signals Cold weather classes History Segments - Dartmouth Rescue - Trip reports from 1908 One Direction, Dad Jokes, Coffee, Beer, Recent Hikes, Notable listener hikes Guest of the Week - Chris Gothberg Stomp's guidance on balancing self rescue with calling for help Recent Search and Rescue on Mount Lafayette Show Notes Apple Podcast link for 5 star reviews SLASR Merchandise SLASR LinkTree Redline Guiding Artist Bluff - Safety concerns raised as peak foliage draws crowds in NH, officials report several rescues Friends clean up litter left behind by tourists Legislative changes? 2 more storms to keep an eye on Notable Moose of the week?  Tips for safe moose encounters A moratorium on blowing up dead horses.  Yosemite hiker crushed by tree Congrats to Elon Breakthrough Listening Project Wind Chill calculator Eastern Snow & Avalanche Workshop Snomo safety courses are back. Northern Extremes Reflecting on the lost Dartmouth student, May 2019. A one week Snowshoe trip hosted by the AMS in February of 1908 An early assessment of fissures and cracks from a 1908 climb to the Old Man site on Cannon Hiker rescued on Mt. Lafayette Sponsors, Friends  and Partners 24th Annual Seek the Peak Fieldstone Kombucha CS Instant Coffee 2024 Longest Day - 48 Peaks Mount Washington Higher Summits Forecast Hiking Buddies  Vaucluse - Sweat less. Explore more. – Vaucluse Gear White Mountains Endurance Coaching

Teachers Talk Radio
Classroom Starters and Puds: Begin Bold, Bring it Home! Thursday Late, Late Show with Chris Wilkinson

Teachers Talk Radio

Play Episode Listen Later Oct 17, 2024 60:17


Join Chris as he shares his strategies for sparking engagement at the beginning of the class and leaving a lasting impression at the end.

PUDs Podcast
SPUDs: Weetamoo, Trolls, & Cabot-Moriah in a Day

PUDs Podcast

Play Episode Listen Later Sep 5, 2024 34:01


Send us some fan mail here!The boys have both been getting out for some hikes and it's time for a recap!Josh recaps a hike of Weetamoo Woods in Tiverton, RI with the kiddos and tries to find some Giant Trolls in Charlestown, RI! Meanwhile, Nick takes a day off and bags Mount Cabot and Mount Moriah up in New Hampshire in the same day to chip away at his Summer 48 Four-Thousand Footers! Watch out for broken bog bridges, try to stay dry, and how hard is it to find a dwarf to make a power sword these days(?) on this short, sweet, and hiking-content-filled S(mall)PUDs entry of the PUDs Podcast!Episode Links:Weetamoo Woods Website & MapHow to See the Trolls in South County, Rhode IslandMount Cabot from York Pond Trail, Bunnell Notch Trail, & Kilkenny Ridge TrailMount Moriah from Stony Brook Trail & Carter-Moriah TrailSpecial Thanks to Our Sponsors:Adventurisitq Clothing - use code "PUDSPOD" for 20% off your first order!Roots Coffee Roasters - use code "puds10" for 10% off your order!Follow us on Instagram: @pudspodcastFollow us on Facebook: PUDs PodcastSubscribe to Nick's YouTube Channel: Nick in NatureFollow Nick on Instagram: @nick__in__natureFollow Josh on Instagram: @jrogers.32Email us at: pudspod@outlook.comRecorded and Produced in Black Cat Studios by Nick Sidla© 2024 PUDs Podcast

Sounds Like A Search And Rescue Podcast
Episode 157 - Nick from the PUDs Podcast, White Mountains History - The Trail Masters, MWRR Recap, Trail Maintenance

Sounds Like A Search And Rescue Podcast

Play Episode Listen Later Jun 21, 2024 139:33


https://slasrpodcast.com/      SLASRPodcast@gmail.com    This week, we are joined by friend Nick Sidla. Nick is co-host of the PUDs Podcast - The "Pointless-Up-and-Downs" Podcast.  A podcast about hiking and everything you talk about while hiking. Nick is going to share some stories about his travels out west and we will discuss trail adoption and maintenance for those of you who are interested in getting into trail volunteering. All this plus a history segment where we dive into a period of White Mountain trail building that focused on how a small group of friends worked to  connect  all the major trail systems of the white mountains. Stomp gives a Mount Washington Road Race Recap,we have a  Father days review that includes Stomp making Mrs. Stomp follow him up the Holt Trail, Recent hikes on Adams/Madison, Welch Dickey, The Watcher and more - earthquakes, Mount Everest, Notable Hikes, and Bad Dad Jokes.   About Nick PUDs Podcast Nick's Instagram   This weeks Higher Summit Forecast   Topics Happy Summer Solstice Painter Canyon Rescue Fathers Day Recap Mount Washington Road Race Recap Race the Cog Seek the Peak  Summit for Cindy Maine Couple in trouble for poisoning trees Sick Hikers in Grand Canyon, Earthquake in Grafton County Mount Everest Video White Bison in Yellowstone Suckerpunch pickle juice Beer Talk and Recent Hikes on Adams/Madison/Welch Dickey/and The Watcher Notable Hikes White Mountain History - Connecting the trails - Paul Jenks, Charles Blood, and Nat Goodrich Guest of the Week - Nick Sidla, Trail Maintenance and PUDs Podcast   Show Notes Apple Podcast link for 5 star reviews SLASR Merchandise SLASR LinkTree Hikers rescued after running out of water at Joshua Tree  Fryeburg Fair Flea Market Fair Grounds Coffee in Fryeburg Race the Cog Summits for Cindy Maine couple busted poisoning their neighbors tree Upwards of 300 hikers sickened at popular Az waterfall Earthquake in Grafton Co. Ryan Mitchell Everest Summit Day video Rare white bison calf born Suckerpunch How to Give Back to the Trails (Rebecca's Blog post) Volunteering in the White Mountains NH Trail Workers Mountain Trail Collective Trailwrights Sponsors, Friends  and Partners 24th Annual Seek the Peak Welcome Back to Fieldstone Kumbucha CS Instant Coffee 2024 Longest Day - 48 Peaks Mount Washington Higher Summits Forecast Hiking Buddies  Vaucluse - Sweat less. Explore more. – Vaucluse Gear White Mountains Endurance Coaching

Energy News Beat Podcast
Deal Spotlight Episode #5: Chord + Enerplus and the Quest for 3-mile Lateral Locations

Energy News Beat Podcast

Play Episode Listen Later Apr 10, 2024 35:52


Bakken consolidation is here! Pumped to be back for this latest Deal Spotlight covering Chord + Enerplus. This deal makes sense in lots of ways: acreage, development timelines etc... One of the things quoted many times by Chord management is the under-development on the Enerplus acreage of 3-mile laterals. If true, this deal has a lot of legs give the acreage position of Enerplus and its place in the development window. At $3.8B - and PDP worth around $1.5B - meaning PUDs are around 50% of the value in this deal. Hopefully, Chord is right with their development expectations!John Ferrell is my guest again, and he has some interesting views as to the performance of Chord's 3-mile wells and offers some interesting data points as to why Chord has been successful with their current 3-mile development.Until the next deal, thanks for tuning in.Helpful Links:We use WellDatabase on the Sandstone Group's deal evaluations, saving us time and money. Check out WellDatabase HERE: https://welldatabase.com/Follow John on his LinkedIn Here: https://www.linkedin.com/in/johnferrellsr/Follow Michael on his LinkedIn Here: https://www.linkedin.com/in/michaeltannersandstone/Check out https://survey.energynewsbeat.com/ and see what is coming around the corner as we expand services and products.Highlights of the Podcast00:10 - Introduction02:40 - Deal's Overview07:12 - Financial and Regulatory Discussion11:13 - Analyzing Acreage Consolidation13:53 - Inventory and Productivity Insights19:07 - Inventory and Productivity Insights22:11 - Acquisition Potential and Product Mix23:35 - Drilling Strategies and Operational Insights29:49 - Market Speculations and M&A Enhancements33:18 - Conclusion35:41 - End

PUDs Podcast
Dealing with Loss

PUDs Podcast

Play Episode Listen Later Mar 15, 2024 86:16


Send the PUDs Podcast a Text Message!We are the podcast of Pointless-Up-and-Downs, and this week we dive into one of the bigger "downs" that Josh and Nick have unfortunately both already experienced in their lives, losing their Dads. An episode with a somber middle and some cheery ends like a nice PUDs-wich; Josh chats about an awkward trip to the dermatologist, Nick scoops some poop out of a bathtub, the boys recall the toughest thing they have ever gone through, and what would you be willing to let a heavily discounted painter do in your house(?), on this unusually deep and humanly episode of the PUDs Podcast!Nick's Music Moment Picks for Episode 31:End of Beginning - Djo - Decide - 2022Guest Room - The National - Boxer - 2007Believe - Elliot -  Song in the Air - 2003Mandolin Rain - Bruce Hornsby & The Range -The Way It Is - 1986Megalomaniac  - Incubus - A Crow Left of the Murder - 2004Josh's Jazzy Music Moment Bonus Pick for Episode 31:Bill WithersFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

Brainstorm
Når sanserne spiller hjernen et puds: Et nyt syn på den autistiske hjerne

Brainstorm

Play Episode Listen Later Feb 8, 2024 28:26


Skarpe lys, biplyde og gule udsalgsskilte. En tur i Bilka er ikke bare en stille og rolig indkøbstur for 20-årige Sophie. Turen kan tværtimod føles som en kæmpe eksplosion af sanseindtryk.   Sådan fortæller Sophie i denne uges episode af Brainstorm. Hun er diagnosticeret med autisme og har svært ved at sortere i de sanseindtryk, hun møder i sin dagligdag. I afsnittet kan du høre Sophie sætte ord på, hvordan det føles, når hendes sanseapparat bliver bombarderet med lyde, dufte, smage, berøringer og synsindtryk.  Men hvorfor sanser mennesker med autisme verden anderledes?  Det giver to forskere et bud på i dagens afsnit.  Her fortæller de også om det nye syn på den autistiske hjerne, der er opstået inden for de seneste få år. Nu om dage tror mange forskere, at sanseforstyrrelser faktisk er en del af årsagen til nogle af de udfordringer, folk med autisme ofte har. Medvirkende Martin Vestergaard Gøtsczhe, psykolog og seniorforsker, psykiatrien i Region Sjælland Sabata Gervasio, lektor, Institut for Medicin og Sundhedsteknologi, Aalborg Universitet Redaktion Anne Sophie Thingsted, Nana Elving Hansen, Astrid Marie Wermus, Caroline Overskov Kilder ‘Kapitel 4: Sensorisk sensitivitet som markør for autisme' i Hjernen og Psyken, 2023, Hjerneforum Følg Brainstorm på Instagram.

Rounding Down with Chid
Behind the Music: Bud and The Puds with Z.W. Martin (@ZWMartin_) and Zach Zuffante (@zzuffante)

Rounding Down with Chid

Play Episode Listen Later Jan 31, 2024 72:26


This week Rounding Down ventures down a musical road and spiritual journey as we chronicle the lives, times, and tunes of Bud and The Puds.Don't miss a very special episode with our guests Zach Martin (@ZWMartin_) and Zach Zuffante (@zzuffante) Plus we get into the Applebee's Vs. Domino's showdown!Follow the fellas on Twitter:https://twitter.com/ZWMartin_https://twitter.com/zzuffanteSupport the showFollow us on Twitter: @CHIDSPIN / @SighFieri / @RoundingDownRate and review us on Apple Podcasts or wherever you listen to podcasts!Tell 25 friends about the show! Actually, don't even tell them about it--just borrow their phones and subscribe them to it!$RoundingDown on the CashApp--we only need $5 million, that's all we ask!

PUDs Podcast
SPUDs: Nick Reviews His Winter 2023-2024 Hikes So Far...

PUDs Podcast

Play Episode Listen Later Jan 29, 2024 72:57


Send the PUDs Podcast a Text Message!Josh dons his interviewer persona as Nick reviews what he's been up to in the White Mountains of New Hampshire since Josh's "Christmas Party"! Take off your pack, brush off the snow, and find someplace cozy, as Josh chats with Nick about his last calendar-Fall hike up to Tom, Field and Willey, kicking off calendar-Winter with a hike of Franconia Ridge, The Kinsmans, Cannon, Owl's Head, and all about "Gourds in the woods" on this icy-not-so-much-of-a-SPUDs-as-it-is-a-full-PUDs episode of the PUDs Podcast!Facebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

PUDs Podcast
Josh's Big Announcement

PUDs Podcast

Play Episode Listen Later Jan 23, 2024 68:14


Send the PUDs Podcast a Text Message!Technical issues be damned! After a botched recording the week previous Josh and Nick are (finally!) back and ready for 2024! The New England Patriots lose their longtime coach, favorite drummers,  greased pigs,  Nick's wifi connection keeps dying while Josh almost dies in the 93 tunnel in Boston, early PUDs-cations, and why Josh is now recording from his basement on this New Year's episode of the PUDs Podcast!!!Nick's Music Moment Picks for Episode 25:Fast to the End - Thursday - No DevolucionPride (In the Name of Love)  - U2 - The Unforgettable FireDigital Sea - Thrice -  The Alchemy Index Vols. 1 & 2, Fire & WaterLoving You - Cannons - Heartbeat HighwayCrawl - Kings of Leon - Only by the NightJosh's Jazzy Music Moment Bonus Pick for Episode 25:Check out Chad Smith on DrumeoFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

Shackbaggerly
Shackbaggerly 27: Christmas puds in America, Christmas tree tales & wedding savings spent on a pub!

Shackbaggerly

Play Episode Listen Later Dec 8, 2023 51:47


On this week's episode, we find out how New Yorker Kim Goldfeder-Clarke got on with making a traditional Christmas pudding! Gardening Guru Reg Moule shares a few stories of what really happens when people go to buy their Christmas tree, and Chef Mark Harris, along with his partner Sarah, is bucking the trend when it comes to running a PubRestaurant, so successful are they, that have recently opened another one. You can keep upto date with behind the scenes of the podcast by logging onto Shackbaggerly's Instagram and Facebook pages, and please do subscribe or follow wherever you listen, it's totally free and does help when I ask guests to chat, as they can see I'm not just talking to herself, on this occasion anyway! Thank you for listening, and see you next time x Podcast guests on this episode are Reg Moule, the Gardening Guru. Kim Goldfeder-Clarke from ‘Ya Mom's in the Kitchen,' and ‘Mr Bentley's World,' and Mark Harris www.pheasantatneenton.co.uk and www.thetallyho.co.uk --- Send in a voice message: https://podcasters.spotify.com/pod/show/katie-johnson73/message

PUDs Podcast
PUDs Spooky Movie Review

PUDs Podcast

Play Episode Listen Later Oct 24, 2023 106:16


Send the PUDs Podcast a Text Message!Halloween is just around the corner and Ash, Josh, and Nick are getting in the spirit by compiling and reviewing their favorite spooky, scary, and haunting movies! Find out what movies we all love to watch during the season of All Hallows' Eve, the ones we could do without, and those that didn't quite make the cut, on this cinematographic episode of the PUDs Podcast!Nick's Music Moment Picks for Episode 17:Nothing Matters - The Last Dinner Party - Nothing Matters SingleHoney (Are U Coming?)  - Maneskin - Honey (Are U Coming?) SingleNever Say Die - Churches - Love Is DeadLosing My Religion - R.E.M. - Out of TimeWhen You Were Young - The Killers - Sam's TownJosh's Jazzy Music Moment Bonus Pick for Episode 17:One Last Breath - Creed - WeatheredFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

PUDs Podcast
Super Scramble and PUDs Fall 2023 Preview

PUDs Podcast

Play Episode Listen Later Sep 19, 2023 50:22


Send the PUDs Podcast a Text Message!Things are getting a little bit nippy out there and Josh and "Scoutmaster Nick" are gearing up for Fall 2023 PUDstyle! Jeremiah tells a joke, birthday parties, hiking fundraisers for lung cancer, pumpkin and beer, scary movies, and how Josh only gets one cupholder and Nick gets two in this brisk episode of the PUDs Podcast!Donate to Nick's Tay's Summit Challenge:https://runsignup.com/scoutmasternick/DonateAchieve Greatness | Andrew Santos:https://www.achievegreatness88.orgNick's Music Moment Picks for Episode 14:Our Last Shot - Circa Survive - Two DreamsNew Order T-Shirt - The National - First Two Pages of FrankensteinRed Rain - Peter Gabriel - SoEmergency Contact - Pierce the Veil - The Jaws of LifeSowing Season (Yeah) - Brand New - The Devil and God are Raging Inside MeFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

PUDs Podcast
Ash and Nick Recall the First Half of the New Hampshire 48 4000 Footers

PUDs Podcast

Play Episode Listen Later Aug 15, 2023 91:42


Send the PUDs Podcast a Text Message!Wait...you're not Josh!!! Ash fills in for Josh this week as "PUDs-stitute" co-host and joins Nick as they recall their journey hiking the first 24 out of the 48 4000 Footers of New Hampshire's White Mountains! A truly "PUDs-tastic" episode, Ash and Nick discuss the literal up-and-downs of learning to hike the White Mountains and how they went from cotton-wearing novices to somewhat-resonably-sensible trekkers, bagging the first half of New Hampshire's finest high-peaks. Why elevation gain is an important stat, why you shouldn't ever take your gloves off with a -20 degree wind chill, and heaps of hiking discussion on this especially outdoorsy episode of the PUDs Podcast!Nick's Music Moment Picks for Episode 11:Bending Hectic - The Smile - Bending Hectic SingleCarissa - Sun Kil Moon - BenjiRuthless - Cannons - Fever DreamSpitting Off the Edge of the World - Yeah Yeah Yeahs - Cool It DownAblaze - School of Seven Bells - SVIIBFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

PUDs Podcast
Summer 2023 PUDs-cation

PUDs Podcast

Play Episode Listen Later Jul 31, 2023 67:53


Send the PUDs Podcast a Text Message!Tune in as Josh and Nick recap their vacations to Waterville Valley, New Hampshire and Warren, Vermont! Why you shouldn't drink pond water (even if it's just "by accident"), Nick almost loses his wedding ring (again), black bears crashing dinner, hiking the 4000 Footers of Vermont, plus a new segment, and more, on this lush and green 10th(!) episode of the PUDs Podcast!Nick's Music Moment Picks for Episode 10:About You - The 1975 - Being Funny in a Foreign LanguageThe Less I Know the Better - Tame Impala - CurrentsBe Sweet - Japanese Breakfast - JubileeYoung Blood - The Naked and Famous - Passive Me, Aggressive YouThe Take Over - Poppy Jean Crawford - The Takeover EPFacebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

Global Investors: Foreign Investing In US Real Estate with Charles Carillo

Welcome to Strategy Saturday; I'm Charles Carillo and today we're going to be discussing What is a PUD in Real Estate. Planned unit developments or PUDs, have become very popular in real estate. In this episode, Charles discusses what a planned unit development is, and how it differs from an HOA. Connect with the Global Investors Show, Charles Carillo and Harborside Partners: ◾ Setup a FREE 30 Minute Strategy Call with Charles: http://ScheduleCharles.com ◾ FREE Passive Investing Guide: http://www.HSPguide.com ◾ Join Our Weekly Email Newsletter: http://www.HSPsignup.com ◾ Passively Invest in Real Estate: http://www.InvestHSP.com ◾ Global Investors Web Page: http://GlobalInvestorsPodcast.com/  

PUDs Podcast
PUDs Podcast: The Origin Story

PUDs Podcast

Play Episode Listen Later May 9, 2023 57:22


Send the PUDs Podcast a Text Message!There was a time before the PUD boys were buds, after Sailor Josh and before Scoutmaster Nick, a time before Josh and Nick even pondered about podcasting. This week Josh and Nick host their first guests, and what better first guests than their better halves! This is the origin story of the PUDs Podcast, the prequel if you will, of the relationships that got this whole crazy podcast started.Facebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

The John Freakin’ Muir Pod
Legit - Dillon "Enigma" Dise

The John Freakin’ Muir Pod

Play Episode Listen Later May 8, 2023 86:14


Triple Crowner Dillon "Enigma" Dise drops in on Doc to talk some trail, both domestic and international. A well traveled thru hiker with 13,000 miles under his feet, Enigma expounds upon the adventure of hiking international trails. In this fun-filled episode, we take a trip on the Pyrenean Haute Route (HRP) a nearly 500-mile-long journey with an insane amount of elevation gain. Along the way, you'll hear about Andora, Tolkien-like vistas, PUDs, chalets, legit food and drink, two Czechs, and several good reasons why not to become a sommelier. --- Support this podcast: https://podcasters.spotify.com/pod/show/johnfreakinmuir/support

Healthy Lifestyle Pro
Puds -Health FAQs With Dr Gates

Healthy Lifestyle Pro

Play Episode Listen Later May 4, 2023 17:45


"...today we're going to talk about pots and why it is becoming more common prevalent rights becoming more prevalent so we are seeing more pots aren't we're seeing more pots and I had noticed that we were seeing more pots we were giving more pots diagnosis pots postural orthostatic tachycardia syndrome we get a zillion people okay exaggeration we so many people that come in here with heart palpitations and I bend over and I get lightheaded and by the time people most people get here with those symptoms they've usually been evaluated for like trans ischemic attacks and and and pretty much give it a clean bill of and we see it a lot because we see we see a lot of thyroid problems that can heart palpitations we see a lot of stress responses that can cause tachycardia like issues like like more than that walks in the door but pots rear its ugly head in here every now and then and it's got a lot more unique to get some more unique features to it that it's diagnosis and dr. Gates is going to talk with you about that because spoiler alert the reason they were seeing it in a number of patients is that it's getting diagnosed more Amy's reason you're seeing it be diagnosed now you're seeing people will have it and so on and so forth it's being diagnosed more and I can totally understand that from the from what's actually causing pots and and and the fact that even though people have been..." Learn more about your ad choices. Visit megaphone.fm/adchoices

Explore Health Talk Weekly
Puds -Health FAQs With Dr Gates

Explore Health Talk Weekly

Play Episode Listen Later Apr 30, 2023 17:45


"...today we're going to talk about pots and why it is becoming more common prevalent rights becoming more prevalent so we are seeing more pots aren't we're seeing more pots and I had noticed that we were seeing more pots we were giving more pots diagnosis pots postural orthostatic tachycardia syndrome we get a zillion people okay exaggeration we so many people that come in here with heart palpitations and I bend over and I get lightheaded and by the time people most people get here with those symptoms they've usually been evaluated for like trans ischemic attacks and and and pretty much give it a clean bill of and we see it a lot because we see we see a lot of thyroid problems that can heart palpitations we see a lot of stress responses that can cause tachycardia like issues like like more than that walks in the door but pots rear its ugly head in here every now and then and it's got a lot more unique to get some more unique features to it that it's diagnosis and dr. Gates is going to talk with you about that because spoiler alert the reason they were seeing it in a number of patients is that it's getting diagnosed more Amy's reason you're seeing it be diagnosed now you're seeing people will have it and so on and so forth it's being diagnosed more and I can totally understand that from the from what's actually causing pots and and and the fact that even though people have been..." Learn more about your ad choices. Visit megaphone.fm/adchoices

Explore Health Talk Weekly
Puds -Health FAQs With Dr Gates

Explore Health Talk Weekly

Play Episode Listen Later Apr 29, 2023 11:12


"...today we're going to talk about pots and why it is becoming more common prevalent rights becoming more prevalent so we are seeing more pots aren't we're seeing more pots and I had noticed that we were seeing more pots we were giving more pots diagnosis pots postural orthostatic tachycardia syndrome we get a zillion people okay exaggeration we so many people that come in here with heart palpitations and I bend over and I get lightheaded and by the time people most people get here with those symptoms they've usually been evaluated for like trans ischemic attacks and and and pretty much give it a clean bill of and we see it a lot ..." Learn more about your ad choices. Visit megaphone.fm/adchoices

PUDs Podcast
PUDs Pilot

PUDs Podcast

Play Episode Listen Later Mar 28, 2023 44:53


Send the PUDs Podcast a Text Message!Welcome to the debut episode of the PUDs (Pointless Up and Downs) Podcast! Join Josh and Nick as they discuss a cornucopia of topics this week including March Madness, Fatherhood, Beer, Hiking, Golf,  "Sexy-Wine-Buzzes", the PUDs of life, and so much more, on this first episode of the PUDs Podcast!Facebook:PUDs PodcastInstagram: @pudspodcastTwitter:@pudspodcastEmail:pudspod@outlook.comRecorded and Produced in Black Cat Studios by the PUD Boys

How to Buy a Home
Ep 136 - First Time Home Buyer Terms And Definitions From A-Z - ”O-P” - Part 1

How to Buy a Home

Play Episode Listen Later Oct 18, 2022 22:52


A continuation of the glossary of terms you need to know when buying a house. The next stop is O and P. Know your PUDs from your PMIs. David Sidoni uses real-life layman's terms and definitions so you don't feel overwhelmed and clueless with all the real estate jargon. Plus a very special SIDE NOTE to help you learn even more about the first-time home buying process. This podcast was started for YOU, to demystify things for first time home buyers, and help crush the confusion. After helping first timers for over 13 years, I knew there wasn't t a lot of clear, tangible, useable information out there on the internet, so I started this podcast. Help me spread the word to other people just like you, dying for answers. Tell your friends, family, and perhaps that random neighbor you REALLY want to move out about How to Buy a Home! A really easy way is to hit the share button and text it to your friends. Go for it, help someone out. And if you're not already a regular listener, subscribe and get constant updates on the market. If you are a regular and learned something, help me help others – give the show a quick review in Apple Podcasts or wherever you get your podcasts, or write a review on Spotify. Let's change the way the real estate industry treats you first time buyers, one buyer at a time, starting with you – and make sure your favorite people don't get screwed by going into this HUGE step blind and confused. Viva la Unicorn Revolution! Instagram @DavidSidoni Tik Tok @howtobuyahome

How to Buy a Home
Ep 136 - First Time Home Buyer Terms And Definitions From A-Z - "O-P" - Part 1

How to Buy a Home

Play Episode Listen Later Oct 18, 2022 22:52


A continuation of the glossary of terms you need to know when buying a house. The next stop is O and P. Know your PUDs from your PMIs. David Sidoni uses real-life layman's terms and definitions so you don't feel overwhelmed and clueless with all the real estate jargon. Plus a very special SIDE NOTE to help you learn even more about the first-time home buying process.This podcast was started for YOU, to demystify things for first time home buyers, and help crush the confusion. After helping first timers for over 13 years, I knew there wasn't t a lot of clear, tangible, useable information out there on the internet, so I started this podcast. Help me spread the word to other people just like you, dying for answers. Tell your friends, family, and perhaps that random neighbor you REALLY want to move out about How to Buy a Home! A really easy way is to hit the share button and text it to your friends. Go for it, help someone out. And if you're not already a regular listener, subscribe and get constant updates on the market. If you are a regular and learned something, help me help others – give the show a quick review in Apple Podcasts or wherever you get your podcasts, or write a review on Spotify. Let's change the way the real estate industry treats you first time buyers, one buyer at a time, starting with you – and make sure your favorite people don't get screwed by going into this HUGE step blind and confused. Viva la Unicorn Revolution! Instagram @DavidSidoniTik Tok @howtobuyahome

Welcome to the Top Podcast
PIDs, PUDs, & MUDs: Dr. Blake Bennett Makes Sense of all the Acronyms

Welcome to the Top Podcast

Play Episode Play 30 sec Highlight Listen Later Sep 26, 2022 35:08


What are PIDs, PUDs, and MUDs? How do you make sure your clients receive proper notice?  Dr. Blake K Bennett, Associate Professor and Extension Economist at Texas A&M, provides these answers and more on the latest episode of Welcome to the Top. 

Gluten is NOT your problem
Steamed Puds & Mexican Goods

Gluten is NOT your problem

Play Episode Listen Later Jul 24, 2022 58:02


Walter brings some Scottish pudding and talks about his recent trip south of the border. Bon Apetit!!! Music: 'John & Friends' by Kevin Hejmanowski https://www.facebook.com/partunes/ glutenisnotyourproblem@gmail.com IG: @glutenisnotyourproblem FB: https://www.facebook.com/groups/210939312308157/

How to be a Beast
PHH ep74 with Raymond Tsai

How to be a Beast

Play Episode Listen Later Jan 12, 2022 32:34


POWER HALF HOUR with John Tsai & Raymond Tsai. Excited to interview good friend & agent Raymond Tsai from California.   Raymond has been in the Real Estate industry since 2007. with 10 years of experience focusing in the cities in Southern California, he mastered the markets of residential properties including Single-family Homes, PUDs, Condos and Townhouses.    Over the years, Raymond acquires professionals to his team to ensure his mission statement is well met: complete satisfaction. He believes that the key to achieving high customer satisfaction is to be thoughtful and truthful at all times.   In 2014, he founded team rt where he formed a group of professionals including buyer specialist, staging designer, marketing specialist, transaction coordinator, property manager and short term rental management to further assist his client's needs on selling, buying and investing in real estate.   Can't wait to learn how he runs a growing successful team!!   Connect with Raymond: https://instagram.com/raymond_tsai_real_estate?utm_medium=copy_link   ---------- Don't forget to SUBSCRIBE to my channel :) ---------- What is the POWER HALF HOUR?  The Power Half Hour is a concise 30 minute interview with a top performer/influencer; usually in real estate. The guest speaker will share with us what motivates them, how they achieved high level success and their top business tips. You can join in on these live Wednesday Power Half Hour interviews via Zoom or Facebook Live.  Connect with John Tsai for those links.  ---------- STAY CONNECTED with John Tsai, eXp Realty Instagram https://www.instagram.com/tsairealestate YouTube https://www.youtube.com/johntsaiprec  ---------- CHECK OUT my new book that launched on Amazon.com and .ca on July 12, 2021. Search: How To Be A Beast by John Tsai.  

Cork's 96fm Opinion Line
2021-11-26 Bus To The Toy Show, Boozy Xmas Puds, Vote For Adam King & More...

Cork's 96fm Opinion Line

Play Episode Listen Later Nov 26, 2021 108:50


We hear from Cork kids on a bus to the Toy Show, why boozy Xmas puds are the best Xmas puds, ask our listeners to help Adam King win an award, get breaking news about the B.1.1.529 variant. And more... See acast.com/privacy for privacy and opt-out information.

Cork's 96fm Opinion Line
PODCAST EXTRA - Boozy Xmas Puds And Toy Show Treats

Cork's 96fm Opinion Line

Play Episode Listen Later Nov 26, 2021 7:05


PJ hears tips on quick snacks for the Toy Show tonight and also the best way to make a boozy Xmas pudding from Chef Jack O'Keefe. See acast.com/privacy for privacy and opt-out information.

Harrow Baptist Church
Of Carrots, Goo Puds and Lions

Harrow Baptist Church

Play Episode Listen Later Nov 24, 2021 28:38


Lin Artus reflects on the story of Daniel. Cover Pic by Prince David on Unsplash

Solidarity Unlimited with Bowe and the Horse

Joe and James discuss the all time classic film They Live and John Carpenter's film philosophy

Wilson County News
Floresville — Divided city council vote gives Planned Unit Developments a fighting chance

Wilson County News

Play Episode Listen Later Sep 28, 2021 3:12


[Video below] The Floresville City Council has given hope to developers wishing to establish Planned Unit Developments (PUDs) within the Floresville city limits. Council members approved, in a 3-2 vote Sept. 23, to amend the city's code of ordinances related to PUDs. Councilmen Gloria Cantu and Jade Jimenez voted against the measure. A motion had been made by Cantu to deny the PUD ordinance; however, it got voted down. Floresville boards and committees have been discussing the topic of PUDs for months — with city entities strongly opposing them. The Floresville Economic Development Corp. (FEDC) and the Floresville Planning &...Article Link

Dangerous World Podcast
Ep. 156 - DWP X The Big Dumb SwapCast

Dangerous World Podcast

Play Episode Listen Later Sep 27, 2021 105:33


Thank you for for listening to another episode of DWP! The Big Dumb X Dangerous World Kyle and Puds are great dudes in Texas! Check out their podcast and show em some love! Whether it's at their merch store, leaving a review on Apple or following them on IG @TheBigDumb_Podcast All their awesome work can be found on their link tree in their IG Bio!! Enjoy the full episode along with many others for only $3 a month at patreon.com/dangerousworldpodcast EMAIL: DangerousWorldPodcast@gmail.com IG: DangerousWorldPod Male Grooming

Dangerous World Podcast
Ep. 156 - DWP X The Big Dumb SwapCast

Dangerous World Podcast

Play Episode Listen Later Sep 27, 2021 105:33


Thank you for for listening to another episode of DWP! The Big Dumb X Dangerous World Kyle and Puds are great dudes in Texas! Check out their podcast and show em some love! Whether it's at their merch store, leaving a review on Apple or following them on IG @TheBigDumb_Podcast All their awesome work can be found on their link tree in their IG Bio!! Enjoy the full episode along with many others for only $3 a month at patreon.com/dangerousworldpodcast EMAIL: DangerousWorldPodcast@gmail.com IG: DangerousWorldPod Male Grooming

Wilson County News
Planning & Zoning nixes Lodi Grove PUD proposal

Wilson County News

Play Episode Listen Later Sep 21, 2021 1:44


Residents of Floresville desire new and affordable homes; however, city officials are not willing to sacrifice their standards to acquire these homes. The Floresville Planning & Zoning Committee unanimously turned down an ordinance relating to regulations of planned unit developments (PUDs) at a Sept. 15 special meeting. Immediately following the vote, the committee also unanimously turned down the proposed Lodi Grove Planned Unit Development, Chairman Philip Vipond told the Wilson County News. The committee had previously tabled the matter, due to the absence of City Attorney Sylvia Rodriguez at their Sept. 8 meeting. Lance Elling, a civil engineer and consultant...Article Link

Sound Bites
Sound Bites 33: Puds

Sound Bites

Play Episode Listen Later Aug 4, 2021 13:04


Thanks for listening to Sound Bites: the bite sized podcast about all things snacks! In this episode, Peter and Chille have two chocolate confections to eat and discuss… but become very, very distracted by the ‘New Products' section of https://www.candyindustry.com/. Enjoy two silly, preoccupied pals chatting about treats. This episodes snacks are: Swizzels Drumstick Chocolate Bar + Kit Kat Key Lime Pie Email us! soundbitessnackpod@gmail.com Tweet us! https://twitter.com/soundbitespod Chille's Twitter https://twitter.com/MGR_Chille / https://twitter.com/MoogleGoRound / https://twitter.com/PS_Unchained Chille's Twitch https://www.twitch.tv/mooglegoroundradio Peter's Twitter https://twitter.com/Flattuss / https://twitter.com/Maelstrom_radio Peter's Twitch https://www.twitch.tv/maelstromradio

Wilson County News
Floresville: We want growth — the right way

Wilson County News

Play Episode Listen Later Aug 3, 2021 3:30


[Video below] A proposal to facilitate new housing developments in Floresville received a cool reception at a July 28 workshop. Members of the Floresville City Council and the Floresville Planning & Zoning Commission conducted the joint workshop to learn about and discuss planned unit developments (PUDs). Floresville City Manager Andy Joslin began discussion of such developments by noting that he had earlier “met with two firms that require something we don't have in our zoning code.” Joslin said that PUDs would create a “flexible approach to development.” He asked city council members to consider an ordinance to authorize PUDs. Invited...Article Link

Solidarity Unlimited with Bowe and the Horse

The dudes are back talking about billionaire idiots playing with their money in "outer" space while their employees suffer.

space puds
Chi Sports Weekly
Episode 19: Puds

Chi Sports Weekly

Play Episode Listen Later Jul 27, 2021 56:42


Episode 19 of the Chi Sports Weekly podcast:- South Bend bachelor parties- Kyle's men's league baseball- Different types of men's league baseball players- Is Aaron Rodgers coming back for 2021?- Davante Adams or Allen Robinson?- Is the Tom Brady video fake?- Favorite Cubs/Sox deadline trades of all time- Reminiscing about KB and Rizzo- Cleveland Guardians- Renaming different Chicago sports franchisesAll this and more on episode 19 of the Chi Sports Weekly podcast. 

Mundelein Minute
S2 | E7 - Recapping the Mundelein Village Board Meeting on May 24, 2021

Mundelein Minute

Play Episode Listen Later May 27, 2021 28:53


In this week's episode we recap the Village Board Meeting held on May 24, 2021. During this meeting, Trustee Russell chaired the meeting in Mayor Lentz's absence. We'll recap the full agenda covering Pride Month in the Village of Mundelein, PUDs, banking changes, and all the Village business.

Slet ikke LIVE!
Puds fodboldstøvlerne, for græsset grønnes

Slet ikke LIVE!

Play Episode Listen Later Mar 26, 2021 36:40


Vores gæst i denne uge er Jesper Green Jacobsen, som besøger os ved bålet i gårdhaven. Vi skal snakke om fodboldopstart i Herskind Boldklub, for nu gør corona-restriktionerne det igen muligt at Ronaldo eller Harder på klubplan. Der er flere gode tilbud til alle , der har lyst til at være en del af et socialt fællesskab i klubben. Sporten Kort er også på programmet i denne uge, og så kan du vinde en skodpræmie ved at sende en besked til Madam Skrald. Det er ikke så mystisk, som det lyder.Om et par uger begynder et rygestopkursus i Herskind Forsamlingshus. Det er Skanderborg Kommune, der står bag, og det er gratis at være med. Her kan du læse mere og tilmelde dig: https://skanderborg.nemtilmeld.dk/1361/.I næste uge holder vi påskeferie, men derefter er vi tilbage til sædvanlig tid.Værter: Jesper Rabes Laursen og Jakob Houg Jakobsen.Du kan kontakte os ved at sende en mail til podcast@herskindsigt.dk, eller du kan lægge en besked på vores telefonsvarer, som har nummer 6466 1649. Vi har også en hjemmeside, herskindsigt.dk, ligesom du kan følge os på Instagram og Facebook.

Over the Rainbow - Achieving Mental Health for Real

Join Vivian XYZ Tan and i as we discuss ADHD, Bubble Tea and Anxiety and Depression that i believe is a manifestation of Attention Deficit Hyperactivity Disorder - Specifically inattentive. I believe many people suffer quietly and anonymously with this surprising self-esteem stealer. Also, since you are not able to pay attention as well as the next, modern society finds this unacceptable. Well to coin a phrase from the TEDx video below. Most people suffer from Pro-uniformity Disorder. Or PUD. ADHD, I believe is a distant cousin of autism. But as the video explains people with ADHD have a higher rate of suicide then most and their families I am sticking to a notion that there is still a stigma and misunderstanding of ADHD and other mental health diseases and if you care be patient with us.. Watch video at https://m.youtube.com/watch?v=fWCocjh5aK0 Video 2 is great also https://www.youtube.com/watch?v=JiwZQNYlGQI https://www.facebook.com/search/top?q=vivian%20xyz%20tan I know most people can not understand this. I am sorry for these people. But i am me and successfull as well. This podcast covers many mental illnesses. But how many anxiety and depression comes from ADHD. I think it is a key to getting over it. I figured this out to late . I am 62 and introverted because of my constant rejection. "I trade my Joy for my Protection". NF has ADHD i am almost sure. My personal only support system is from my friend Joan. Everyone else wants me to be something or anything else. But, i am done with that. I also have dyslexia so i can not read well. I also have OCD. NF says to show people that are as sick as he. I am. Anxiety and Depression follows when you try to adapt to a world you dont belong in. But let the PUDs know, we are here to stay. My children love me , but if you do please listen to this, but is it enough to read or listen to these stories. I am sorry about that. I dedicate this podcast to my friend Joan who has similiar problems. I can not act like a normal pud anymore. I am BOB and i hope you listen to my podcasts in the future. The Closed Door Of Trust - Royalty-Free Music by https://audiohub.com License: CC BY (https://creativecommons.org/licenses/by/4.0/)

The Power Giant Podcast
Just Another Day

The Power Giant Podcast

Play Episode Listen Later Feb 15, 2021 51:42


This week we discuss Valentine's Day or Just Another Day? That's the big question. As well as what can you do to make yourself happy and do what you love, not just on Valentine's, but every day. We also talk about the absolutely everyday occurrence that is our fundraising running challenge. 28 miles over 28 days. We're running a mile a day for the whole of February, all in aid of the MS Society UK. Special Mentions for; Emily Claydon, PU, Puds n Guds, MS Society UK & Kim Aldred Until next time...

Wednesday Night Drinking Practice
WNDP Holiday 2020 "Christmas Puds"

Wednesday Night Drinking Practice

Play Episode Listen Later Dec 23, 2020 207:59


It's the time of the year to bring our guest together! In the past we have invited the years guest for a huge party/podcast but obviously we can't do that this year. So we called on some of our regular friends to join us. What a treat! Besides Cletus, Chevy and K.B.Jamz, we had Jason Beers, Scott Easterday, Lee Walter Redding, Gavin Mac, Jeff Berges, krysztof nemeth and Steve Gardels. We have a show filled with original music from Scott, Jason and Lee. Thanks everyone for the continued support. I hope you enjoy this long yet hilarious episode. Make sure to check out our sponsors and our Patreon. All the info is below. Keep practicing. #morelovelesshugs http://majestickc.com/ http://www.jaykco.com/ https://www.patreon.com/wndp https://www.facebook.com/foundsound.kc/ https://jasonbeers.bandcamp.com/ https://leewalterredding.bandcamp.com/album/maintenance-sex-white-doves  

Woofin Pawsome Podcast - The podcast for those who love dogs!
Episode 7 - Pet Service Advice with Benn of Pud Puds Pet Services

Woofin Pawsome Podcast - The podcast for those who love dogs!

Play Episode Listen Later Jun 10, 2020 43:44


Hey everyone, in this episode we have the amazing Benn of Pud Puds Pet Services joining us to tell us not only to share some insight into him and his business, but share some top tips that I think are perfect for any dog owner looking to take on a Pet Professional (dog walker, home visits, doggy day care etc) for their pooch! So if you are wanting to ensure you are looking for the right things in your potential new professional.... this is the episode for you! You can find Benn via the following links: https://pudpudspetservices.co.uk https://www.facebook.com/PudPudsPetServices/

Scott Mills Daily
MoreTiny Beans and Yorkshire Puds

Scott Mills Daily

Play Episode Listen Later Mar 5, 2020 36:05


Chris steps ups the stakes by requesting more of your pet names, but this time for your ex! Plus a classic round of The Whooo Game and products mistaken for hand sanitiser.

Let's Bake History
Ep. 45: Let's Bake...Steamy Puds

Let's Bake History

Play Episode Listen Later Feb 6, 2020 29:06


Valentine's Day is coming up soon, and to celebrate we have a steamy, sensuous episode for you to enjoy with your loved ones. We've got Clootie, we've got Roly Poly - and if you ever wanted to hear us talk about our love for Spotted Dick this is your chance! Join us for an episode that is sure to warm your heart...and your stomach.  Let's Bake History is a pseudo-educational comedy podcast exploring the origin stories of all your favorite baked goods. Each week co-hosts Emma and Jules dig into new breads, cakes, cookies, pies, pastries and more – to bring you the details on their nefarious histories and modern incarnations.

valentines day bake steamy roly poly spotted dick puds clootie
Puds And Co.
You Asked: "How Do I Get More Podcast Listeners?" (mini-episode)

Puds And Co.

Play Episode Listen Later Jan 13, 2020 7:39


Welcome to the Puds & Co. Podcast! In this episode, Liz starts a new segment called 'You Asked' where she takes one question from her DMs that's far too common or long to respond in a text in a mini-episode. This week it's a FAQ of "how do I get more podcast listeners?" Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Puds And Co.
Episode 013: Honest Pros & Cons Of Working From Home Full Time

Puds And Co.

Play Episode Listen Later Dec 11, 2019 14:59


Welcome to the Puds & Co. Podcast! In this episode, Liz went solo and spoke about her personal experience on working from home full time for two years. Are you exploring flexible working? Let us know! Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Puds And Co.
Episode 012: The Best Tried & Tested Scheduling Tools And Their Features

Puds And Co.

Play Episode Listen Later Nov 24, 2019 16:57


Welcome to the Puds & Co. Podcast! In this episode, Liz went solo and spoke about all the scheduling tools she's tried over the years, her faves and their best features. Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Founders of Reka
Founders of Reka - Just a Little Family Time - Visiting Home Arc #16

Founders of Reka

Play Episode Listen Later Sep 27, 2019 59:17


The party has been in Reka for a little while now, and Puds has summoned the group to encourage them to visit home, specifically Paprika's home town of Tumbleville. She has a big family back home, and it is about time she visits them, and she is so excited to see them, but things are highly emotional, and not everyone handles it too well.Campaign summary: The founders of Reka is a 5e D&D homebrewed campaign features a small village named Reka that the party, consisting of Silus, the Dragonborn fighter, Peony, the Dragonborn rogue, Nexoria, the Tiefling monk, and Paprika, the Halflng artificer. These four characters have ventured off into the unknown and are facing strange magical forces and adjusting to their new lives, and the DM's crazed madness, who is Somebody to Remember. The world is fresh to explore, and it is up to them to help this small town thrive among the chaos of this cruel world.If you would like to support the channel, you can do so by joining the discord link below. The discord is a friendly and accepting environment for people to enjoy company and talk D&D, but to also help the world of Reka through the various contests we put on! I hope you enjoy! https://discord.gg/rySUjJw

Founders of Reka
Founders of Reka - Oh Deer... Visiting Home Arc #15

Founders of Reka

Play Episode Listen Later Sep 20, 2019 69:47


The party has been in Reka for a little while now, and Puds has summoned the group to encourage them to visit home, specifically Paprika's home town of Tumbleville. She has a big family back home, and it is about time she visits them, but along the way, the party has a few interesting moments in the forest, and see many new creatures.Campaign summary: The founders of Reka is a 5e D&D homebrewed campaign features a small village named Reka that the party, consisting of Silus, the Dragonborn fighter, Peony, the Dragonborn rogue, Nexoria, the Tiefling monk, and Paprika, the Halflng artificer. These four characters have ventured off into the unknown and are facing strange magical forces and adjusting to their new lives, and the DM's crazed madness, who is Somebody to Remember. The world is fresh to explore, and it is up to them to help this small town thrive among the chaos of this cruel world.If you would like to support the channel, you can do so by joining the discord link below. The discord is a friendly and accepting environment for people to enjoy company and talk D&D, but to also help the world of Reka through the various contests we put on! I hope you enjoy! https://discord.gg/rySUjJw

Puds And Co.
Episode 011: Personal Branding & Crisis Management In A Digital World

Puds And Co.

Play Episode Listen Later Sep 18, 2019 32:53


Welcome to the Puds & Co. Podcast! In this episode, we had Ronke Lawal join Liz to speak about Public Relations, dealing with crisis' on social media, and who should build a personal brand and how. Stay connected with Ronke: www.instagram.com/Ronke.Lawal/ www.twitter.com/RonkeLawal/ http://www.ariatupublicrelations.com/ http://www.ronkelawal.com/ Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Puds And Co.
Episode 010: We're Back! Common Social Media Q's Answered

Puds And Co.

Play Episode Listen Later Aug 28, 2019 20:43


Welcome to the Puds & Co. Podcast! It has been a hot minute right? In this episode, Liz went solo and answered some common social media questions. Apologies for any crappy sound, new set up! WE HAVE A NEW WEBSITE: www.pudsandco.com Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Brand Growth Heroes
Ep 07: Interview with James Averdieck, CEO Founder of The Coconut Collaborative and GU Chocolate Puds

Brand Growth Heroes

Play Episode Listen Later Jul 17, 2019 23:39


Listen and rate this episode on iTunes I’m delighted to be launching this week’s interview with James Averdieck, CEO and Founder of both The Coconut Collaborative https://coconutco.co.uk and of GÜ Chocolate Puds https://www.gupuds.com/ In Episode...

Puds And Co.
Episode 009: Why Freelance Journos / Writers Need Socials

Puds And Co.

Play Episode Listen Later Mar 10, 2019 21:49


Welcome to the Puds & Co. Podcast! In this episode, we had Lateefah and Mireille and we spoke all things freelance writer, why journos need Twitter, and groups you need to be a part of. Stay connected with Lateefah: https://twitter.com/LATEEFAHJB https://www.instagram.com/lateefahjb__/ Stay connected with Mireille: https://www.instagram.com/mireillecassandraharper/ https://www.instagram.com/cassandraxcamille/ https://www.cassandracamille.co.uk/ Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

Puds And Co.
Episode 008: How To Release An Album Independently Through Social Media

Puds And Co.

Play Episode Listen Later Feb 17, 2019 46:58


Welcome to the Puds & Co. Podcast! In this episode, we had ICIE, and we spoke about how he released his album Moment Of Clarity organically through social media and his offline strategies. If you're an independent artist, we hope you have your notepad ready. Album Link: smarturl.it/mocthealbum Instagram: instagram.com/iciemusic instagram.com/thesitdownuk The Sitdown Podcast: https://itunes.apple.com/gb/podcast/the-sitdown-uk/id1438114611?mt=2 Expect a new episode every 2 Sundays joined by a guest each time. Stay connected with us: www.twitter.com/pudsco www.instagram.com/pudsco www.facebook.com/pudsco

BBC Good Food Show Summer /  BBC Gardeners’ World Live - Birmingham NEC 13 - 16 June 2019

Alison from Chelsmford, Essex talks about her Lilly Pud products at BBC GFS Winter 2018

founders essex good food haymarket puds cre8media bbc good food show good food show interviews
BBC Good Food Show Summer /  BBC Gardeners’ World Live - Birmingham NEC 13 - 16 June 2019

Affectionately known as the Yummy Brummie (coined by Olive Magazine), Glynn Purnell owns and runs Purnell’s in Birmingham. Winning dozens of awards for his inspired and adventurous cooking, Glynn has remained firmly rooted in his home city and won the Birmingham’s first Michelin star in January 2005 as Head Chef at Jessica’s. Glynn’s first food memory involved baked beans on toast and curry powder! Left in charge of his little brother and sister, he would experiment on them with new combinations and challenged their taste buds. He continues to do this with dishes like poached egg yolk, smoked haddock milk foam and cornflakes on the menu at Purnell’s, cooking which earned him top accolades on BBC’s Great British Menu. Glynn takes old fashioned flavours and brings them up to date with dishes like Royal of Goats Cheese and Pineapple on sticks. The proud owner of three establishments in Birmingham: Purnell’s restaurant opened in 2007 and was awarded a Michelin star in 2009, Ginger’s Bar and Purnell’s Bistro. He started work in kitchens at the age of 14 and spent the following two years at the Metropole Hotel, going every day after school. They took him on as an apprentice and six years later he won the prestigious Salon Culinaire award. Glynn moved to Simpson’s which won a Michelin star while he was a Sous Chef and where he also won other personal awards such as the Academie de Culinaire Francaise Annual Award of Excellence in 1996. He went on to work with Claude Bosi at the 2 Michelin-starred Hibiscus in Ludlow before helping to launch Jessica’s back in Birmingham in 2003. Glynn has taken part in BBC’s The Great British Menu, winning twice and then appearing as a mentor. He has previously featured onThe Great British Food Revival, Pies and Puds with Paul Hollywood and with Mary Berry and Michel Roux Jnr and Tom Kerridge on Food and Drink. Glynn is a regular guest chef on Saturday Kitchen with James Martin and recently appeared on BBC 2’s Extra Slice. Glynn’s book Cracking Yolks and Pig Tales was published by Kyle Books in May 2014. He has leant his knowledge to iconic British department store Harvey Nichols as consultant in 2015 for the launch of their new restaurant concept in Birmingham.

BBC Good Food Show Summer /  BBC Gardeners’ World Live - Birmingham NEC 13 - 16 June 2019

Affectionately known as the Yummy Brummie (coined by Olive Magazine), Glynn Purnell owns and runs Purnell’s in Birmingham. Winning dozens of awards for his inspired and adventurous cooking, Glynn has remained firmly rooted in his home city and won the Birmingham’s first Michelin star in January 2005 as Head Chef at Jessica’s. Glynn’s first food memory involved baked beans on toast and curry powder! Left in charge of his little brother and sister, he would experiment on them with new combinations and challenged their taste buds. He continues to do this with dishes like poached egg yolk, smoked haddock milk foam and cornflakes on the menu at Purnell’s, cooking which earned him top accolades on BBC’s Great British Menu. Glynn takes old fashioned flavours and brings them up to date with dishes like Royal of Goats Cheese and Pineapple on sticks. The proud owner of three establishments in Birmingham: Purnell’s restaurant opened in 2007 and was awarded a Michelin star in 2009, Ginger’s Bar and Purnell’s Bistro. He started work in kitchens at the age of 14 and spent the following two years at the Metropole Hotel, going every day after school. They took him on as an apprentice and six years later he won the prestigious Salon Culinaire award. Glynn moved to Simpson’s which won a Michelin star while he was a Sous Chef and where he also won other personal awards such as the Academie de Culinaire Francaise Annual Award of Excellence in 1996. He went on to work with Claude Bosi at the 2 Michelin-starred Hibiscus in Ludlow before helping to launch Jessica’s back in Birmingham in 2003. Glynn has taken part in BBC’s The Great British Menu, winning twice and then appearing as a mentor. He has previously featured onThe Great British Food Revival, Pies and Puds with Paul Hollywood and with Mary Berry and Michel Roux Jnr and Tom Kerridge on Food and Drink. Glynn is a regular guest chef on Saturday Kitchen with James Martin and recently appeared on BBC 2’s Extra Slice. Glynn’s book Cracking Yolks and Pig Tales was published by Kyle Books in May 2014. He has leant his knowledge to iconic British department store Harvey Nichols as consultant in 2015 for the launch of their new restaurant concept in Birmingham.

Preheated Baking Podcast
Ep 64: Nothing Says I Love You Like a Savory Pork Pie

Preheated Baking Podcast

Play Episode Listen Later Feb 19, 2018 41:40


Andrea is reporting back from the Cascadia Grains Conference and is excited about being part of the movement to revitalize the grain economy in the Pacific NW, and bake Whole Grain Digestive Biscuits. Our hosts review the Pork, Apple and Cider Pie from Paul Hollywood's Pies and Puds cookbook. Andrea and Stefin had equal success, and both hosts agree that a side of mashed potatoes are absolutely essential for the delicious gravy that comes naturally with this pie. Up next is Alton Brown's Shoo-Fly Pie, another pie from the popular 'desperation pie' or 'pantry pie' category. Be sure to read the instructions carefully on this one (or make it easy on yourself and use February's sponsor Pie Provisions Pie Crust mix!) To wrap up this week's episode of Pie School, the hosts share their essential pie tools, including a pastry wheel, a tapered rolling pin, and, finally, a PieBox! You can read the Show Notes here. Bake along with Stefin and Andrea in their baking Facebook group, Preheated. You can find links to recipes on their baking website www.preheatedpodcast.com, as well as on their Pinterest page. You can also follow the hosts on Twitter and Instagram, using handle preheatedpod. Join the fun!

Community Broadband Bits
Lessons From the Nation's Oldest Open Access Fiber Network – Community Broadband Bits Podcast 279

Community Broadband Bits

Play Episode Listen Later Nov 15, 2017


Grant County's Public Utility District was, along with some nearby PUDs, among the very first deployers of Fiber-to-the-Home networks shortly after the turn of the millennium. And per Washington's law, they built an open access network that today has more than twenty service providers.Grant County PUD Project Specialist Russ Brethrower joins us for Community Broadband … Continue reading "Lessons From the Nation's Oldest Open Access Fiber Network – Community Broadband Bits Podcast 279"

Proper Sport Daily
#WWE's Chad Gable on teaming with Shelton Benjamin, #NXT move & Yorkshire puds

Proper Sport Daily

Play Episode Listen Later Sep 22, 2017 9:50


#WWE's European Tour comes to Leeds on Wednesday 8th of November and ahead of the show taking over the First Direct Arena SmackDown Live superstar Chad Gable spoke to Radio Yorkshire's Tom Maguire. A big change for Gable has seen him now team up with returning Shelton Benjamin, after 7 years away from the company The Gold Standard is back so we find out how it's been for him teaming up with the veteran. No more American Alpha music and you won't hear "Ain't No Stopping Me Now!", what does Chad make of their new entrance music? Plus having been on the SmackDown Live roster for just over a year now, how was the move from #NXT? We find out with Chad Gable!

5 live Science Podcast
Jamie Oliver's Yorkshire puds

5 live Science Podcast

Play Episode Listen Later Mar 3, 2011 38:57


Jamie Oliver asks our very own Naked Scientist, Dr Chris why his yorkshire puddings are better than those made by his wife. Other matters up for discussion include diamonds, the four minute mile and mushroom clouds.