
Free Daily Podcast Summary
by Tom Norman
Get key takeaways, quotes, and insights from Talking HTML in a 5-minute read. Delivered straight to your inbox.
The most recent episodes — sign up to get AI-powered summaries of each one.
Big Daddy takes the team on a field trip to show them a ghost, but is it a trap? Only the ghost knows. A giant slug was the source of the moan Clawing Kain right down to the bone Upon death, an explosion Raining acidic corrosion Until Abed dropped like a stone. Wanderer’s Guide: https://wanderersguide.app/Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945Genius (Crew): https://wanderersguide.app/profile/characters/370156Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089Patreon: https://patreon.com/2nerds1quest The post Pathfinder Session 14: Bard Door Reach-Around appeared first on Schaffen Creative.
The team delves deeper through the basement and finds themselves confronted by Big Daddy. Surely he can’t be one of their real fathers, can he? Wanderer’s Guide: https://wanderersguide.app/Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945Genius (Crew): https://wanderersguide.app/profile/characters/370156Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089Patreon: https://patreon.com/2nerds1quest The post Pathfinder Session 13: Too Much Puke, Not Enough Dixie Cups appeared first on Schaffen Creative.
Now that the team has moved down a level, things start to get interesting. There’s definitely more than meets the eye in building. Since the party was tired and sore,We decided to rest and restore.Ready for the new dayWithout further delayWe head down to a whole ’nother floor. Wanderer’s Guide: https://wanderersguide.app/Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945Genius (Crew): https://wanderersguide.app/profile/characters/370156Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089Patreon: https://patreon.com/2nerds1quest The post Pathfinder Session 12: Wear Rubber Gloves Around Abed appeared first on Schaffen Creative.
The team is finding that there are way more questions than answers as they traverse the Gauntlight. After finding the blood pool they decide to camp in the run down building instead of heading back to town, but will it be to their detriment? While exploring the Gauntlight at nightFound a Brownie with his dancing lightBut then back in the towerA bloody statue with powerThat pulls blood from Kain’s skin, that’s not right! Wanderer’s Guide: https://wanderersguide.app/Norm (Abed Klatch): https://wanderersguide.app/profile/characters/303945Genius (Crew): https://wanderersguide.app/profile/characters/370156Kooch (Lady Syl): https://wanderersguide.app/profile/characters/303934Rick (Jacob Kain): https://wanderersguide.app/profile/characters/324089Patreon: https://patreon.com/2nerds1quest The post Pathfinder Campaign Session 11: Vial of Yum appeared first on Schaffen Creative.
The show is down 2 members, so Norm and Kooch take the reins and discuss their characters, leveling up, motivations and the story in general. They also discuss Obi-Wan Kenobi on Disney Plus, music and a few video game comments sprinkled in for good measure. Patreon: https://patreon.com/2nerds1questMyron “Doug” Bloodbeak: https://www.dndbeyond.com/characters/61987353Krixis Rubicon: https://www.dndbeyond.com/characters/32635458Jakob “The Kid” d’Orien: https://www.dndbeyond.com/characters/62848067Twitter: https://twitter.com/2nerds1questWebsite: https://SchaffenCreative.com/2-nerds-1-quest/Merch Store: https://2-nerds-1-quest.creator-spring.com/ The post Just Chatting: The Shaquille O’Neal Of Birds appeared first on Schaffen Creative.
The position property specifies the type of positioning method used for an element. There are five different position values: Static, Relative, Fixed, Absolute, Sticky Properties: top, bottom, left, right, z-index, clip (Clips an absolutely positioned element) Static HTML elements are positioned static by default. Static positioned elements are not affected by the top, bottom, left, and right properties. An element with position: static; is not positioned in any special way; it is always positioned according to the normal flow of the page: Relative positioned relative to its normal position. Setting the top, right, bottom, and left properties of a relatively-positioned element will cause it to be adjusted away from its normal position. Other content will not be adjusted to fit into any gap left by the element. Fixed positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. The top, right, bottom, and left properties are used to position the element. A fixed element does not leave a gap in the page where it would normally have been located. Absolute positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling. Sticky positioned based on the user’s scroll position. A sticky element toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport – then it “sticks” in place (like position:fixed). Overlapping Elements When elements are positioned, they can overlap other elements. The z-index property specifies the stack order of an element (which element should be placed in front of, or behind, the others). An element can have a positive or negative stack order. An element with greater stack order is always in front of an element with a lower stack order. Note: If two positioned elements overlap without a z-index specified, the element positioned last in the HTML code will be shown on top. Live Show on Twitch: twitch.tv/tommnormYouTube: https://www.youtube.com/channel/UCtDzxDS1j6_5APr6bfQLQLQTwitter: @schaffencreate & @tommnorman <html> <head> <link rel="stylesheet" href="screen.css"> </head> <body> <div id="box-1"> <h2>BOX 1</h2> <div id="box-2"> <h2>BOX 2</h2> <div id="box-3"> <h2>BOX 3</h2> </div> </div> </div> <div id="box-4"></div> </body> </html> /* CSS RESET https://dev.to/hankchizljaw/a-modern-css-reset-6p3 */ /* Box sizing rules */ *,*::before,*::after { box-sizing: border-box; } /* Remove default padding */ ul[class],ol[class] { padding: 0; } /* Remove default margin */ body,h1,h2,h3,h4,p,ul[class],ol[class],li,figure,figcaption,blockquote,dl,dd { margin: 0; } /* Reset default font size */ h1,h2,h3,h4,p,li,figcaption,blockquote,dl,dd { font-size: 10px; } /* Set core body defaults */ body { min-height: 100vh; scroll-behavior: smooth; text-rendering: optimizeSpeed; line-height: 1.5; } /* Remove list styles on ul, ol elements with a class attribute */ ul[class],ol[class] { list-style: none; } /* A elements that don't have a class get default styles */ a:not([class]) { text-decoration-skip-ink: auto; } /* Make images easier to work with */ img { max-width: 100%; display: block; } /* Natural flow and rhythm in articles by default */ article > * + * { margin-top: 1em; } /* Inherit fonts for inputs and buttons */ input,button,textarea,select { font: inherit; } /* Remove all animations and transitions for people that prefer not to see them */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* END CSS RESET */ #box-1 { display:block; border:1px solid #000; background: black; height: 500px; width:500px; margin: 10% 0 0 10%; } #box-1 h2 { font-size: 3em; color: white; } #box-2 { display:block; border:1
The first episode in quite a long time. The first 10 minutes or so are a general welcome statement and update while the last 35 mins are a tutorial on how to edit and update WordPress posts and pages. I’m a bit rusty so hopefully it’s not too hard on your ears. Look for more shows coming soon. WordPress and Gutenberg Tutorial by Packerland Websites: https://youtu.be/dKOgg7ULPB4 Discord Channel: https://discord.gg/p5masyrFaW Patreon Support: Coming Soon Twitter: @tommnorman & @schaffencreate Website: SchaffenCreative.com Packerland Websites: PackerlandWebsites.com The post Eps 37: Welcome and WordPress Tutorial appeared first on Schaffen Creative.
In this session Aronan, Elli and Alphonse defend Butterskull Ranch from several Orcs and a White Dragon. Character creation tool: https://dndbeyond.comAronan: Character SheetTwitter: https://twitter.com/2nerds1questWebsite: SchaffenCreative.com/2-nerds-1-quest/ The post Session 10 – Captain Butterskull Himself appeared first on Schaffen Creative.
Free AI-powered daily recaps. Key takeaways, quotes, and mentions — in a 5-minute read.
Get Free Summaries →Free forever for up to 3 podcasts. No credit card required.
Listeners also like.
This is an audio online podcast thing for the beginner coder. HTML, CSS, WordPress and other topics will be discussed as well as video tutorials and live feeds. Maybe even some interviews.
AI-powered recaps with compact key takeaways, quotes, and insights.
Get key takeaways from Talking HTML in a 5-minute read.
Stay current on your favorite podcasts without falling behind.
It's a free AI-powered email that summarizes new episodes of Talking HTML as soon as they're published. You get the key takeaways, notable quotes, and links & mentions — all in a quick read.
When a new episode drops, our AI transcribes and analyzes it, then generates a personalized summary tailored to your interests and profession. It's delivered to your inbox every morning.
No. Podzilla is an independent service that summarizes publicly available podcast content. We're not affiliated with or endorsed by Tom Norman.
Absolutely! The free plan covers up to 3 podcasts. Upgrade to Pro for 15, or Premium for 50. Browse our full catalog at /podcasts.
Talking HTML publishes biweekly. Our AI generates a summary within hours of each new episode.
Talking HTML covers topics including Technology, Education, How To. Our AI identifies the specific themes in each episode and highlights what matters most to you.
Free forever for up to 3 podcasts. No credit card required.
Free forever for up to 3 podcasts. No credit card required.