POPULARITY
William Ospina es la mente detrás de Matar Fuma, un proyecto musical de música alternativa, con toques de rock y pop, que cuenta con tres trabajos en plataformas, siendo el más reciente "No Fue Fácil", lanzado a finales de febrero de 2025 y que quizá, es el complemento a su antecesor, el álbum ´No Es Tan Simple´ del 2023.Justo sobre el sonido de Matar Fuma, sus inicios en la música pasando de la música clásica al rock, así como el lado experimental y el lado de cantautor de su propuesta, su lado B, sus años radicados en New York, la participación en el FEP en el 2024, sobre el sonido de "No Fue Fácil" y otros temas, charlamos con William hace algunos días en Bogotá.No Fue Fácil, como álbum, será presentado en vivo este martes 22 de abril el Cumbia House, con apertura del cantautor Farid Abauat, con entradas que puedes encontrar en Ticketmaster.co
Este programa es patrocinado por Budweiser. En este episodio, un repaso por los 10 mejores espectáculos que tuvieron lugar en Estéreo Picnic 2025. En el conteo hay pop, rock alternativo, electrónica, metal, punk, jazz, disco, funk y perreíto gracias al Templo del Perreo de Budweiser en el FEP.
En este episodio hablamos con Diana Cruz, directora creativa de Páramo Lab, sobre cómo pueden y deben las marcas preparar sus estrategias para potenciar sus patrocinios y activaciones en espacios ocmo el Festival Eséreo Picnic.
Today's show is a replay of an earlier episode with the amazing lauren Ornelas, founder of Food Empowerment Project. Food Empowerment Project is a vegan food justice nonprofit that promotes veganism, works to bring attention to the rights of farm workers, highlights the lack of access to healthy foods in Black and Brown communities, and raise awareness about the worst forms of slavery, including child labor, in the chocolate industry. Lauren has been deeply involved in animal rights activism since 1987 and was the director of VivaUSA before founding Food Empowerment Project.Lauren and Hope talk about the connections between food, veganism, and human rights with issues like child and slave labor chocolate production, food deserts and access to produce and healthy food, and Food Empowerment Project's Fight for the Oceans campaign highlighting the struggles of the ocean and her sea creatures. Lauren will be speaking at Compassionate Living's upcoming Eugene VeganFest on May 4, 2025. Resources:Food Empowerment ProjectLauren's TEDx Talk: The Power of our Food ChoicesAbout child labor and slavery in chocolate production and the FEP's recommended chocolate listEugene VeganFest, 5/4/25
Hong Minhee is an open source developer and the creator of the Fedify ActivityPub server framework. We talk about how applications like Mastodon and Misskey communicate with one another using ActivityPub. This includes discussions on built-in activites, extending the specification in a backwards compatible way, difficulties implementing JSON-LD, the inbox model, and his experience implementing the specification. Hong Minhee: activitypub profile fedify hollo Specifications: ActivityPub W3C specification JSON Linked Data Resource Description Framework W3C Semantic Web Standards ActivityPub and WebFinger ActivityPub and HTTP Signatures ActivityPub implementations: Mastodon Misskey Akkoma Pleroma Pixelfed Lemmy Loops GoToSocial ActivityPub support in Ghost Threads has entered the Fediverse ActivityPub tools: ActivityPub Academy BrowserPub fedify CLI -- Transcript You can help correct transcripts on GitHub. What's ActivityPub? [00:00:00] Jeremy: Today, I'm talking to Hong Minhee. He is the developer of Fedify. A TypeScript library for building ActivityPub server applications. The first thing I think we should start with is defining ActivityPub. what is ActivityPub? [00:00:16] Hong: ActivityPub is the protocol that lets social networks talk to each other and it's officially recommended by W3C. It's what powers this thing we call the Fediverse which is basically a way for different social media platforms to work together. Users of ActivityPub [00:00:39] Jeremy: Can you give some examples that people might have heard of -- either users of ActivityPub or things that are a part of this fediverse? [00:00:50] Hong: Mastodon is probably the biggest one out there. And you know what's interesting? Meta threads has actually started implementing ActivityPub this summer. So this still pretty much a one way street right now. In East Asia, especially Japan, there's this really popular microblogging platform called misskey. It's got so many forks that people actually joke around and called them forkeys. but it's not just about Twitter style microblogging, there's Pixelfed which is kind of like Instagram, but for the fediverse. And those same folks recently launched loops. Which is basically doing what TikTok does, but in the Fediverse. Then you've got stuff like Lemmy and which are doing the reddit thing up in the Fediverse. [00:02:00] Jeremy: Oh like Reddit. [00:02:01] Hong: Yeah. There are so much more out there that I haven't even mentioned. Um, most of it is open source, which is pretty cool. [00:02:13] Jeremy: So the first few examples you gave, Mastodon and Meta's threads, they're very similar to, to Twitter, right? So that's what you were calling the, the Microblogging applications. And I think what you had said, which is a little bit interesting is you had said Metas threads is only one way. So could you kind of describe like what you mean by that? [00:02:37] Hong: Currently meta threads only can be followed by other ActivityPub applications but you cannot follow other people in the fediverse. [00:02:55] Jeremy: People who are using another Microblogging platform like Mastodon can follow someone on Meta's Threads platform. But the other way is not true. If you're on threads, you can't follow someone on Mastodon. [00:03:07] Hong: Yes, that's right. [00:03:09] Jeremy: And that's not a limitation of the protocol itself. That's a design decision or a decision made by Meta. [00:03:17] Hong: Yeah. They are slowly implementing ActivityPub and I hope they will implement complete ActivityPub in the future. Interoperability through Activities [00:03:27] Jeremy: And then the other examples you gave, one is I believe it was Pixel Fed is very similar to Instagram. And then the last examples you gave was I think it was Lemmy, you said it's similar to Reddit. Because you mentioned the term Fediverse before and you mentioned that these all use ActivityPub and since these seem like different kinds of applications, what does it mean for them to interact? Because with Mastodon and Threads I can kind of understand because they're both similar to Twitter. So you're posting messages and replying, but, but what does it mean, for example, for someone on Mastodon to interact with someone on Lemmy which is like Reddit because they seem very different. [00:04:16] Hong: People in Lemmy and Mastodon are called actors and can follow each other. They have interactions between them called activities. And there are several types of activities like, create and follow and undo, like, and so on. So, ActivityPub applications tend to, use these vocabulary to implement their features. So, for example, Lemmy uses like activities for upvoting and like activities for down voting and it's translated to likes in Mastodon. So if you submit a post on Lemmy and it shows up on your Mastodon timeline. If you like that post (it) is upvoting in Lemmy. [00:05:36] Jeremy: And probably similarly with Pixelfed, which you said is like Instagram, if you follow someone's Pixelfed account in Mastodon and they post a photo in Pixel Fed, they would see it as a post in Mastodon natively and they could give it a like there. Adding activities or properties [00:05:56] Jeremy: And these activities that you mentioned -- So the like and the dislike are those part of ActivityPub itself? [00:06:05] Hong: Yes, and this vocabulary can be extended. [00:06:10] Jeremy: So you can add, additional actions (activities) or are you adding information (properties) to the existing actions? [00:06:37] Hong: It is called activity vocabulary, and there are, things like accept, add, arrive, block, create lead, dislike, flag, follow, ignore invite, join, and so on. So, basically, almost everything you need to build social media is already there in the vocabulary, but if you want to extend some more, you can define your, own vocabulary. [00:06:56] Jeremy: Most of the things that an Instagram or a Twitter, or a Reddit would need is already there. But you're saying that you can have your own vocabulary. So if there's an action or an activity that is not covered by the specification, you can create one yourself. [00:07:13] Hong: Yes. For example, Misskey and Pleroma defined emoji reactor to represent emoji reactions. [00:07:25] Jeremy: Because the systems can extend the vocabulary. What are some other examples of cases where mastodon or any other of these systems has found that the existing vocabulary is not enough. What are some other examples of applications extending it? [00:07:45] Hong: For example, uh, mastodon defined suspended -- suspended property. They are not activities, but they are properties in the activity. ActivityPub consists of several types of objects and there are activities and normal objects like, article. they can have properties and there are several existing properties, but they can be also extended. So Mastodon extended some properties they need. So for example, they define suspended or discoverable. [00:08:44] Hong: Suspended for to tell if an actor is suspended by moderators. Discoverable tells if an actor itself wants to be, searched and indexed, and there are much more properties. Mastodon extended. Actors [00:09:12] Jeremy: And these are, these are properties of the actor. These are properties of the user? [00:09:19] Hong: Yes. Actors. [00:09:21] Jeremy: Cause I think earlier you mentioned that. The concept of a user is an actor, and it sounds like what you're saying is an actor can have all these properties. There's probably a, a username and things like that, but Mastodon has extended the properties so that, you can have a property on whether you wanna be searched or indexed you can have a property that says you're suspended. So I guess your account, is still there, but can't be used anymore. Something we should probably talk about then is, so you have these actors, you have these activities that I'm assuming the actors are performing on one another. What does that data look like and what does the communication look like? [00:10:09] Hong: Actors have their own dereferencable URI and when you look up that URI you get all the info about the actor in JSON-LD format [00:10:22] Jeremy: JSON-LD? [00:10:23] Hong: Yeah. JSON-LD. linked data. (The) Actor has all the stuff you expect to find on a social account name, bio URL to the profile page, profile picture, head image and more. And there are five main types of actors: application, group, organization, person and service. And you know how sometimes on Mastodon you will see an account marked as a bot? [00:10:58] Jeremy: A bot? [00:10:59] Hong: Yeah. Bot and that's what an actor of type service looks like. And the ActivityPub spec actually let you create other types beyond these five. But I haven't seen anyone actually do that yet. JSON-LD [00:11:15] Jeremy: And you mentioned that these are all JSON objects. but the LD part, the linked data part, I'm not familiar with. So what different about the linked data part of the JSON? [00:11:31] Hong: So JSON-LD is the special way of writing RDF. Which was originally used in the semantic web. Usually RDF uses (a) format (that) is called triples. [00:11:48] Jeremy: Triples? [00:11:49] Hong: Yeah, subject and predicate and object. [00:11:55] Jeremy: Subject, predicate, object. Can you give an example of what those three would be? [00:12:00] Hong: For example, is a person, it's a triple. John is a subject and is a predicate [00:12:11] Jeremy: is, is the predicate. [00:12:12] Hong: Okay. And person is a object. That's great for showing how things are connected, but it is pretty different from how we usually handle data in REST for APIs and stuff. Like normally we say a personal object has property like name, DOB, bio, and so on. And a bunch of subject predicated object triples that's where JSON-LD comes in -- is designed to look more like the JSON we are used to working with, while still being able to represent RDF Graphs. RDF graph are ontology. It's a way to represent factual data, but is, quite different from, how we represent data in relational database. And it's a bunch of triples each subject and objects are nodes and predicates connect these nodes. Semantic Web [00:13:30] Jeremy: You mentioned the Semantic web, what does that mean? What is the semantic web? [00:13:35] Hong: It's a way to represent web in the structural way, is machine readable so that you can, scan the data in the web, using scrapers or crawlers. [00:13:52] Jeremy: Scrapers -- or what was the second one? Crawling. [00:13:59] Hong: Yeah. Then you can have graph data of web and you can, query information about things from the data. [00:14:14] Jeremy: So is the web as it exists now, is that the Semantic web or is it something different? [00:14:24] Hong: I think it is partially semantic web, you have several metadata in Your HTML. For example, there are several specification for semantic web, like, OpenGraph metadata. [00:14:32] Jeremy: Cause when I think about OpenGraph, I think about the metadata on a webpage that, that tells other applications or websites that if you link to this page: show this image or show this title and description. You're saying that specifically you consider part of the semantic web? [00:15:05] Hong: That's, semantic web. To make your website semantic web. Your website should be able to, provide structural data. And other people can make Scrapers to scan, structural data from your website. There are a bunch of attributes and text for HTML to represent metadata. For example you have relation attribute rel so if you have a link with rel=me to your another social profile. Then other people can tell two web pages represent the same person. [00:16:10] Jeremy: Oh, I see. So you could have more than one website. Maybe one is your blog and maybe one is your favorite birds or something like that. But you could put a rel tag with information about you as a person so that someone who scrapes both websites could look at that tag and see that both of these websites are by, Hong, by this person. JSON-LD is difficult to implement and not used as intended [00:16:43] Hong: Yeah. I think JSON-LD is, designed for semantic web, but in reality, ActivityPub implementations, most of them are, not aware of semantic web. [00:17:01] Jeremy: The choice of JSON Linked Data, the JSON-LD, by the people who made the specification -- They had this idea that things that implemented ActivityPub would be a part of this semantic web, but the actual implementation of a Mastodon or a Pixelfed, they use JSON-LD because it's part of the specification, but the way they use it, it ends up not really being a part of this semantic web. [00:17:34] Hong: Yeah, that's exactly.. [00:17:37] Jeremy: You've mentioned that implementing it is difficult. What makes implementing JSON LD particularly hard? [00:17:48] Hong: The JSON-LD is quite complex. Which is why a lot of programming language don't even have JSON-LD implementations and it's pretty slow compared to just working with the regular JSON. So, what happens is a lot of ActivityPub implementations just treat JSON-LD like (it) is regular JSON without using a proper JSON-LD processor. You can do that, but it creates a source of headache. In JSON-LD there are weird equivalences like if a property is missing or if it's an empty array, that means the same thing. Or if a property has one value versus an array with just that one value in it, same thing. So when you are writing code to parse JSON-LD, you've got to keep checking if something's an array how long it is and all that is super easy to mess up. It's not just reading JSON-LD that's tricky. Creating it is just as bad. Like you might forget to include the right context metadata for a vocabulary and end up with a JSON-LD document that's either invalid or means something totally different from what you wanted. Even the big ActivityPub implementations mess this up pretty often. With Fedify we've got a JSON-LD processor built in and we keep running into issues where major ActivityPub implementations create invalidate JSON-LD. We've had to create workaround for all of them, but it's not pretty and causes kind of a mess. [00:19:52] Jeremy: Even though there is a specification for JSON-LD, it sounds like the implementers don't necessarily follow it. So you are kind of parsing JSON-LD, but not really. You're parsing something that. Looks like JSON-LD, but isn't quite it. [00:20:12] Hong: Yes, that's right. [00:20:14] Jeremy: And is that true in the, the biggest implementations, Mastodon, for example, are there things that it sends in its activities that aren't valid JSON-LD? [00:20:26] Hong: Those implementations that had bad JSON-LD tends to fix them soon as a possible. But regressions are so often made. Yeah. [00:20:45] Jeremy: Even within Mastodon, which is probably one of the largest implementers of ActivityPub, there are cases where it's not valid, JSON-LD and somebody fixes it. But then later on there are other messages or other activities that were valid, but aren't valid anymore. And so it's this, it's this back and forth of fixing them and causing new issues it sounds ... [00:21:15] Hong: Yeah. Yeah. Right. [00:21:17] Jeremy: Yeah. That sounds very difficult to deal with. How instances communicate (Inbox) [00:21:20] Jeremy: We've been talking about the messages themselves are this special format of JSON that's very particular. but how do these instances communicate with one another? [00:21:32] Hong: Most of time, it all starts with a follow. Like when John follows Alice, then Alice adds both John and John's inbox URI to her followers list, and after John follows Alice, Whenever Alice posts something new that activities get sent to John's inbox behind the scenes. This is just one HTTP post request. Even though ActivityPub is built on HTTP. It doesn't really care about the HTTP response beyond did it work or not. If you want to reply to an activity, you need to figure out the standard inbox, URI and send or reply activity there. [00:22:27] Jeremy: If we define all the terms, there's the actor, which is the person, each actor can send different activities. those activities are in the form of a JSON linked data. [00:22:40] Hong: Yeah. [00:22:42] Jeremy: And everybody has an inbox. And an inbox is an HTTP URL that people post to. [00:22:50] Hong: Right. [00:22:52] Jeremy: And so when you think about that, you had mentioned that if you have a list of followers, let's say you have a hundred followers, would that mean that you have the URLs to all hundred of those follower's inboxes and that you would send one HTTP post to each inbox every time you had a new message? [00:23:16] Hong: Pretty much all ActivityPub implementations have, a thing called shared inbox, it's exactly what it sounds like. One inbox that all actors on a server share. Private stuff like DMs don't go there (it) is just for public posts and thoughts. [00:23:36] Jeremy: I think we haven't really talked about the fact that, when you have multiple users, usually they're on a server, right? That somebody chooses. So you could have tens of thousands, I don't know how many people can fit on the same server. But, rather than, you having to post to each user individually, you can post to the shared inbox on this server. So let's say, of your 100 followers, 50 them are on the same server, and you have a new post, you only need to post to the shared inbox once. [00:24:16] Hong: Yes, that's right. [00:24:18] Jeremy: And in that message you would I assume have links to each of the profiles or actors that you wanted to send that message to. [00:24:30] Hong: Yeah. Scaling challenges [00:24:31] Jeremy: Something that I've seen in the past is there are people who have challenges with scaling. Their Mastodon instance or their implementations of ActivityPub. As the, the number of followers grow, I've seen a post about, ghost one of the companies you work with mentioning that they've had challenges there. What are the challenges there and, and how do you think those can be resolved? [00:25:04] Hong: To put this in context, when Ghost mentioned the scaling, they were not using Message Queue yet. I'm pretty sure using Message Queue would help a lot of their scaling problems. That said it is definitely true that a lot of activity post software has trouble with scaling right now. I think part of the problem is that everyone's using this purely event driven approach to sending activities around. One of the big issues is that when their delivery fails it's the sender who has to retry and not the receiver. Plus there's all this overhead because the sender has to authenticate itself with HTTP signatures every time. Actually the ActivityPub spec suggests using polling too so I'd love to see more ActivityPub software try using both approaches together. [00:26:16] Jeremy: You mean the followers would poll who they're following instead of the person posting the messages having to send their posts to everyone's inboxes. [00:26:29] Hong: Yeah. [00:26:29] Jeremy: I see. So that's a part of the ActivityPubs specification, but not implemented in a lot of ActivityPub implementations, And so it sounds like maybe that puts a lot of burden on the servers that have people with a lot of followers because they have to post to every single, follower server and maybe the server is slow or they can't reach it. And like you said, they have to just keep trying and trying. There could be a lot of challenges there. [00:27:09] Hong: Right. Account migration [00:27:10] Jeremy: We've talked a little bit about the fact that each person each actor is hosted by a server and those servers can host multiple actors. But if you want to move to another server either because your server is shutting down or you just would like to change servers, what are some of the challenges there? [00:27:38] Hong: ActivityPub and Fediverse already have the specification for an account move. It's called FEP-7628 Move Actor. First thing you need to do when moving an account is prove that both the old and new accounts belong to the same person. You do this by adding the all accounts, add the URI to the new account's AlsoKnownAs property. And then the old account contacts all the other instances it's moving by sending out a move activity. When a server gets this move activity, it checks that both accounts really do belong to the same parts, and then it makes all the accounts that, uh, were following the, all the accounts start to, following the new one instead. that's how the new account gets to keep all the, all the accounts follow us. pretty much all, all the major activity post software has this feature built in, for example, Mastodon Misskey you name it. [00:29:04] Jeremy: This is very similar to the post where when you execute a move, the server that originally hosted that actor, they need to somehow tell every single other server that was following that account that you've moved. And so if there's any issues with communicating with one of those servers, or you miss one, then it just won't recognize that you've moved. You have to make sure that you talk to every single server. [00:29:36] Hong: That's right. [00:29:38] Jeremy: I could see how that could be a difficult problem sometimes if you have a lot of followers. [00:29:45] Hong: Yeah. Fedify [00:29:46] Jeremy: You've created a TypeScript library Fedify for building ActivityPub powered applications. What was the reason you decided to create Fedify? [00:29:58] Hong: Fedify is (a) ActivityPub servers framework I built for TypeScript. It basically takes away a lot of headaches you'd get trying to implement (an) ActivityPub server from scratch. The whole thing started because I wanted to build hollo -- A single user microblogging platform I built. But when I tried, to implement ActivityPub from (the) ground up it was kind of a nightmare. Imagine trying to write a CGI program in Perl or C back in the late nineties, where you are manually printing, HTTP headers and HTML as bias. there just wasn't any good abstraction layer to go with. There were already some libraries and frameworks for ActivityPub out there but none of them really hit the sweet spot I was looking for. They were either too high level and rigid. Like you could only build a mastodon clone or they barely did anything at all. Or they were written in languages I didn't really know. Ghost and Fedify [00:31:24] Jeremy: I saw that you are doing some work with, ghost. How is Ghost using fedify? [00:31:30] Hong: Ghost is an open source publishing platform. They have put some money into fedify which is why I get to work on it full time now. Their ActivityPub feature is still in private beta but it should be available to everyone pretty soon. We work together to improve fedify. Basically they are a user of fedify. They report bugs request new features to fedify then I fix them or implement them, first. [00:32:16] Jeremy: Ghost to my understanding is a blogging platform and a a newsletter platform. So what does it mean for them to implement ActivityPub? What would somebody using Mastodon, for example, get when they follow somebody using Ghost? [00:32:38] Hong: Ghost will have a fediverse handle for each blog. If you follow them in your mastodon or something (similar) then a new post is published. These post will show up (in) your timeline in Mastodon and you can like them or share them. Andin the dashboard of Ghost you can see who liked their posts or shared their posts and so on. It is like how mastodon works but in Ghost. [00:33:26] Jeremy: I see. So if you are writing a ghost blog and somebody follows your blog from Mastodon, sort of like we were talking about earlier, they can like your post, and on the blog itself you could show, oh, I have 200 likes. And those aren't necessarily people who were on your ghost website, they could be people that were liking your post from Mastodon. [00:33:58] Hong: Yes. Misskey / Forkey development in Asia [00:34:00] Jeremy: Something you mentioned at the beginning was there is a community of developers in Asia making forks of I believe of Mastodon, right? [00:34:13] Hong: Yeah. [00:34:14] Jeremy: Do you have experience working in that development community? What's different about it compared to the more Western centric community? [00:34:24] Hong: They are very similar in most ways. The key difference is language of course. They communicate in Japanese primarily. They also accept pull requests with English. But there are tons of comments in Japanese in their code. So you need to translate them into English or your first language to understand what code does. So I think that makes a barrier for Western developers. In fact, many Western developers that contribute to misskey or forkey are able to speak a little Japanese. And many of the developers of misskey and forkey are kind of otaku. [00:35:31] Jeremy: Oh otaku okay. [00:35:33] Hong: It's not a big deal, but you can see (the) difference in a glance. [00:35:41] Jeremy: Yeah. You mentioned one of the things that I believe misskey implemented was the emoji reactions and maybe one of the reasons they wanted that was so that they could react to each other's posts with you know anime pictures or things like that. [00:35:58] Hong: Yeah, that's right. [00:36:01] Jeremy: You've mentioned misskey and forkey. So is misskey a fork of Mastodon and then is forkey a fork of misskey? [00:36:10] Hong: No, misskey is not a fork of mastodon. (It) is built from scratch. It's its own implementation. And forkeys are forks of Mastodon. [00:36:22] Jeremy: Oh, I see. But both of those are primarily built by Japanese developers. [00:36:30] Hong: Yes. Whereas Mastodon (is) written in Ruby. Ruby on Rails. But misskey is built in TypeScript. [00:36:40] Jeremy: And because of ActivityPub -- they all implement it. So you can communicate with people between mastodon and misskey because they all understand the same activities. [00:36:56] Hong: Yes. Backwards compatible activity implementations [00:36:57] Jeremy: You did mention since there are extensions like misskey has the emoji reactions. When there is an activity that an implementation doesn't support what happens between the two servers? Do you send it to a server's inbox and then the server just doesn't do anything with it? [00:37:16] Hong: Some implementers consider backwards compatibility. So they design (it) to work with other implementations that don't support that activity. For example misskey uses like activity for emoji reaction. So if you put an emoji to a Mastodon post then in Mastodon you get one like. So it's intended behavior by misskey developers that they fall back to normal likes. But sometimes ActivityPub implementers introduce entirely new activity types. For example Pleroma introduced the emoji react. And if you put emoji reaction to Mastodon post from Pleroma in Mastodon you have nothing to see because Mastodon just ignores them. [00:38:37] Jeremy: If I understand correctly, both misskey and Pleroma are independent implementations of ActivityPub, but with misskey, they can tell when or their message is backwards compatible where it's if you don't understand the emoji reaction, it'll be embedded inside of a like message. Whereas with Pleroma they send an activity that Mastodon can't understand at all. So it just doesn't do anything. [00:39:11] Hong: Yes, right. But, Misskey also understands (the) emoji react activity. So between pleroma and misskey they have exchanged emoji reactions with no problem. [00:39:27] Jeremy: Oh, I see. So they, they both understand that activity. They both implement it the same way, but then when misskey communicates with Mastodon or with an instance that it knows doesn't understand it, it sends something different. [00:39:45] Hong: Yeah, that's right. [00:39:47] Jeremy: The servers -- can they query one another to know which activities they support? [00:39:53] Hong: Usually ActivityPub implementations also implement NodeInfo specification. It's like a user agent-like thing in Fediverse. Implementations tell the other instance (if it) is Mastodon or something else. You can query the type of server. [00:40:20] Jeremy: Okay, so within ActivityPub are each of the servers -- is the term node is that the word they use for each server? [00:40:31] Hong: Yes. Right. [00:40:32] Jeremy: You have the nodes, which can have any number of actors and the servers send activities to one another, to each other's inboxes. And so those are the way they all communicate. [00:40:49] Hong: Yeah. Building an ActivityPub implementation [00:40:50] Jeremy: You've implemented ActivityPub with Fedify because you found like there weren't good enough implementations or resources already. Did you implement it based off of the specification or did you look at existing implementations while you were building your implementation? [00:41:12] Hong: To be honest, instead of just, diving into the spec. I usually start by looking at actually ActivityPub software code first. The ActivityPub spec is so vague that you can't really build something just from reading it. So when we talk about ActivityPub, we are actually talking about a whole bunch of other technical standards too, WebFinger, HTTP signatures and more. So you need to understand all of these as well. [00:41:47] Jeremy: With the specification alone, you were saying it's too vague and so what ends up being -- I'm not sure if it's right to call it a spec, but looking at the implementations that people have already made that collectively becomes the spec because trying to follow the spec just by itself is maybe too difficult. [00:42:12] Hong: Yes. [00:42:14] Jeremy: Maybe that brings up the issues you were talking about before where you have specifications like JSON-LD where they're so complicated that even the biggest implementations aren't quite following it exactly. [00:42:28] Hong: Yeah. [00:42:29] Jeremy: If somebody wanted to, to get started with understanding a little bit more about ActivityPub or building something with it where would you recommend they start? [00:42:44] Hong: I recommend to dig into a lot of code from actual implementations. First, Mastodon, Misskey, Akkoma and so on. There are are some really cool tools that have been so helpful. For example, ActivityPub Academy is this awesome mastodon server for debugging ActivityPub. It makes it super easy to create a temporary account and see what activities are going back and forth. There is also BrowserPub. BrowserPub is this neat tool for looking up and browsing ActivityPub objects. It's really handy when you want to see how different ActivityPub software handles various features. I also recommend to use Fedify. I've got to mention the Fedify CLI, which comes with some really useful tools. [00:43:46] Jeremy: So if someone uses Fedify they're writing an application in TypeScript, then it sounds like they have to know the high level concepts. They have to know what are the different activities, what is inside of an actor. But the actual implementation of how do I create and parse JSON linked data, those kinds of things are taken care of by the library. [00:44:13] Hong: Yes, right. [00:44:16] Jeremy: So in some ways it seems like it might be good to, like you were saying, use the tools you mentioned to create a test Mastodon account, look at the messages being sent back and forth, and then when you're trying to implement it, starting with something like Fedify might be good because then you can really just focus on the concepts and not worry so much about the, the implementation details. [00:44:43] Hong: Yes, that's right. [00:44:45] Jeremy: Is there anything else you. Wanted to mention or thought we should have talked about? [00:44:52] Hong: Mm. I want to, talk about, a lot of stuff about ActivityPub but it's difficult to speak in English for me, so, it's a shame to talk about it very little. [00:45:15] Jeremy: We need everybody to learn Korean right? [00:45:23] Hong: Yes, please. (laughs) [00:45:23] Jeremy: Yeah. Well, I wanna thank you for taking the time. I know it must have been really challenging to give an interview in, you know, a language that's not your native one. So thank you for spending the time to talk with me. [00:45:38] Hong: Thank you for having me.
El major de Premier Padel en Acapulco es el primer tema del programa en el que también hablamos de las nuevas parejas. La parte central se dedica a analizar la decisión del TAD sobre las elecciones a la FEP. Hablamos con Juan Manuel Cervera que nos cuenta cómo es la nueva M3. Debate con Nacho García, Adrián Illescas e Iván Hernández que nos trae la actualidad.
El major de Premier Padel en Acapulco es el primer tema del programa en el que también hablamos de las nuevas parejas. La parte central se dedica a analizar la decisión del TAD sobre las elecciones a la FEP. Hablamos con Juan Manuel Cervera que nos cuenta cómo es la nueva M3. Debate con Nacho García, Adrián Illescas e Iván Hernández que nos trae la actualidad.
El major de Premier Padel en Acapulco es el primer tema del programa en el que también hablamos de las nuevas parejas. La parte central se dedica a analizar la decisión del TAD sobre las elecciones a la FEP. Hablamos con Juan Manuel Cervera que nos cuenta cómo es la nueva M3. Debate con Nacho García, Adrián Illescas e Iván Hernández que nos trae la actualidad.
Andrew Strom, a labor lawyer and contributor to the OnLabor Blog, joined the America's Work Force Union Podcast to discuss the potential impacts the presidential election results could have on the National Labor Relation Board (NLRB). He also discussed holes in the National Labor Relation Act that have been exploited by corporations. Merrilee Logue, Executive Director of the National Labor Office at Blue Cross and Blue Shield Association, and Daniel Yoder, Senior Vice President of the Federal Employee Program (FEP) at Blue Cross and Blue Shield Association, joined the America's Work Force Union Podcast to discuss the open enrollment period for federal employees and how the FEP helps members simplify navigating their healthcare options.
On Today's Episode – Mark starts us out with a quick intro of today's guest. We then answer a listener's question – this guy is talking to his neighbor and was asking BFT about how to better communicate to this neighbor. We talk about how the media is so left wing, the numbers are not even close. We look back and reconsider election fraud in 2020, and how cases of votes were brought in at 3 in the morning. We hop over to Stefan's article and move into talking all things DEI. Tune in for all the fun https://nationalcenter.org/ @stefanpadfield FEP Director Stefan Padfield says, "There hasn't been a more significant ‘brand' for centralizing power in the managerial elite since the New York Times praised Joseph Stalin's five-year plans.” See here what Padfield is referring to: https://dcjournal.com/woke-inc-and-esg/ Stefan Padfield is the Director of the National Center's Free Enterprise Project (FEP), which is the original and premier opponent of the woke takeover of American corporate life. FEP files shareholder resolutions, engages corporate CEOs and board members, submits public comments, engages state and federal leaders, crafts legislation, files lawsuits and directs media campaigns to push corporations to respect their fiduciary obligations and to stay out of political and social engineering. Prior to joining FEP, Stefan spent over 15 years teaching law at the University of Akron School of Law, publishing over 15 law review articles and a book chapter. He co-authored a two-volume mini-treatise on the history of economic thought and contributed to the Business Law Prof Blog. Stefan previously worked in private practice at Cravath, Swaine & Moore, LLP, and clerked for two federal court judges. Stefan originally emigrated to the U.S. as a child, later becoming a U.S. citizen and serving 6 years in the U.S. Army. Stefan earned his Juris Doctorate from the University of Kansas and a Bachelor of Arts degree from Brown University.
MASTERMIND MINUTES - ONE GUEST, ONE QUESTION, ONE EXPERT ANSWER IN MINUTES NOT HOURS... Today's guest is Michael Esposito the Co-Managing Partner, Franchise Equity Partners. Prior to co-founding FEP, Mike spent 28 years at Goldman Sachs in Investment Banking and was a Partner for 20 years. He ran the Global Financial Institutions Group in the Investment Banking Division (“IBD”). He also served as the Co-Chairman of the Firm-wide Commitments Committee which underwrites all equity transactions; Co-Chair of the IBD's Client and Business Standards Committee; a member of the Partnership Committee and a member of IBD's Executive Committee. Mike is a member of the Board of Trustees at the Hospital For Special Surgery, New York Presbyterian Hospital, Woods Hole Oceanographic Institution, and the Inner-City Scholarship Fund in New York City. Mike is a graduate of Brown University and Harvard Business School. Contact Mike at: https://www.fep-us.com/ Contact Gary Info@frangrow.com Visit: www.frangrow.com --- Support this podcast: https://podcasters.spotify.com/pod/show/gary5396/support
In this very brief episode, Dr. Shaw introduces us to a new concept that she is developing as a program to assist families. In schools, many students will be given an IEP or Individual Education Plan which is a document that identifies a given student's needs and outlines how those needs will be met. Dr. Shaw believes that given the stresses and strains of life right now, many FAMILIES need a similar structure in order to have the best practices of family life come into play. To that end, Dr. Shaw is beginning to offer her services in developing FEP's or Family Education Plans. She briefly describes her new project on this podcast with more details to follow. You can always learn more online about Dr. Shaw's history and her work and you can also contact her, all via her website at www.LearnWithMeRemotely.com.
durée : 00:03:39 - Marie-Pierre Adrillon membre de la FEP CFDT
9:25 – 9:37 (12mins) Charles Groeteke-Jefferson County Council- Jefferson County Port In HerculaneumJames Hardie cement siding company in FestusSquatter bill the council supported and was sponsored by Rep Amato in state House 9:41 – 9:56 (15mins) National Center for Public Policy Research Guests: Ethan Peck INVESTORS CALL OUT TARGET AND DICK'S SPORTING GOODS FOR GOING WOKE AT SHAREHOLDERS' EXPENSE fiduciary Fidouche Bags Caterpillar Will Also Be Asked To Stop OverboardingWashington, D.C. – Shareholder activists with the National Center for Public Policy Research's Free Enterprise Project (FEP) will present proposals at three shareholder meetings on Wednesday — Dick's Sporting Goods, Target and Caterpillar. They will criticize Dick's and Target for their costly prioritization of progressive politics over profit, and will challenge Caterpillar on the issue of overboarding.FEP will present Item 5 at the Dick's Sporting Goods meeting, seeking greater board accountability for corporate acts taken to advance the political or ideological views of management.See omnystudio.com/listener for privacy information.
9:05 – 9:22 (15mins) Bonchie @bonchieredstate @Redstate RedState.com 9:25 – 9:37 (12mins) Weekly: “THE BEE OR NOT THE BEE!!” Paul Curtman to Play The Bee or Not The Bee @paulcurtman 9:41 – 9:56 (15mins) Stefan Padfield- National Center for Public Policy Research Guests.TOP BRANDS CONFRONTED OVER CONTROVERSIAL STANCES AND POSSIBLE DISCRIMINATIONWashington, D.C. – Shareholder activists with the National Center for Public Policy Research's Free Enterprise Project (FEP) will present proposals at four shareholder meetings this week — Warner Bros. Discovery, Walmart, Netflix and Alphabet.At Warner Bros. Discovery, Walmart and Netflix, FEP will request that their boards of directors create corporate sustainability committees to oversee and review the impact of their company policy positions and advocacy on matters relating to their financial sustainability.See omnystudio.com/listener for privacy information.
GUEST 1 OVERVIEW: Salvatore “Sal” Greco is a Former 14 year New York Police Department (NYPD) veteran, and a Sicilian-American. Being a strict fitness enthusiast, food connoisseur, and cigar aficionado Sal is no stranger to the Good and Evil in our lives. His origin story began with food industry work and a love for how it brought everyone together. GUEST 2 OVERVIEW: Stefan Padfield is the Deputy Director at the National Center's Free Enterprise Project (FEP), which is the original and premier opponent of the woke takeover of American corporate life. FEP files shareholder resolutions, engages corporate CEOs and board members, submits public comments, engages state and federal leaders, crafts legislation, files lawsuits and directs media campaigns to push corporations to respect their fiduciary obligations and to stay out of political and social engineering. GUEST 3 OVERVIEW: Tim Bodnar - AKA "TruthSlinger" on X - is a podcaster, author, preacher, counselor and philosopher. He has undergrad degrees in Physics/Math and has experience as a combustion scientist, farmer, and preacher. He has been podcasting for a year and a half - on X for 6 months. Tim self-describes himself as "unabashedly and intelligently" Christian. Using his podcast as a ministry and pulpit, he is a fully engaged preacher specifically focused on world politics and not ashamed to talk about the issues. You can find him on X at @TruthSlingerX
Send us a Text Message.Hey Pickles!We hope this finds you well.This week's show is jam packed! Our Noteworthy segment answers the question, "Why aren't people happy about Tattooed Chef returning to stores?".In our Main Topic, we decide who is & who is not a vegan ass hat as we explore some posts on Vegan Redditt. Let us know if you agree with our assessments!We're featuring a new restaurant in our Restaurant SOS segment. We'll tell you about Burger Patch, a vegan burger joint in Sacramento, CA! Please support them if you're in the area!Our Vegan Org of the Week is Food Empowerment Project. You may have heard us talk about FEP in the past, but they are restructuring their organization, and we wanted to let you know about their work!You can find our more about FEP here: https://foodispower.orgWe also have a new Listener Shout Out! Is it you? Don't forget, if you would like a shout out, or want to contact us for any reason, use the link above that says " Send us a text message"!Thanks so much for spending time with us!Love, Sam & ChristineSupport the Show.Join Our Patreon https://www.patreon.com/CompassionandcucumbersSign Up For Our Newsletterhttps://www.compassionandcucumbers.comOur YouTube https://www.youtube.com/@compassioncucumbersveganpod/videos72 Reasons To Be Vegan *paid link https://amzn.to/3W8ZwsUVisit Our Website https://www.compassionandcucumbers.comSam's Etsy https://www.etsy.com/shop/CucumberCraftworksJoin the AFA Vegan Voter Hub https://agriculturefairnessalliance.org/vegan-voter-hub/
GUEST 1 OVERVIEW: The GrassRoots TruthCast, created by former Escambia County Florida Commissioner Gene Valentino, is a weekly broadcast from Pensacola, Florida. Gene, an investment entrepreneur and avid pilot, is a founding member of VeriJet charter aviation and serves on the company's Board of Directors. When he's not in studio, Gene can usually be found in the skies over the Gulf of Mexico piloting his ICON A5. Twitter/X: @GeneValentino GUEST 2 OVERVIEW: Kate Monroe is a retired United States Marine, wife, mother, veteran activist, multi-business owner, startup specialist, published author, decorated sales trainer for multiple industries, and just announced her run for Congress. Kate's ventures stem from her passion for creating a positive impact for the disenfranchised. She is the founder of VetComm. GUEST 3 OVERVIEW: Stefan Padfield serves as the Deputy Director at the National Center's Free Enterprise Project (FEP). FEP is known as the original and premier opponent of the woke takeover of American corporate life. The organization takes various actions including filing shareholder resolutions, engaging with corporate CEOs and board members, submitting public comments, engaging with state and federal leaders, crafting legislation, filing lawsuits, and directing media campaigns. These efforts are aimed at urging corporations to respect their fiduciary obligations and to refrain from engaging in political and social engineering.
9:05 – 9:22 (15mins) Bob Onder, Candidate, MO 3rd Congressional District, U.S. Congress @BobOnderMO BobOnderMO.comMARCH FOR LIFE EVENT / DECLINE TO SIGNPROTESTS ON COLLEGE CAMPUSESIMMIGRATION / SOUTHERN BORDERI TOLD HIM WE WOULD ADD OUR OWN AS WELL. Charley said that the March starts at 9:15A, so Bob will be on the air with us live when the march starts! I asked if he could lead us in The Pledge and he agreed. 9:25 – 9:37 (12mins) Weekly: “THE BEE OR NOT THE BEE!!” with guest: Paul Curtman @paulcurtman prcurtman.com 9:41 – 9:56 (15mins) NCPPR Weekly Guest: Stefan Padfield @StefanPadfield- NationalCenter.org @NationalCenter @Project21News @FreeEntProjectLEVI STRAUSS, PFIZER, GOLDMAN SACHS AND CIGNA FACE CHALLENGES FROM CONSERVATIVE SHAREHOLDERSProposals Target Donations To Radical Causes, Net Zero Plans And DEI ProgramsFEP has provided voting recommendations for these and other key shareholder meetings on its Proxy Navigator app.FEP's proposals with Levi Strauss (Proposal #4) and Pfizer (Proposal #8) tackle corporate support of partisan and divisive organizations and charities. Both companies have a history of partnering with radical organizations such as the Human Rights Campaign (HRC), which seeks to indoctrinate elementary school children with radical gender ideology and instruction on sexual orientation by pushing highly sexualized books and lesson plans in school.See omnystudio.com/listener for privacy information.
Sí, sobrevivimos al Estereo Picnic aunque no parecía... Y seguimos descifrando lo que sucedió en un Mundo Distinto, pero les trajimos historias, anuncios, francachela y comilona de lo pasó y pasará. Lo pegamos?
Bienvenidos a un episodio lleno de anécdotas e historias inéditas sobre la industria musical. Conversamos con Julio Correal, empresario y promotor de conciertos, festivales y eventos musicales en Colombia. Nos contó sobre la importancia de una preparación previa de los artistas antes de llegar a la fama, detalles nuevos sobre su experiencia con los Guns N' Roses, su cercanía con Gustavo Cerati y cómo el 9/11 no le permitió recibir un premio Grammy.
Después de el rap de Eduardo Luis, llega el Narrador con autotune, una pieza única del mundo del fútbol. No se lo pierda en este nuevo capítulo de El Gallo Pódcast cargado de poesía y recomendaciones para el FEP.
Show 14-12 Summary: Conservatives on offense means conservatives doing the right thing and for the right reasons. First up, we talk with Scott Shepard of the Free Enterprise Project about Apple's viewpoint discrimination (meaning conservatives) and FEP's shareholder proposal to expose the issue. Remember Apple's Big Brother ad? Turns out they've become Big Brother—even their … Read More Read More The post 14-12 Conservatives on Offense | The Right Things for the Right Reasons appeared first on The I Spy Radio Show.
Yay! Other than a crappy cold, a very good week. Won a Gold Bar with the Guild Of Photographers a couple of days ago which got me to thinking about competitions: why we do them, how to do them and the fear of failure (when in fact, the only failure is to not enter at all!) There are one or two other things to bear in mind and I step through them in the podcast. Enjoy! Cheers P. If you enjoy this podcast, please head over to Mastering Portrait Photography, for more articles and videos about this beautiful industry. You can also read a full transcript of this episode. PLEASE also subscribe and leave us a review - we'd love to hear what you think! If there are any topics, you would like to hear, have questions we could answer or would like to come and be interviewed on the podcast, please contact me at paul@paulwilkinsonphotography.co.uk. Full Transcript: [00:00:00] I'm really sorry, it's just been one of those weeks. I have spent three days, three whole days at home feeling ill and mostly grumpy. Sorry, I don't take to being poorly particularly well. Whatever Michelle and Sarah had last week. Of course, I inherited it this week. It turns out that the word viral is not a joke. [00:00:25] It's just a cold, really, but it's been quite a horrible one. It hit my chest straight away, and I just felt awful, and if I'm honest, after three days off work this evening is the first time I've really felt sort of compos mentis. I've spent three days sitting in the lounge with the fire on. It's been cozy enough, but I've, I hate being unproductive. [00:00:46] I hate not getting through the lists that I've got to do. I hate the idea that I've wasted three days, but in the end, that had to be done. So as I sit here next to the fire watching back to back episodes of Law Order, I'm Paul, and this is the Mastering Portrait Photography Podcast. [00:01:07] [00:01:20] So I hope you're all feeling a little bit better than me, and in terms of the catch up of the week, well, I can't really say that I've done that much out of the seven days or so. Three of them have been spent laid up doing very little. Obviously, I'm still doing some coding, writing emails, and an awful lot of judging has been flowing through my world. Not this time, not just as a judge or as a chair of judges but also as a contestant. It's been an interesting time. [00:01:47] So, I judged for the FEP this week, the first of the final rounds of their annual image competition. I'm one of the judges on the portrait category. [00:01:58] 647 images, I think, were there to judge. And if you think about that as a volume of judging and all of our, all of the judges. Whether it's for the BIP that I chair for, whether it's for the SWPP, the Societies, whether it's for the Guild, whether it's for the FEP, the World Cup, it doesn't really matter what the judging is. [00:02:19] It takes time and we do it for nothing. Well, I say nothing. We don't do it for nothing, but we do it for free. And so, if you think about all of that, 647 images. If I went at it hell for leather and judged one image per minute with no breaks, that's still basically 11 hours of judging, which is an awful lot when you think about it. [00:02:45] And yet, we put ourselves through it. And I do it because I really enjoy it. I really love the process, I love seeing the images, though there is some disappointment when we're judging and the images haven't come up to standard. But, nonetheless, it's cathartic, it's inspiring, it's very therapeutic, it's quite a rhythmical sort of thing to do. [00:03:04] And I really love it. [00:03:06] On top of that, if that wasn't enough, the results to the BIPP monthlies came out the first BIPP monthly round. So this is a new competition for us. We've set it up to run parallel to the print competition, which opens up in sort of June time and it's judged in September. And they run side by side and they are different beasts. [00:03:27] So the print competition, exactly what it says on the tin. Submit your prints in the category. Best print wins each category. That's it. Very simple to do. The monthlies are not that. The monthlies have been designed. [00:03:41] to reward consistency as much as really high quality inspirational work. With a print competition, you only need to shoot one image, and depending on what everybody else shoots, you could end up with the title of the print image of the year, the portrait print of the year, the wedding print of the year, whatever it is. [00:04:00] With the monthlies, it's been designed not to be quite like that. The monthlies It's about consistency more than it is about that one high scoring image. That's not to say that a high scoring image isn't a thing to be treasured and will get its accolades, but what we've done is design a competition at the BIPP, which is Sorry, the BIPP is the B I P P, the British Institute of Professional Photographers. [00:04:27] So we've designed a competition that runs for 10 months of the year. And we take, for every photographer, the top scoring image of theirs in each category. So it doesn't matter how many images you, you enter, that's irrelevant. Each month, we're going to take, for that photographer and each category they've entered, their top scoring image. [00:04:47] And over seven of the ten months, we're going to accumulate those scores. So you have the opportunity, if you wish, to take three months off. So you have ten months, take three months off if you wish, seven months. So your top seven scores for each category will be accumulated. So your top seven scores in portraits per month. [00:05:09] So in January Portrait. You enter five, we take the top one. February. You enter five in Portraits again, we still take the top one. And that's, that's two of your scores sorted. And the reason we're doing it that way is that each photographer in the BIPP gets one free entry every month. [00:05:28] So you have for free the ability to enter and win the monthly's competition for the year without laying out a single cent. All you have to do is find the time at the end of every month to pop in a high quality competition level image, upload it, put your name in, Bob's your uncle, Fanny's your aunt, off you go, you're done. [00:05:47] And you could win it. [00:05:48] So what amazes me, and there's a point to this story, not only is this how it works, but the point is, why don't more people enter? We had lots of entries, but it's not everybody, and I can never quite get my head around why, if it's free, and you have the opportunity to create some great PR, I'm looking at the PR on Facebook this week, and on various websites and Instagram, and people are really celebrating their success in all of the monthlies, not just the BIPs, and it's brilliant, and that's what it's designed for. It's designed to give photographers the opportunity to have something to celebrate and to share with their clients. This is, in the end, about clients. I think too often in the industry we think about it as being about, it's about photographers, and it's not really. [00:06:31] It's about our clients. And the monthlies create every 30 days or so, the opportunity to share success with your clients and you can do it for free. So why, with the thousands of members do we have, do we not have every photographer entering? [00:06:48] Still can't get my head around that and if you think I don't put my money where my mouth is. [00:06:54] This month, I did enter as I have done for the past year, I entered the Guild Monthlies competition. Obviously, I can't enter the BIPP competition, because I'm chairing the judging. So I entered the Guild, and this month, for the first time since I've been entering it, I got a gold bar, which is nearly the top standard. [00:07:12] It's not the top standard. The top standard is Platinum. But nobody's won a Platinum yet, so I'm happy with that. I got a gold and won an image of the month. Now, that's not the point of this story. It's not really to brag. Though I am really pleased with myself because it's an image I took of I think it's the bass player from the band The Sweet. [00:07:31] He was very cool. He was in our studio. It was just a normal session shot I took for him. all for the band. And I decided to try it, enter it as a competition, and see how we go. I think the point is that I entered. I gave it a go. Now, people get really nervous about entering competitions, and I don't really understand why. [00:07:51] Now, you know my views on this. Competitions are not the best way to hone your skills, because you get no feedback, and even if you produce the best image of your life If your competitor has produced the best image of their life, they may just win. and give you nothing really, no, certainly no winning image to celebrate. [00:08:13] Also, you know, with the judging process, you don't know how you're going to do. Every photographer enters an image thinking they stand a chance. But judging is what it is. We've got to rank all of the images and who knows? Maybe it doesn't do as well as you'd expect. And people take that really personally. [00:08:30] I take it really personally. But the difference is I still do it. I just don't tell anybody I'm doing it. I do it quietly. And the images that succeed, well, I celebrate those and we publish them. And Sarah in particular loves it because it gives her an opportunity to talk to our clients and put out some PR. [00:08:47] And she's been doing that all day since the result came out yesterday, which is fantastic. So, I give it a go, I do it. I don't always do that well, if I'm honest, and judges typically, they, there is a correlation between the judges and success in competitions, but it's nowhere near as marked as you'd think it is. [00:09:08] And you can see this while we're judging. So if I'm chairing a panel of judges, you'll see marks from each judge fluctuate quite widely. So a challenge is triggered when one judge's mark is 10 away from the average decision. So whatever the judges came up with, we take the average, and if one or more of those judges is 10 marks different, we have a challenge. [00:09:29] And we have plenty of challenges, which tells you quite a lot about the fact that every judge has things that they are looking for, and if the image that is in front of them doesn't have it, they won't score it as highly. Equally, if it does have those things, they will score it highly. There is volatility in scoring. [00:09:46] You cannot use print or image competitions. as a measure of you as a person, or you as a business, you as a creative, but when you do win, celebrate it. When you don't win, well, you have to figure out what to do with that. The great thing about a monthly competition is that there is the opportunity for at least a little bit of learning. [00:10:10] because you don't have to wait for a year to try again, you can just wait four weeks. Re enter some more images, keep an eye on what comes back, what gets into the bronze, silver or gold. If you haven't quite made it across the line, what makes it into the the commended, which is what we have at the BIP. I don't know what the other societies do for those things, but everybody has a sort of way of doing it. [00:10:31] So the trick is, celebrate your wins, keep your losses to yourself, and then there's a whole load of pressure removed for you. So It is slightly different in in the monthlies. So, back on, I'm gonna bang on this drum. If you haven't entered into one of the monthlies, into any association you're part of, why not? [00:10:52] What's stopping you? Think about it. What is actually stopping you? It's almost certain, almost certainly rather, a fear of not doing well. Well, I enter them every month, I tell you when I've done well, and I keep it very quiet when I haven't. And I'm still amazed at how few people do it. And with the BIPP, every entry is £5, but you get one entry for free. [00:11:15] And with the BIP, every image is £5 a go. But you get one for free. So that's a value of £5. So if you had entered 10 months of the year, that's £50 worth of free entries. [00:11:27] Who's going to turn down 50 quid over the year? And the value of the opportunity to talk to your clients is priceless. Now you can argue you might not win, and that's true. I don't. But when I do do well, I will share it. When I don't do well, quiet. I just keep it nice and quiet. [00:11:45] So the results came out for the Guild yesterday, so they're on the 21st, and the closing date for the Guild is at the end of the month, so it's a leap year, so it's the 29th of Feb. So I've got about somewhere between 8, 9, 10 days every month between the results to the previous month coming out and the new round to choose what I'm going to put in. [00:12:06] I know I'll keep entering and I know I'll keep learning and I will keep being surprised at what does well and what doesn't even though as a judge and as a chair of judges very often I'm in the position of determining that and even having just judged the portrait group for the FEP, the Federation of European Photographers, I can tell you now when the second round comes back to me in a couple of weeks I lay a bet. The images that come back will not be in the same order as I pick them out. That's life. I'm working with judges from all over Europe, I'm working with people of different tastes, different influences, different things they value in an image. So you can never be certain, but what you can be certain of is if you don't enter it, you ain't gonna win anything. [00:12:48] That's a dead cert. So why would I choose absolute certain failure over anything else? Sorry, you never use the word failure. It's not a failure. Nobody fails. Except when you don't enter. Yes, you do. You fail. You've failed to enter, you've failed to compete, in which case, failure is the only word I have for it. [00:13:07] If you enter and your image isn't successful this time around, there's a million factors to that. You can learn from some, you might not learn as much as you'd like, you can take those images because you have them. And you can show your mentor, or show a friend, or show another photographer, or show someone get a critique. [00:13:21] [00:13:21] So there's just a few things I have spotted over the past week to ten days. with competition images. This is accumulated from what I've seen on the judging side with the BIPP, or the BIPP Monthlies, and what I've seen from the competitor side, so as a judge rather than as a chair, on the FEP. [00:13:41] One, don't over sharpen, particularly when it's an online entry. The screens tend to be quite sharp. They tend to make things look a little bit sharper than perhaps they could be, in my opinion, anyway, maybe it's the screens I've got. So don't over sharpen. No one on any competition I have ever been involved in the judging has ever said they've under sharpened this image. [00:14:06] But every round I will hear someone say, that image is over sharpened. Don't overdo it. Alongside that There's a huge temptation, particularly with the users of Lightroom to use clarity and or detail enhancement. These are still, so there's no such thing as sharpening, it's just localized contrast. [00:14:24] Equally, clarity and detail are variations of the same thing. If you're quite keen on the clarity slider You can see it in the image. It starts to look like it's been heavily processed. For some categories, that's great. For some categories, that will get hugely rewarded. For others, it won't. So have a look at what's done well previously and tune your effects and your clarity and detail to suit that. [00:14:51] Don't blow out your highlights or block up your shadows. What do I mean by that? I don't want ever to see pure white, and that's tricky if you've got, let's say, a grey flat sky, and you've lit someone against what light there is. So get it under control, make sure there's detail in the highlights, and there is detail in the blacks. [00:15:09] And don't think you can cheat by raising up the blacks to be grey. Thinking, well that's right, nothing in the image is now black. If there's no detail in it, we're still going to see that the blacks were blocked up, they've now just become very dark grey, and still blocked up. If there's no detail in there, I would suggest you find an alternative image. [00:15:32] Colour grading. A lot of colour grading knocking around, and there are a thousand colour panels out there at the moment. Be careful, that the colour you're using is part of the story you're trying to tell. Don't just make it desaturated because it's desaturated, or make the shadows a bluey green because you've seen it on a Netflix film. [00:15:50] Tell the story with your colour. If you're going to use colour, tell the story through it. Be careful that you don't just process for processing's sake. It must be part of the storytelling. [00:16:00] If this podcast makes you feel uncomfortable because I'm sounding ill, trust me it's worse for me. I'm sounding ill. Where are we? Next one, number five, look for emotion, and then number six, impact. These two are intertwined. When you look at an image as a judge, we have to react to it. [00:16:20] Judging as a process gets criticised a lot as to why don't we prioritise creativity, emotion, impact, these words. Sort of soft, the soft skills, I suppose, of photography. The truth is, we do. That is the top scoring band. Impact. Bam! Get it in front of us. Work out what it is about the image. [00:16:43] Whether it's the way you've cropped and formed the story, where you've laid out the parts of the puzzle, where you've used colour, the way an expression just connects with you as a viewer, whatever it is. Make it about impact, because as judges, we want to feel something. We want to know that you felt it, too. [00:17:02] Number seven, do not enter the same images everywhere. I kid you not, there's an image I've judged I won't say exactly where, but I've judged it this week that I've seen now four times. Four different competitions, I've seen the same image. I wasn't always the judge. I was a fellow contestant in one. [00:17:22] I was Chair of Judges for two, and Judge for the fourth. I've seen it four times. Well, imagine the lack of impact by seeing it that many times. Now I know, as a contestant, you may not think the same judge is gonna see it every time. But, the truth is, there aren't actually that many judges. Not really. [00:17:45] So there's a lot of cross talk. So you get to see the same images quite a bit, if you're entering them into different competitions. As an extension of that, and this is So the first one's not that easy to avoid if you enter lots of competitions. It would be great if you could, prep a different image from the shoot for each competition, but I know it takes time and it's expensive if you're doing print, but I would still recommend it. [00:18:11] This next one, though, is slightly different. If you shoot images in series, what do I mean by that? If you shoot dogs running and jumping, one dog running and jumping, or you shoot a certain style of child portraiture, or a certain style of I'm talking portraiture in particular, a certain style of female portraiture, I don't know. [00:18:31] Don't put more than one of that style into any round of a competition at one time. Don't put them all in January. The idea that we're going to pick out the highest scoring image, the image we think is best out of your series of five, simply not true, because we judge them in a randomised order, but sequentially. [00:18:51] We get an image, we judge it, we move on to the next image, we move on to the next image. So you have no control over what order we see them in. We have no control over what order we see them in. And the idea that we're going to go to the last image of a set of five, and could you know I've seen all of these? [00:19:05] I think image one was the strongest, I should have given that more, more higher score. That's not how this works. We evaluate each image based on its own merits at that point in time. But if we then see four more of the same image, trust me, the impact on the last image isn't going to be as great, even though they are technically different images. [00:19:26] So what you're doing is you're sacrificing four incredible images to get one through. You have to make a decision over which one to put in. And then, guess what? February? Put another one in. March? Another one. There's no way, it's not a, it's not a thing where we can pick images out, because we have to judge them one after the other, so that every single image stands the same chance of getting the same score. That's why we do it. [00:19:51] And number nine, so another point on the judging, is don't forget to finish your images, each and every one of them, fully. So there's an image during the recent judging I did, stunning. I looked at it on the screen, small, beautiful. Hit the 100 percent button, zoomed into the pixels, moved around the image, because when you're doing online judging, this is how it works, and you could see that the photographer, it looked like, I don't know, their nan had called round midway through them doing the retouch. [00:20:23] And they just never went back to that image. They submitted it with holes in the background and gaps where They'd dropped a background in over the top of the subject, and you could see the overlaps so clearly. They were just hard, like they'd hit it with the pencil tool, not the brush tool. And it clearly, all they'd done is not gone back over the image with a fine tooth comb. [00:20:43] It really, it felt like, they're sitting there doing this beautiful retouch. It's a beautiful lady, she's got flowing hair, the background's nailed. She's resting on a bench, or whatever it was. And then bing bong. Mom's here. Mom. It's your mom, Paul. It's your mom. Come down. Alright, I'll be down. I'll be down in a minute. [00:21:00] No, now. All right, I'll come down now. And that was the end of it. It's as if I went back to the image and just never picked it up again. I must have hit send or something. This is not my image, by the way. I really felt for the creator of it, because it was a stunning image. And I even put, it's one of the rare times I've put in the comments field when I'm judging. [00:21:18] If the judge is surprised at why I've classed this as not competition standard, when clearly it's stunning. Clearly the photographer knows their craft. Please get them to look at it like I did and see the holes they've left in the retouch. So finish them properly. [00:21:37] So don't do that. So those are the things I've noticed this time round. [00:21:42] And the great thing about entering a competition is it gives you an opportunity to experiment. Experiment in January. If it doesn't work, change the experiment. Or, no, you never change the experiment. [00:21:51] You experiment. That's not how it works. Experiment in January. Change what you try. in February. It's the same experiment. And then March. And then, who knows, by June, you might have got the swing of it. Who knows? What I will say, though, is that this ability every month to have a go, see how you do, celebrate your successes, learn from those that aren't quite so successful, is hugely, hugely powerful. [00:22:16] I still, still don't think competitions are mentoring. They are different beasts. You know my views on that. But there is still something to be learned from. Entering a competition monthly. [00:22:30] And the best way of entering monthlies, or any competition really, is if you are organized. [00:22:35] Then spend time with your images. Print them, hang them up, look at them over time, keep an eye on them. Because if you do that You'll get to see those little niggles, you'll get to appreciate where things could be fine tuned. [00:22:49] On the other hand, if you're like me, and it's all a little bit last second, then just make sure when you do the prep for your client, you're always producing images at sort of competition level. [00:23:01] There is a difference between competition imagery, what we would choose, how we'd finish them, and there is with what we produce for our clients. But for me, that gap isn't that great. I think if you're a fashion photographer, there's almost no gap. If you're, one of the Fearless Wedding Photographers, there's almost no gap. [00:23:19] I think there is for many sectors in the industry though. So just make sure you're prepping your images essentially to competition standard. If that image that I talked about earlier had gone out to a client, the client would have sent it back to me laughing. I'd have had to sort it out. And it did happen to me once. [00:23:33] It wasn't my retouch, but I did see it. It was my image someone on at the time, an assistant had retouched it, and I knew the minute I saw it go out, it's like, that's coming back to me. And I knew because she'd over whitened the floor, and it looked like the object was floating. I don't do that kind of photography very much, but when I do, it has to be right, and it wasn't right, and it's really frustrating. [00:23:57] Do it to the best that you can. Get it to competition standard, or as close as you can, with only just a little additional finishing where required, because that way, I don't need to worry about having tons of time to get it into a competition. The image I entered and got my gold bar was not the one I thought would do well. [00:24:13] I just didn't think necessarily of the set that I entered, it was the strongest image. Turned out the judges felt differently. But it was certainly finished to that level because the band could have been using it on a poster. [00:24:23] So, the same criteria is still applied. [00:24:26] There's no jeopardy in entering. The worst that can happen is that you don't do as well as you'd hope. And that happens to all of us. The gold bar this month? It's the first one I've attained with the guild, and it's just a regular image. It's now out, of course, on social media. [00:24:43] Sarah's celebrating it everywhere. I'm a little slower to get it onto social media. But it gives me an interesting topic to talk about on here. And so the question I suppose you're asking is, how many other images did I enter? I don't know how the other images did, I've only won one gold bar and got it one image of the month. But I can't argue that you can do this anonymously and then, for me, not be anonymous. So I'm not going to tell you how many other images I entered, but it's definitely more than one. And so why not make this, this year, the year you'll give it a shot. If you're part of the BIPP, you've only missed one month, you still have plenty of months ahead of you, there's nine more to go, deadline always at the end of the month, images, image results come out on the 15th, to give you time to reassess and figure out what you're going to enter for the next month. [00:25:31] And you never know what might happen. And if you can do it for free, and this is particularly to the BIPP, if you can do it for free, Then we really, and I mean this, this isn't a figurative thing, you have nothing to lose. It's free. The clue is in the title. And on that happy note, I'm going to dose up on some Lemsip, some Benelin, some Nurofen, and I'm going to call it a night. [00:25:56] Thank you for listening as I sit here in my cosy little lounge to this podcast. As always, head over to masteringportraitphotography.com for lots of articles and stuff, and also it's the spiritual home of this podcast. On top of that Please do leave us a review, tell another photographer or someone you might think would be interested in it about the podcast, leave us some comments wherever you can, and hit subscribe on whatever podcast player you use. [00:26:21] That way, as soon as I get round to releasing an episode, there it is right in your ears before you even know it. Whatever else, as I sip my Lemsip, keep warm and be kind to yourself. Take care.
Mastering Portrait Photography Podcast: Land Rover Edition This is one of our "Land Rover Editions" which is to say, slightly noisy. I'm on my way to and from the Hearing Dogs for a shoot, which is always lovely. Various topics, but mostly "Yvonne's Law: Shoot For Dough Before Shooting For Show". In other words, it's all about your client before it's about us and our lust for awards! haha. Sadly, it does mean you can't always create award-winning or qualification-worthy images on every client job, no matter how much you want to! 00:00 Introduction and Land Rover Editions 01:06 The Journey and the Mastering Portrait Photography Podcast 03:04 The Importance of Being Part of the Photography Industry 04:35 The Challenges of Recording Podcasts and Listener Engagement 06:00 The Timelessness of Radio Programs 07:05 The Arrival at Hearing Dogs and the Importance of Initials 07:45 The Challenges of Building a Website and Judging Image Competitions 16:08 The Arrival at the Wedding and Yvonne's Law 20:14 The Wedding Shoot and the Difference Between Shooting for Show and Dough 27:17 Conclusion and Farewell Enjoy! Cheers P. If you enjoy this podcast, please head over to Mastering Portrait Photography, for more articles and videos about this beautiful industry. You can also read a full transcript of this episode. PLEASE also subscribe and leave us a review - we'd love to hear what you think! If there are any topics, you would like to hear, have questions we could answer or would like to come and be interviewed on the podcast, please contact me at paul@paulwilkinsonphotography.co.uk. Full Transcript: EP145 Yvonne's Law Introduction and Land Rover Editions [00:00:00] As I'm absolutely certain you can hear, I'm back in the Land Rover. I think maybe, maybe I should call these the Land Rover Editions and actually separate them out from our normal podcasts. Mostly because when I was at the photography show at the beginning of the year, quite a few people came up to me and said how much they enjoyed them. [00:00:24] Though looking in the mirror right now, I do look like I think a pilot, with my microphone, it's either that or Madonna, and I don't know which is better. I'm gonna go with pilot with the microphone on. However, quite a few people came up to me and said how much they enjoyed the podcast, when it's from the Land Rover, the podcast episodes. [00:00:43] Except for Fiona. Fiona told me in no uncertain terms that not so keen, doesn't like them, wish I'd stopped doing them. Sadly however, look at the weather out here, it's just ridiculous. There's a huge flood. Water everywhere. Good job I'm driving this thing, I think. It's going to be an exciting trip. [00:01:03] Note to self drive careful. The Journey and the Mastering Portrait Photography Podcast [00:01:06] Anyway, this is one of the Land Rover editions of the Mastering Portrait, no, hang on, yes, no, that's right. I'm Paul. This is a Land Rover edition of the Mastering Portrait Photography Podcast. [00:01:33] The challenge with doing these particular versions of the podcast is, of course, the priority is to arrive safely at wherever it is I'm heading. [00:01:44] Today it's the Hearing Dogs: I've got to photograph of some newborn puppies. Well, eight weeks old, so cute, yeah, cute. And also some Christmas stock imagery. The date today is the something of February. What is it? 7th, 8th, 9th something of February. Haven't looked the date up. And we're doing the Christmas, or some of the Christmas stock imagery ready for the end of the year. [00:02:06] Now in some ways it feels absolutely ridiculous that we're doing that, but on the other hand, it's perfectly planned. So I'm actually quite happy about it because normally, every year I've photographed Christmas stock imagery in sort of August, which makes life very tricky when you're trying to hide flowers, make it, the light look slightly bluer. [00:02:25] And ignoring the fact that the dog is panting in the heat. Today, that's not going to be a problem. It's 4 degrees according to the thermometer on the car. It is absolutely tipping it down with rain and has been by the look of it for the past 12 hours because there are floods everywhere. It's going to be a slightly lively journey through the lanes of Buckinghamshire to the Hearing Dogs site. [00:02:49] So anyway, Fiona, I'm sorry I've, I set out at the beginning of the year that I was going to run at least once a week, the podcast would come out once a week, but finding the time for that has been nigh on impossible. On Tuesday. The Importance of Being Part of the Photography Industry [00:03:04] We spent the entire morning judging the images for the British Institute of Professional Photographers, the BIPP image competition, which is such a joyous, I mean, you know, some of the greatest pleasures of getting involved in the industry are that I'm involved in the industry. [00:03:21] I know that may be alien to some people. I get asked quite a bit, what do you get out of it? And I'm going to guess that everybody who sticks their head over the parapet and does judging, mentoring, gets involved with various associations. You get a fairly, a fairly repeated question of what on earth is in it, for me, for other, you know, people asking why they would join, for instance. [00:03:44] What do I get for my 15 quid a month or whatever it is, I don't even know how much it is. And the answer I'd always say is I get to be part of something. I get to be part of something bigger than just myself, Sarah, Michelle, and we're actually a pretty big business when it comes to the photography industry in terms of brand, but also in terms of turnover. [00:04:02] We have a You know, a reasonably big business, the three of us run but it's still, in terms of the industry itself, if it wasn't for the associations, we'd be running it on our own, and yeah, alright, I'm with clients all the time, which is amazing, but it's the, things like the society's convention. Being part of the BIPP. [00:04:19] com, being a judge for the FEP, that's just started this week, so I'm judging for the Federation of European Photographers as well, and it looks like I'm about to do some judging across the pond. with our American friends. The Challenges of Recording Podcasts and Listener Engagement [00:04:35] So, all in all, a lot's going on and, and , finding time to record the podcast just isn't that easy. [00:04:42] On top of that, the thing I've suddenly had to become increasingly cognizant of is I've started to get emails of people who are discovering the podcast for the first time and are now listening to back episodes, and this particular message, I suppose, was triggered, or this thought was triggered, by an email that came from another Paul, I mean, great name, of course, another Paul, who had started listening to the podcast, and when he emailed in the other day, he was on episode 31. [00:05:09] Now, I didn't look up the date of episode 31, but given we've been doing this for about Eight years now. Seven or eight years. Episode 31 is quite a long way back. Goodness only knows what's changed since then. And it may be another six years at that run rate before he gets to this episode of 145. So, who knows? [00:05:33] So now I've got to be very careful. I don't get too specific on dates because by the time some people listen to these episodes it could be well out of date. Equally, there are people who've probably started episodes What, 144, and are now working their way backwards, but still won't get to 100, this episode, 145, for quite a long time. [00:05:53] So forgive me if some of the stuff I talk about is very particular to the moment. Can't do a lot about that. The Timelessness of Radio Programs and the Future of the Podcast [00:06:00] One of my favourite radio programmes to listen to is Letter from America. Have I talked about this before? I've no idea. Letter from America, by a guy called Alastair Cook. He's, he's dead now. [00:06:12] This was on Radio 4, BBC Radio 4, and I think you can still Listen to it. Oh, I listened to it on the BBC Sounds app and many of the back episodes are there. And I really like the fact that it's of its time. I was listening to an episode the other day that was actually about the Middle East, and it's incredible. [00:06:31] I mean, These episodes must be, I think, 40 years old? You're looking at the mid 80s. And the politic of the region and things that were going on sounded like they could have been today, right here, right now. And I find stuff like that really interesting. So I suppose in a sense you can have a recording that is of its moment and yet still be pertinent later on. The Arrival at the Hearing Dogs Site and the Struggles of PodcastingThe Arrival at the Hearing Dogs Site and the Struggles of Podcasting [00:06:57] If I'm still doing this in 40 years, I don't know if I'm going to be driving around the country photographing hearing dogs, but that's what we're doing today. So thank you to Paul for emailing in. It's lovely to get these emails. We get them from people dotted all over the world. [00:07:12] Describing what they're up to. I try to get back to everybody within a certain time frame not always possible, but I do try to, to do it. And those that sort of make me smile, I, I talk about on the podcast itself. Uh, An awful lot going on just at the moment, which is also a reason why I haven't managed To do a sit down at my desk recording really, the only time I've got. [00:07:34] Sorry, I'm so sorry Fiona, I know, alright, I know. But I'll try and make the broadcast as clear as I can. [00:07:41] Even in this clattering vehicle. The Development of the Mastering Portrait Photography Website [00:07:45] Still building the masteringportraitphotography. com website, causing me no end of head scratch. The hardest bit is a combination of technology and trying to figure out where Articles should sit. It's not, it turns out, as straightforward as I would like. Mostly because the platform we're using, or trying to use, or switching to, is more basic than the one I have at the moment. [00:08:12] So the one I have at the moment, I can do anything I like. WordPress, with all of its plugins and all of its technology, of course you can do anything you like. But the problem is, with that kind of power comes an immense amount of work. Keeping on top of it, making sure it's patched correctly, making sure that all my licenses are up to date. [00:08:32] And on top of that, a huge amount of expenditure. Because of its sophistication, well, you pay for it. So, what we're trying to do is simplify everything, because I don't really need that power to do the things I need to do. It's overkill, really, although I enjoy having that sort of level of control. [00:08:54] But the kicker, of course, is now we're simplifying things down, is I'm discovering that certain core things that I relied on, for instance, the structure of how one article can be the child of another article, so you can have a parent which is a really simple idea. The Challenges of Creating a User-Friendly Website [00:09:12] But very powerful. I can't do that on the new platform, so I'm having to figure out ways of still making the content visible, make it logical make it easy to upload and easy to access. [00:09:24] And have a structure that really makes sense, but haven't necessarily been able to find the way of doing that. The Experience of Judging for the BIPP Image Competition [00:09:32] Of course, things like judging the other day they take up time too, but it warranted pleasure. It was just It's the new BIPP monthly competition. So this was month one. So if you're listening to this podcast five years later, you will know whether the BIPP. [00:09:47] com monthly competition has been a success because this was the very first round. A couple of hundred entries, which is really nice. Hopefully that will climb but the, the fun of it is sitting we've recorded the call, so I have it as an audit trial, but sitting on this video conference with two judges looking at images and enjoying the process of assessing images. [00:10:10] Now, the only thing is, it didn't really occur to me, I thought we'll film this, we'll do it properly, so we're using a bit of software called Squadcast which is brilliant, it's one of the, it's, there are various things, a bit, Riverside FM is another one. Where you do it as if it was Zoom, but the video and audio for each participant is recorded locally on their machine, which means it's really high quality. [00:10:29] I can run that then into our podcast software and do an automated transcription, transcribe it, because the new AI tools are Word Perfect. It's brilliant. However, what I hadn't allowed for in the four hour recording is, of course, we judge in silence. Why? Well, it's not because we're really dull. [00:10:53] Well, maybe it is. It's because, actually, we want each judge to determine the score for the image independently. And if there's chatter, if people are sighing, if people are going, Oh, if only they'd done this better, it influences the, the, the judges. They influence each other. And of course, we want there to be an independent scoring because that helps to take out any sort of personal or subjective, I mean the whole thing is subjective, but sort of variability and, and outside influence. So it's great, they judge in silence, they punch in their scores, I announce the score and record it. It doesn't make for a very interesting video. So I'm now not certain that we'll ever release these things because the idea was, and still is, to find ways of providing insight into why an image does well, why an image maybe hasn't done so well, what the judge's thoughts are, but we never really do that during judging. [00:11:50] So, having to have a think about how we might do it. We certainly can't critique a couple of hundred images in the time we have available. And we're going to do this every month. And the thing about the judges is that they are not retired. They are not Part time photographers. These are the best of the best. [00:12:10] They have to be. They have to be current. They have to have their eye in. They have to be working pros for the judging to have validity. If I just used people who are no longer in the industry, they're no longer up to date. They're no longer current. So it's not that I can use judges that have, or we can use judges that have a ton of time at their fingertips. [00:12:33] The most important thing about the judges is they are current and as such they need to be working and if they're working I cannot get a hole in their diary for more than a few hours at a time so we can't critique every image. It's not physically possible but somehow I've got to find a way of getting some of this information out to everyone who entered, entered the monthly competition. [00:13:00] Anyway, it's a lot of fun doing it and those results, the first set of results, will come out. Next week. So if you're a BIPP. com member, look out for those results if you're listening to the podcast. And of course, I would encourage all of you to enter. You get one free image every month. You don't need to pay any money. [00:13:18] But just make sure, just because it's free, doesn't mean that it can be any old image. It's a real competition. We're judging it to the international print competition standard. So it's tough. I make no apology for that. It's really tough, and as such, it's not your everyday work that is going to do really well. [00:13:41] And I'm gonna come back to that as a topic of conversation on the return leg of this journey. However, before I do that, as I'm getting fairly close to the hearing dogs now, the weather's improving. It's still pretty horrible, but at least it's not literally lashing it down as it was when I got into the car. [00:13:58] Quick tip! The Importance of Presets in Photography [00:13:59] This is a quick tip for nothing. It's not the subject of the podcast, but I thought about it while I was a moment ago prepping some files for a upload, and I was in Lightroom, and then in one of the Nik ColorFX, uh, plugins. Is, there are so many presets, lots, presets for plugins, presets for Lightroom. [00:14:23] Presets for Photoshop. There's so much stuff around actions that it gets really hard to track the ones that you created for yourself. And I have this very simple rule of thumb. is for any, any preset, any action, any workflow item, any LUT, any, sorry, a LUT, L U T, lookup table, any color LUT anything at all really, I put my initials at the front of it. [00:14:51] I always put P W because it identifies the things that I created for myself. As opposed to the things that I may have bought the things that I may have downloaded, the things that somebody else was helping me with, the things that I've done for myself, they have the initials PW at the front. And it's not an ego thing. [00:15:11] A couple of times people have cocked an eye because everything I've got has got PW, PW, PW, PW. It's got nothing to do with that. It's got everything to do with the fact that I get really easily confused with the different things that are in the business, the different presets, folders, you name it. So I stick PW at the front to make it clear I did that one and then in two years time Because some of the things I've written they are like five six years old There's some scripts I wrote for Photoshop that we're still using and I think I wrote them ten years ago I know they're mine because they have PW at the front as opposed to some of the scripts I found and downloaded Which are by third parties, and of course, you know, I can use them. [00:15:51] But I certainly couldn't distribute them. And I want to know that if I'm modifying them, I'm modifying somebody else's work. Which is only fair. So, stick your initials. At the beginning of any presets and things that you create for yourself. There you go, that's a top tip for nothing. The Arrival at the Hearing Dogs Site and the Weather Conditions [00:16:08] I'm just about to pull in to the hearing dogs. [00:16:11] Wow, it's a grey day. Look how blue the light is, it's horrible. Ha, ha, ha. Usually, usually at this side of the hill, we come over a slight hill. Um, so it's only, how long I've been driving? What, 10, 15 minutes? It's not that there's a huge difference in location between us and the hearing dogs. The geography does change slightly. [00:16:33] We come over a slight rise onto the other side of a hill, and then onto a plateau, a little bit of a plateau at the foot of the Chilterns. And the weather here is quite often different, very different. Sometimes, particularly, it's most pronounced when it's snowing. We will have snow and they won't, and vice versa, and it really is only 10 minutes separate. [00:16:51] Today, sadly, the weather is exactly the same, which is to say, shitty. There's no, I'm sorry if you're offended by the word, but it's the right word. It is shitty. Dead flat light, cloudy, wet. It's gone down by 0. 2 of a degree since I've been driving. Over this side of the hill, it's 3. 8 degrees. Usually the temperature rises. [00:17:17] Today, it's slightly colder. And I normally would say that I am looking forward to photographing the Hearing Dogs, particularly the puppies. Today, I'm looking forward to the photography. I am not looking forward to lying in a wet field. God, that car park needs a little bit of TLC you can hear the car rattling around on all of the divots and holes and puddles. [00:17:42] And then my, my car cam pinging as it thinks I've hit something. I do think at the moment we live in a country where the roads are in such bad condition. My dash cam. Constantly thinks I've had an accident and records that little bit of footage automatically because it thinks I've hit something, and I haven't hit anything, I'm just driving along the A40. [00:18:05] Right, I'm here. I shall return with the actual subject of this podcast. Maybe that's what Fiona doesn't like, is the randomness of it. Sarah says I repeat myself a lot when I'm recording from the car, so apologies if I am about to do that. However I will see you at the end of this particular shoot. [00:18:23] Right, I'm back. So at the end of that, I've just spent, what is it now quarter past two, uh, four and a bit hours photographing puppies which is beautiful, photographing dogs which are equally beautiful, running dogs, jumping dogs, wet dogs, god the weather's been horrible, and some Christmas images. Of course it's this time of year when we shoot Christmas stuff, but actually created some really, well I mean I think they're beautiful, my client seems to think they're beautiful at this stage, I've only seen them on the back of the camera, but a lot of fun. [00:18:59] We're using more and more and more LED lighting. Which is great when you're balancing up against Christmas lights and fairy lights and daylight. It's so much easier using LED than strobes for that. For the studio stuff, we are still using strobes because we can freeze movement really well, which is really, really important. [00:19:20] So for the white background stuff, those standard shots we create for the charity, very much still strobe, and I don't see that changing. In the near future, uh, because that ability to have, you know, F 16 and that instantaneous pulse of light that freezes motion is a very particular look and just the moment, I don't see that becoming that being replaced. [00:19:44] However, the LED side of it we had four different LED lights two with modifiers, two focusable spots with modifiers and two LED bars. Which just added beautiful touches of light where I wanted them. Made life really easy. I'll share a few of those hopefully on Insta over the next couple of days. [00:20:04] Actually, I won't show them on Insta because they're our Christmas pictures. So no, no, I won't be showing them on Instagram. They're the Christmas pictures, but maybe I'll get to show them. In December next year, or this year. The Concept of Yvonne's Law in Wedding Photography [00:20:14] Over the weekend, and this is, I guess, we're heading towards the point of this particular podcast. [00:20:19] I was photographing a wedding, beautiful wedding, only 13 people, pretty hectic, lots going on, Friday night, Saturday all day, Sunday morning and some of the afternoon. A really beautiful venue, and on the Friday night I got sitting chatting to the mothers of the groom, or the mother, sorry, mother and father of the groom, mother and father of the bride. [00:20:38] And one of them said to me, she said Yvonne told me this. Now at that stage I didn't even know who Yvonne was, so Yvonne, Yvonne, said that she was complaining that all of the shots of her son were the back of his head. And it turns out Yvonne, at a different wedding, was the mother of the groom. And every shot of the groom, it was just the back of his head. [00:21:00] And I said, I don't understand. She said, well, there's lots of shots of them as a couple. You can see the bride's face, very moody, just the back of the groom's head. And do you know what? Instantly, instantly, I knew the kind of shot she was talking about. It's the kind of shot that we see quite a lot when we're judging competitions, or maybe doing Quals. [00:21:21] There's some, it's very moody, but essentially it's a bridal portrait using the groom as context. It's fine, there's definitely a place for it. But if you're shooting a wedding, you might just find yourself getting the reaction that, clearly, Yvonne gave. So, Yvonne is not happy that the photographer has not done what she would regard as the photograph that she would like. [00:21:43] Which, I'm gonna guess, is a photograph of the bride, the groom, three quarter length, front on, snuggled up. Smiling at camera. That's the, that's the, still one of the best selling shots you can create. Certainly if you're pitching to sell to the parents of the couple. Yvonne's Law, I'm going to call it from now on, and I think we're going to talk about this, and I'm going to add it to my list of things that people should think about. [00:22:09] Yvonne's Law is this. When you're photographing a wedding, make sure you cover everything that the people who are attending and the people who might be buying the pictures would wish for. Going for awards is fine. We all do it. We all need to do it. We need to push ourselves and be creative. That is For most of us, why we came into these industries in the first place, we want to do something exciting and different. [00:22:32] We want to do something engaging and moody, and on the whole, those are not the shots that you can sell to the couple. Not always, it's not an entire, there is a Venn diagram with an overlap. You can, of course, sell really dark, moody pictures of the bride to the couple, and that may well happen. But there's a law of averages here and you're being paid by the client to satisfy numerous different angles. [00:22:57] Now, the other thing I don't know about the wedding that was being described is whether the bride and groom had asked specifically for a certain type of image. I have shot a wedding, this is going back a little bit in my career. Where the bride and groom wanted me to, and I kid you not, ignore the mother of the bride. [00:23:16] That was my brief. Do not pay any attention to her. She's gonna ask you to do all of these different shots with different people, but she is not paying. The bride and groom were really very clear about that. The problem is, from a diplomatic point of view, I've got a nightmare because, of course, the mother of the bride is asking me to do things. [00:23:36] And I've been briefed not to, because it'll draw time and they're not shots that the bride and groom, who are my client, are going to buy. So yes, you can end up in that situation. But here's the rub for that particular wedding, is I ended up going back and doing a portrait shoot with the whole family, because the mother of the bride felt she hadn't got the pictures of them as a family that she would wish for. [00:23:56] We ended up dancing through, or jumping through a few hoops, jumping through a few, I can't even say the word, hoop, jumping through a few hoops, hoops to get to the end goal. So Yvonne's Law simply states, remember that you're shooting for a client, you're not just shooting for you. Eventually I'll word it slightly differently as I probably think of 25 iterations of it. [00:24:17] Let's just let these people out here. There you go. You go through there. That's good. Perfectly good. And so it was a really beautiful wedding and throughout the day though I laughed with the two mums about Yvonne's law and made it perfectly clear that I was getting everything they had asked for. The Differences Between Shooting for Awards and Clients [00:24:35] Now there's a slight addendum to this thought process which is well how come what you shoot for a client doesn't necessarily do so well in awards or so well in qualifications. [00:24:49] And the truth of that is that we have to, to a degree, separate out context from the picture. So when we're judging we don't have the context which makes it sometimes a little bit tricky. As wedding photographers we know that shooting on a commissioned wedding is that little bit more complicated which is why in the categories for wedding photography most of them state really clearly Must be linked to the wedding day, must be commissioned. [00:25:16] You can't use models, it can't be you just shooting for fun, because once you eliminate that sense of pressure, the time pressure mostly, but the performance pressure and having to work for a client, everything's much easier. Which is why fashion magazines have these beautiful pictures of models in bridal gowns and actually on a real wedding day. [00:25:37] It's a lot trickier, it's not impossible but it's a lot trickier to get those images. So there's this thing, and I, we all know it the best I've ever heard it was shoot for show, shoot for dough. The difference between shooting for your portfolio, shooting for awards, shooting for qualifications, and shooting for the money, shooting for your client. [00:25:58] They are slightly different things, and one photographer, a really nice photographer called Hoss Madavi, photographer, Put it like this. He said, think about designing for a catwalk. Think about what you would design out there for a catwalk and then think about what you actually end up selling through a high street chain like John Lewis or Marks and Spencer or whatever in the UK or maybe Macy's or someone like that in the States. [00:26:27] Think about the difference between those two. Your haute couture arranges that you're going to produce on the catwalk. By the time they end up being sold to the mass public, not quite the same thing. Nor should they be. They're for different purposes. One is to show the world what you're capable of. One is to show, or it's actually sell to the world. [00:26:46] Not quite the same thing because most people are not going to buy a really funky haute couture dress or outfit off the catwalk in the same way that a lot of our clients won't wish. to buy a moody dark shot that's of the back of the groom's head. There you go. Yvonne's Law is now what we're calling it. [00:27:05] I might have to change it. I feel, I don't, I've never met Yvonne. I'm going to credit her with it because that was the story that was told to me. On that happy note, I am just pulling into a garage because I am absolutely starving. Conclusion and Farewell [00:27:17] I need to get some food and I need to get some food quick before I start getting grumpy. [00:27:22] So I'm going to park up and I'm going to wish you all well for the week. So for this week's podcast, thank you for listening. Of course you can email me. At paul@paulwilkinsonphotography.co.uk. You can head over to masteringportraitphotography.com. Please do subscribe to the podcast wherever it is that you consume your podcast. [00:27:43] And if you feel like it, please leave us a review. If you feel sorry, if you feel like leaving us a nice review, please leave us a review. If you feel like leaving us some nastiness, then please email me so I know what we could improve on. But on that happy note, I hope you're having a good week. I hope the weather is better where you are than where we are. [00:27:58] And of course, in the spirit of this morning, a very happy Christmas to you all on this February day. And whatever else, be festive, but be kind to yourself. Take care.
In this episode, we explore the critical theme of impaired insight in severe and persistent mental illness, known as anosognosia. Dr. Nicole DeTore, Director of Research at Massachusetts General Hospital, guides us through her groundbreaking research on early intervention services, particularly the NAVIGATE program, which offers hope for individuals experiencing first episode psychosis (FEP). Dr. DeTore reveals the program's principles, its international reach, and the indispensable role of family support. The episode delves into the symptoms of schizophrenia, and the nuanced concept of recovery. Join us in the conversation with Dr. DeTore as she shares her expertise around early psychosis intervention programs. Resources:Navigate: https://navigateconsultants.org See omnystudio.com/listener for privacy information.
Los conciertos legendarios que han pasado por estadios; y la historia que están marcando artistas y empresarios al montar unos shows imperiales en Bogotá y el mundo.El FEP al Simoncho, historias de Maná , Acido Pantera, Carlos Vives y más , mucho más, póngase bien fino y péguelo para este viaje .Presenta : Julio Correal y Luis Ca Guerrero.PODWAY PODCAST NETWORK.
Welcome to The Nonlinear Library, where we use Text-to-Speech software to convert the best writing from the Rationalist and EA communities into audio. This is: 'Theories of Values' and 'Theories of Agents': confusions, musings and desiderata, published by Mateusz Bagiński on November 16, 2023 on LessWrong. Meta: Content signposts: we talk about limits to expected utility theory; what values are (and ways in which we're confused about what values are); the need for a "generative"/developmental logic of agents (and their values); types of constraints on the "shape" of agents; relationships to FEP/active inference; and (ir)rational/(il)legitimate value change. Context: we're basically just chatting about topics of mutual interests, so the conversation is relatively free-wheeling and includes a decent amount of "creative speculation". Epistemic status: involves a bunch of "creative speculation" that we don't think is true at face value and which may or may not turn out to be useful for making progress on deconfusing our understanding of the respective territory. Expected utility theory (stated in terms of the VNM axioms or something equivalent) thinks of rational agents as composed of two "parts", i.e., beliefs and preferences. Beliefs are expressed in terms of probabilities that are being updated in the process of learning (e.g., Bayesian updating). Preferences can be expressed as an ordering over alternative states of the world or outcomes or something similar. If we assume an agent's set of preferences to satisfy the four VNM axioms (or some equivalent desiderata), then those preferences can be expressed with some real-valued utility function u and the agent will behave as if they were maximizing that u. On this account, beliefs change in response to evidence, whereas values/preferences in most cases don't. Rational behavior comes down to (behaving as if one is) ~maximizing one's preference satisfaction/expected utility. Most changes to one's preferences are detrimental to their satisfaction, so rational agents should want to keep their preferences unchanged (i.e., utility function preservation is an instrumentally convergent goal). Thus, for a preference modification to be rational, it would have to result in higher expected utility than leaving the preferences unchanged. My impression is that the most often discussed setup where this is the case involves interactions between two or more agents. For example, if you and and some other agent have somewhat conflicting preferences, you may go on a compromise where each one of you makes them preferences somewhat more similar to the preferences of the other. This costs both of you a bit of (expected subjective) utility, but less than you would lose (in expectation) if you engaged in destructive conflict. Another scenario justifying modification of one's preferences is when you realize the world is different than you expected on your priors, such that you need to abandon the old ontology and/or readjust it. If your preferences were defined in terms of (or strongly entangled with) concepts from the previous ontology, then you will also need to refactor your preferences. You think that this is a confused way to think about rationality. For example, you see self-induced/voluntary value change as something that in some cases is legitimate/rational. I'd like to elicit some of your thoughts about value change in humans. What makes a specific case of value change (il)legitimate? How is that tied to the concepts of rationality, agency, etc? Once we're done with that, we can talk more generally about arguments for why the values of an agent/system should not be fixed. Sounds good? On a meta note: I've been using the words "preference" and "value" more or less interchangeably, without giving much thought to it. Do you view them as interchangeable or would you rather first make some conceptual/terminological clarification? Sounds great! (And I'm happy to use "preferences" and "values" interc...
En este episodio de El Gallo Pódcast hablamos de un par de ladrones no muy astutos, un problema que están teniendo los fans de Only Fans y un chiquito deformado.
Hay gente que se cansó de recibir bendiciones de buenos días, hay gente triste como Bucaroman y hay gente que gana muy bien por dar "abrazos profesionales", toda esta gente está presente en el Gallo Pódcast.
Revolutionary AI Whitepaper Validated by New Neuroscience Breakthrough by Denise Holt The Future of AI is Shared, Distributed, and Multi-Scale This may seem too good to be true, but it's not. In fact, it's happening right now. It's called Active Inference AI, based on the Free Energy Principle (FEP). In December 2022, VERSES AI set forth a sweeping vision for artificial intelligence based on a distributed, collective real-time knowledge graph, comprised of Intelligent Agents operating on the physics of intelligence itself. In their whitepaper, titled “Designing Ecosystems of Intelligence from First Principles,” they propose a profound departure from standard notions of AI as a monolithic system. Authored by Chief Scientist Dr. Karl Friston and the VERSES AI research team, the paper puts forth the concept of “shared intelligence”. This represents intelligence as emerging from interactions between diverse, distributed nodes as Intelligent Agents, in which each contributes localized knowledge and unique perspectives. Read the full article here: https://deniseholt.us/revolutionary-ai-whitepaper-validated-by-new-neuroscience-breakthrough Check out all the videos in this series on our Knowledge Bank Playlist: https://youtube.com/playlist?list=PLv0h9xFwpMaLumek-HwbuP-jpAfmSWW55 Learn more on the SpatialWebAI blog - https://deniseholt.us #artificialintelligence #ActiveInference #aigovernance #explainableai #FEP
La Concejalía de Deportes del Ayuntamiento de Rincón de la Victoria ha informado de distintas actuaciones de mejoras que se están desarrollando en instalaciones deportivas del municipio. El concejal del Área, Antonio José Martín (PP), ha explicado que se trata “de seis actuaciones necesarias en equipamientos deportivos, cuatro de ellas centradas en el Pabellón Cubierto Municipal `Rubén Ruzafa´ de Torre de Benagalbón”. “Hemos llevado a cabo la limpieza y pintura de fachada, la reparación de filtración de agua al interior, y en breve se va a ejecutar la instalación de apoyos para postes de voley, y rocódromo de escalada en el pabellón”, explica el edil. El alcalde de Rincón de la Victoria, Francisco Salado (PP), ha valorado satisfactoriamente estas mejoras “que se suman a las ya realizadas, con tareas continuas de mantenimiento y conservación que faciliten la práctica deportiva en el municipio”. “Este equipo de gobierno apuesta por ofrecer a nuestros vecinos unas instalaciones municipales de nivel y óptimas para la práctica deportiva”, añade. El edil ha explicado que los trabajos de limpieza y pintura de la fachada principal del pabellón Rubén Ruzafa eran necesarios, así como el pintado de fachada. Además, se ha realizado la sustitución de pieza de unión de canalón y bajante mediante emboquillado metálico y piezas accesorias de montaje. Asimismo, en las próximas semanas se va a ejecutar un rocódromo de cuatro vías de escalada mediante estructura auxiliar metálica galvanizada y superficie de tableros, y seis soportes para montaje de postes de voley. También se ha llevado a cabo la mejora de revestimiento y pintura en el complejo deportivo Manuel Becerra. Las tareas en el campo de rugby se han centrado en la fachada mediante la reparación de fisuraciones y revestimientos desprendidos. En cuanto a la renovación del césped en las pistas de pádel del complejo deportivo Jaime Pimentel, los trabajos consistirán en la retirada de césped existente en malas condiciones y suministro y colocación de césped homologado por la Federación Española de Pádel (FEP).
We explore connections between FEP and enactivism, including tensions raised in a paper critiquing FEP from an enactivist perspective. Dr. Maxwell Ramstead provides background on enactivism emerging from autopoiesis, with a focus on embodied cognition and rejecting information processing/computational views of mind. Chris shares his journey from robotics into FEP, starting as a skeptic but becoming convinced it's the right framework. He notes there are both "high road" and "low road" versions, ranging from embodied to more radically anti-representational stances. He doesn't see a definitive fork between dynamical systems and information theory as the source of conflict. Rather, the notion of operational closure in enactivism seems to be the main sticking point. The group explores definitional issues around structure/organization, boundaries, and operational closure. Maxwell argues the generative model in FEP captures organizational dependencies akin to operational closure. The Markov blanket formalism models structural interfaces. We discuss the concept of goals in cognitive systems - Chris advocates an intentional stance perspective - using notions of goals/intentions if they help explain system dynamics. Goals emerge from beliefs about dynamical trajectories. Prof Friston provides an elegant explanation of how goal-directed behavior naturally falls out of the FEP mathematics in a particular "goldilocks" regime of system scale/dynamics. The conversation explores the idea that many systems simply act "as if" they have goals or models, without necessarily possessing explicit representations. This helps resolve tensions between enactivist and computational perspectives. Throughout the dialogue, Maxwell presses philosophical points about the FEP abolishing what he perceives as false dichotomies in cognitive science such as internalism/externalism. He is critical of enactivists' commitment to bright line divides between subject areas. Prof. Karl Friston - Inventor of the free energy principle https://scholar.google.com/citations?user=q_4u0aoAAAAJ Prof. Chris Buckley - Professor of Neural Computation at Sussex University https://scholar.google.co.uk/citations?user=nWuZ0XcAAAAJ&hl=en Dr. Maxwell Ramstead - Director of Research at VERSES https://scholar.google.ca/citations?user=ILpGOMkAAAAJ&hl=fr We address critique in this paper: Laying down a forking path: Tensions between enaction and the free energy principle (Ezequiel A. Di Paolo, Evan Thompson, Randall D. Beere) https://philosophymindscience.org/index.php/phimisci/article/download/9187/8975 Other refs: Multiscale integration: beyond internalism and externalism (Maxwell J D Ramstead) https://pubmed.ncbi.nlm.nih.gov/33627890/ MLST panel: Dr. Tim Scarfe and Dr. Keith Duggar TOC (auto generated): 0:00 - Introduction 0:41 - Defining enactivism and its variants 6:58 - The source of the conflict between dynamical systems and information theory 8:56 - Operational closure in enactivism 10:03 - Goals and intentions 12:35 - The link between dynamical systems and information theory 15:02 - Path integrals and non-equilibrium dynamics 18:38 - Operational closure defined 21:52 - Structure vs. organization in enactivism 24:24 - Markov blankets as interfaces 28:48 - Operational closure in FEP 30:28 - Structure and organization again 31:08 - Dynamics vs. information theory 33:55 - Goals and intentions emerge in the FEP mathematics 36:58 - The Good Regulator Theorem 49:30 - enactivism and its relation to ecological psychology 52:00 - Goals, intentions and beliefs 55:21 - Boundaries and meaning 58:55 - Enactivism's rejection of information theory 1:02:08 - Beliefs vs goals 1:05:06 - Ecological psychology and FEP 1:08:41 - The Good Regulator Theorem 1:18:38 - How goal-directed behavior emerges 1:23:13 - Ontological vs metaphysical boundaries 1:25:20 - Boundaries as maps 1:31:08 - Connections to the maximum entropy principle 1:33:45 - Relations to quantum and relational physics
The title says it all- Do's and Don't of the Air Force Special Warfare Pipeline. The whole team covers a lot of ground on this one from their interactions on social media to cadre/student relations, how to get a motivational tattoo and when, and a lot more. Hope you enjoy this one! 00:00 Peaches says wildly inappropriate comment, gives Aaron the giggles01:14 Aaron starts off with a "Don't"... using military language unnecessarily and unironically 06:00 Weird DMs, what the career fields owe you, Trent is contrarian, don't take things personally11:55 DO go and get a motivated tattoo, don't let your mouth outrun your brain 22:00 Trent's story about being very mean to students23:30 Don't exaggerate what you have done, Trent takes something Aaron said personally 27:40 The rabbit hole of why, Aaron's funny FEP story 34:00 Flood your masks, cheaters36:00 Hooyah, Peaches!!! And also, our guest that didn't show just sort of popped up so we endedCollabs:18A Fitness - Promo Code: 1ReadyAlpha Brew Coffee Company - Promo Code: ONESREADYATAC Fitness - Promo Code: ONESREADY10CardoMax - Promo Code: ONESREADYEberlestock - Promo Code: OR10Hoist - Promo Code: ONESREADYStrike Force Energy - Promo Code: ONESREADYTrench Coffee Company - Promo Code: ONESREADYGrey Man Gear - Promo Code: ONESREADY The content provided is for informational purposes only and does not constitute legal advice. The host, guests, and affiliated entities do not guarantee the accuracy or completeness of the information provided. The use of this podcast does not create an attorney-client relationship, and the podcast is not liable for any damages resulting from its use. Any mention of products or individuals does not constitute an endorsement. All content is protected by intellectual property laws. By accessing or using this you agree to these terms and conditions.
Patreon: https://www.patreon.com/mlst Discord: https://discord.gg/ESrGqhf5CB Join us for a fascinating discussion of the free energy principle with Dr. Maxwell Ramsted, a leading thinker exploring the intersection of math, physics, and philosophy and Director of Research at VERSES. The FEP was proposed by renowned neuroscientist Karl Friston, this principle offers a unifying theory explaining how systems maintain order and their identity. The free energy principle inverts traditional survival logic. Rather than asking what behaviors promote survival, it queries - given things exist, what must they do? The answer: minimizing free energy, or "surprise." Systems persist by constantly ensuring their internal states match anticipated states based on a model of the world. Failure to minimize surprise leads to chaos as systems dissolve into disorder. Thus, the free energy principle elucidates why lifeforms relentlessly model and predict their surroundings. It is an existential imperative counterbalancing entropy. Essentially, this principle describes the mind's pursuit of harmony between expectations and reality. Its relevance spans from cells to societies, underlying order wherever longevity is found. Our discussion explores the technical details and philosophical implications of this paradigm-shifting theory. How does it further our understanding of cognition and intelligence? What insights does it offer about the fundamental patterns and properties of existence? Can it precipitate breakthroughs in disciplines like neuroscience and artificial intelligence? Dr. Ramstead completed his Ph.D. at McGill University in Montreal, Canada in 2019, with frequent research visits to UCL in London, under the supervision of the world's most cited neuroscientist, Professor Karl Friston (UCL). YT version: https://youtu.be/8qb28P7ksyE https://scholar.google.ca/citations?user=ILpGOMkAAAAJ&hl=frhttps://spatialwebfoundation.org/team/maxwell-ramstead/https://www.linkedin.com/in/maxwell-ramstead-43a1991b7/https://twitter.com/mjdramstead VERSES AI: https://www.verses.ai/ Intro: Tim Scarfe (Ph.D) Interviewer: Keith Duggar (Ph.D MIT) TOC: 0:00:00 - Tim Intro 0:08:10 - Intro and philosophy 0:14:26 - Intro to Maxwell 0:18:00 - FEP 0:29:08 - Markov Blankets 0:51:15 - Verses AI / Applications of FEP 1:05:55 - Potential issues with deploying FEP 1:10:50 - Shared knowledge graphs 1:14:29 - XRisk / Ethics 1:24:57 - Strength of Verses 1:28:30 - Misconceptions about FEP, Physics vs philosophy/criticism 1:44:41 - Emergence / consciousness References: Principia Mathematica https://www.abebooks.co.uk/servlet/BookDetailsPL?bi=30567249049 Andy Clark's paper "Whatever Next? Predictive Brains, Situated Agents, and the Future of Cognitive Science" (Behavioral and Brain Sciences, 2013) https://pubmed.ncbi.nlm.nih.gov/23663408/ "Math Does Not Represent" by Erik Curiel https://www.youtube.com/watch?v=aA_T20HAzyY A free energy principle for generic quantum systems (Chris Fields et al) https://arxiv.org/pdf/2112.15242.pdf Designing explainable artificial intelligence with active inference https://arxiv.org/abs/2306.04025 Am I Self-Conscious? (Friston) https://www.frontiersin.org/articles/10.3389/fpsyg.2018.00579/full The Meta-Problem of Consciousness https://philarchive.org/archive/CHATMO-32v1 The Map-Territory Fallacy Fallacy https://arxiv.org/abs/2208.06924 A Technical Critique of Some Parts of the Free Energy Principle - Martin Biehl et al https://arxiv.org/abs/2001.06408 WEAK MARKOV BLANKETS IN HIGH-DIMENSIONAL, SPARSELY-COUPLED RANDOM DYNAMICAL SYSTEMS - DALTON A R SAKTHIVADIVEL https://arxiv.org/pdf/2207.07620.pdf
In the season 1 finale, Steve Maxson and Joe Rowan, Junkosha, sit down for a follow up on the availability PTFE Liners and FEP heat shrink tubing. Listen in as they share valuable insights on the supply chain and expansion activities, while also shedding light on some of the new developments at Junkosha – including their Innovator of the Year Award.Junkosha are pioneers of fluoropolymer-based technologies across many sectors including microwave interconnect and medical devices. This includes thin wall etched PTFE liners and peelable FEP heat shrink tubing for medical devices. Junkosha has three operations in Japan, including their headquarters as well as sites in the US, UK and China.For more information, visit https://www.junkosha.com/en Host: Steve Maxson | Innovation & Business Development Manager | US Extruders Guest : Joe Rowan | Advisor | Junkosha Announcer: Bill Kramer | President | US Extruders Producer/ Editor/ Original Music: Eric Adair | Marketing Manager | US ExtruderFor video episodes visit www.us-extruders.com/podcasts
Episode 93 Host(s): Jonathan Saar from Market Me Social and Mark Howell from Howl Creative Concepts Guest: Rick Ellis from Ellis Consulting Show Highlights In the dynamic world of real estate leasing, success often hinges on the exceptional qualities possessed by leasing professionals. These individuals play a pivotal role in bridging the gap between property … The Leasing Advantage of FEP Read More » The post The Leasing Advantage of FEP appeared first on JuvoHub.
WATCH: https://youtu.be/Kb5X8xOWgpc Professor Karl Friston is one of the greatest neuroscientists in history. He is Professor of Neuroscience at King's College London and holds Honorary Doctorates from the University of Zurich, University of York and Radboud University. He is the world expert on brain imaging, neuroscience, and theoretical neurobiology, and pioneers the Free-Energy Principle for action and perception, with well-over 300,000 citations. Friston received the first Young Investigators Award in Human Brain Mapping (1996) and was elected a Fellow of the Academy of Medical Sciences (1999). In 2000 he was President of the international Organization of Human Brain Mapping. In 2003 he was awarded the Minerva Golden Brain Award and was elected a Fellow of the Royal Society in 2006. He became of Fellow of the Royal Society of Biology in 2012, received the Weldon Memorial prize and Medal in 2013 for contributions to mathematical biology and was elected as a member of EMBO (excellence in the life sciences) in 2014 and the Academia Europaea in (2015). He was the 2016 recipient of the Charles Branch Award for unparalleled breakthroughs in Brain Research and the Glass Brain Award - a lifetime achievement award in the field of human brain mapping. EPISODE LINKS: - Karl's Website: https://www.fil.ion.ucl.ac.uk/~karl/ - Karl's Books: https://www.amazon.co.uk/Books-Karl-J-Friston/s?rh=n%3A266239%2Cp_27%3AKarl+J.+Friston - Karl's Publications: https://scholar.google.co.uk/citations?user=q_4u0aoAAAAJ&hl=en - Karl's Wiki: https://en.wikipedia.org/wiki/Karl_J._Friston CONNECT: - Website: https://tevinnaidu.com - Instagram: https://instagram.com/drtevinnaidu - Facebook: https://facebook.com/drtevinnaidu - Twitter: https://twitter.com/drtevinnaidu - LinkedIn: https://linkedin.com/in/drtevinnaidu TIMESTAMPS: (0:00) - Introduction (0:47) - I am, Therefore I Think (212) - Free Energy Principle (FEP), Bayesian Brain & Active Inference (6:19) - FEP Formalism & Being a Polymath (12:10) - Computational Psychiatry & Psychopathology (18:01) - Psychosis & Illusions (Priors vs Posteriors) (24:33) - Does FEP defend Illusionism? (31:49) - What is Consciousness? (44:55) - Working with Chris Frith & Mark Solms (51:38) - Markov Blankets (57:22) - Using Markov Blankets to understand Neural Networks (1:07:08) - Work of Chris Fields, Michael Levin and others (1:10:58) - Bridging the Gap (Multidisciplinary Approaches) (1:14:26) - Potential hindrances to identifying Markov blankets (1:2027) - Future of FEP (3 Directions of Travel) (1:30:22) - Markov Blankets, The Self & Free Will (1:35:41) - Meaning of Life (1:42:44) - Who Inspires Karl Friston? (Helmholtz & Feynman) (1:53:52) - Will Karl ever write an "easy read"? (1:56:52) - Karl's recommended reading (2:01:09) - Conclusion Website · YouTube
The Fundraising Effectiveness Project's Annual Report findings were a bit of a surprise to most nonprofits. For the first time in years, the FEP found a decline in not only the number of donors, but also a decline in total dollars given in 2022. In this episode of GoBeyondFundraising, we chat with Pursuant SVP of analytics, Matthew Mielcarek to glean his insights about what the new FEP report findings mean for nonprofits as well as dig into donor data.
Fresh trends, tips, and tactics from the fundraising frontlines!Never underestimate the strategic opportunities of conferences for fundraisers! To fully understand the demands and changing realities of successful nonprofit fundraising, we headed to AFP Icon 2023 to explore what's on offer. And we can say without a doubt, this year, a lot is changing!After spending time networking and learning from experts in the sector, to educational sessions and a partner expo spotlighting all the new tools available, we have some exciting new trends, directions, and a few unsettling realities, to share. From an eye-opening panel session with the Fundraising Effectiveness Project we share a glimpse of a challenging financial future, and unpack some strategies to minimize potential impacts. The FEP releases quarterly findings on giving trends, via downloadable reports here afpfep.org, or in a free online dashboard. We also unpack Payment Options and Partnerships, two big topics of conversation, but it's Omnichannel Communications that really got us excited! So, don't miss a trend, trick, or tactic, and tune in to keep up with everything the nonprofit fundraising professional needs on their radar!The Nonprofit Podcast is available every Thursday on all your favorite podcast platforms, so follow, rate, and download so you never miss an episode:
Los detalles, secretos , todo lo sucedido en el FEP 2023.
Trajimos remedio para el guayabo musical de no ver a Blink-182 este año en Colombia: Hablamos de los artistas que sí podrían visitar el barrio, más lo que fue la noche de Motley Crue junto a Def Leppard y lo que nos espera en el FEP.
Welcome to The Nonlinear Library, where we use Text-to-Speech software to convert the best writing from the Rationalist and EA communities into audio. This is: Why I'm not into the Free Energy Principle, published by Steven Byrnes on March 2, 2023 on LessWrong. 0. But first, some things I do like, that are appropriately emphasized in the FEP-adjacent literature I like the idea that in humans, the cortex (and the cortex specifically, in conjunction with the thalamus, but definitely not the whole brain IMO) has a generative model that's making explicit predictions about upcoming sensory inputs, and is updating that generative model on the prediction errors. For example, as I see the ball falling towards the ground, I'm expecting it to bounce; if it doesn't bounce, then the next time I see it falling, I'll expect it to not bounce. This idea is called “self-supervised learning” in ML. AFAICT this idea is uncontroversial in neuroscience, and is widely endorsed even by people very far from the FEP-sphere like Jeff Hawkins and Randall O'Reilly and Yann LeCun. Well at any rate, I for one think it's true. I like the (related) idea that the human cortex interprets sensory inputs by matching them to a corresponding generative model, in a way that's at least loosely analogous to probabilistic inference. For example, in the neon color spreading optical illusion below, the thing you “see” is a generative model that includes a blue-tinted solid circle, even though that circle is not directly present in the visual stimulus. (The background is in fact uniformly white.) I like the (related) idea that my own actions are part of this generative model. For example, if I believe I am about to stand up, then I predict that my head is about to move, that my chair is about to shift, etc.—and part of that is a prediction that my own muscles will in fact execute the planned maneuvers. So just to be explicit, the following seems perfectly fine to me: First you say “Hmm, I think maybe the thalamocortical system in the mammalian brain processes sensory inputs via approximate Bayesian inference”, and then you start doing a bunch of calculations related to that, and maybe you'll even find that some of those calculations involve a term labeled “variational free energy”. OK cool, good luck with that, I have no objections. (Or if I do, they're outside the scope of this post.) My complaint here is about the Free Energy Principle as originally conceived by Friston, i.e. as a grand unified theory of the whole brain, even including things like the circuit deep in your brainstem that regulates your heart rate. OK, now that we're hopefully on the same page about exactly what I am and am not ranting about, let the rant begin! 1. The Free Energy Principle is an unfalsifiable tautology It is widely accepted that FEP is an unfalsifiable tautology, including by proponents—see for example Beren Millidge, or Friston himself. By the same token, once we find a computer-verified proof of any math theorem, we have revealed that it too is an unfalsifiable tautology. Even Fermat's Last Theorem is now known to be a direct logical consequence of the axioms of math—arguably just a fancy way of writing 0=0. So again, FEP is an unfalsifiable tautology. What does that mean in practice? Well, It means that I am entitled to never think about FEP. Anything that you can derive from FEP, you can derive directly from the same (very basic and uncontroversial) underlying premises from which FEP itself can be proven, without ever mentioning FEP. So the question is really whether FEP is helpful. Here are two possible analogies: (1) Noether's Theorem (if the laws of physics have a symmetry, they also have a corresponding conservation law) is also an unfalsifiable tautology. (2) The pointless bit of math trivia 2592=2592 is also an unfalsifiable tautology. In both cases, I don't have to mention these facts. But in the case of (1)—but not (2)—I want to. More specifically, here's a very specific ...
Scott Shepard - Fellow at the National Center as well as the director of the National Center's Free Enterprise Project - joined Jeff Katz to talk about the FEP lawsuit against Starbucks for their racist practice of tying executive pay to DEI hiring quotas and more.
Born to parents who loved travelling; her father started working for Baron Charles Forte as a valet at the age of 16 and stayed loyal all his working life. The family spent time on many of the Trusthouse Forte properties or travelled around France in a small van. Becky worked as a model in her young years and unfortunately ended up in an abusive marriageToday, Becky Mullins is the Director at We are FEP, a London based creative production agency in East London an in-house photo studio. She has many years of experience in the PR and media industry. The company works with brands on all creative shoot content and event production beginning with concept through to producing high calibre outstanding experiences including runway shows, event production, product and brand launches, pop ups, and parties. They enable brands to create innovative, engaging content and memorable events. From small intimate experiences to large full scale productions.https://wearefep.com/
November 24th, 2022 - Happy Thanksgiving! It's been another year of change and uncertainty, but if anything, our bonds and connection have only grown stronger. We have so much to be grateful for and so many people in our community to whom we give thanks. Listen to learn more. A gift for you: Fep's video Welcome to The Freedom Story podcast where we bring you our weekly updates, in audio version. For more information, please visit www.thefreedomstory.org. --- Send in a voice message: https://anchor.fm/thefreedomstory/message Support this podcast: https://anchor.fm/thefreedomstory/support
Dos fechas de Guns and Roses en Bogotá al tiempo que se anunció el cartel FEP 2023. Trajimos historias, rumores y esas cosas que solo están en Péguelo!
Scott Shepard is a fellow at the National Center for Public Policy Research and the director of the Center's Freedom Enterprise Project or FEP – which is the conservative movement's only full-service shareholder activism and education program. He is one of the true pioneers in shareholder activism from more conservative, traditional shareholders and is a voice for Main Street. Scott talks about the shareholder proposals FEP put forward this year and share with us the key issues facing Main Streeters as they stare down Woke Inc. FEP Values Voter Guide 2022FEP Balancing the Boardroom 2022Find us at mainstreetinsiders.com
스튜디오 팟캐스트 과학하고 앉아있네 시즌 2-11 댁들은 지구온난화에 대해 아무것도 모르고 있다! feat. FEP 융합연구단 이재구 단장 - 오프닝 다보스 포럼의 기술사회 경고 윤초의 신비! - 뉴튼의 발가락 한국에너지기술연구원 초청정-고효율 연료다변화형 미래에너지 생산기술개발 융합연구단 혹은 퓨처에너지플랜트 연구단, 줄여서 FEP, 혹은 지구온난화 연구단의 이재구 단장 을 모시고 온실효과와 온난화의 실상, 그리고 이에 대비하는 각종 신박한 대책에 대해 유익하고 재미있는 이야기를 나눠 봅니다. 그리고, 우리나라도 열심히 연구 및 대비하고 있다는 사실. - 아인슈타인의 화장실은 이번에도 없어요 과학과 사람들 제공
How long should we continue antipsychotic treatment in FEP? This episode discusses the long-term treatment of FEP, including the duration of antipsychotic treatment and the effects of dose reduction, the pros and cons of antipsychotic treatment, and the importance of collaborative treatment. Faculty: Stephen Marder, M.D. Host: Jessica Diaz, M.D. Learn more about Premium Membership here Earn 0.75 CMEs: Assessment and Management of First Episode of Psychosis Long-Term Treatment of FEP