I’m not a sports fan, but wow, this is good. A growth mindset reframes failure… “When you work toward your goal, you’re taking steps to success.” pic.twitter.com/S6LFQoHw5y — Brian Solis (@briansolis) April 28, 2023Thanks, Dave Mayer, for sending this to me. Source link
This year’s New York International Antiquarian Book Fair is my third, following the 2022 book fair and, just days before lockdown, the 2020 book fair. Three hardly makes me an expert, even in my specialization of architecture books, but it does help with gauging the value given to books on the subject and getting a sense of […]
In this moment when Invisibilia is forced to stop production, the team says goodbye by doing what Invisibilia does best: thinking hard about goodbyes. In this episode, we offer a bouquet of meditations on these tricky moments of departure. We’ll miss you. To keep in touch with our team members who are leaving NPR, you […]
#267: Don’t Run Servers April 26th, 2023 · 29 minutes Modern Apple devices offer incredible power — use it! This episode of Under the Radar is sponsored by: Indeed: Join more than three million businesses worldwide using Indeed to hire great talent fast. Stream this episode Source link
Chris Heivly released Build the Fort: The Startup Community Builder’s Field Guide. I encourage you to get Chris’s book if you are a startup community builder or are interested in startup communities. When Ian Hathaway and I started working on The Startup Community Way: Evolving an Entrepreneurial Ecosystem, we initially talked to Chris about writing […]
GitHub Next has this cool project that is basically Copilot for the CLI (command line interface). You can sign up for their waitlist at the Copilot for CLI site. Copilot for CLI provides three shell commands: ??, git? and gh? This is cool and all, but I use PowerShell. Turns out these ?? […]
A singular goal. To release as quickly as humanly possible. Laser-sharp focus. Make the most of Zoom’s new Layers API. A daring vision. To give Zoom users better meetings. The Prezi way. All of these, in many ways, are a testament to Prezi’s long history of wanting to turn the boring, the mundane, into engaging, […]
Microsoft T-SQL supports a language feature called table-valued parameter (TVP), which is a parameter of a table type that can be passed to a stored procedure or function. For example, you may write: CREATE TYPE u_number_table AS TABLE (column_value INTEGER); CREATE FUNCTION f_cross_multiply ( @numbers u_number_table READONLY ) RETURNS @result TABLE ( i1 INTEGER, i2 […]
On this week’s episode of the Android Central Podcast, Shruti Shekar is joined by Nick Sutrich, Andrew Myrick, Derrek Lee, Jerry Hildenbrand, Michael Hicks, Harish Jonnalagadda and Namerah Saud Fatmi to celebrate the Android Central Podcast’s milestone and discuss the next generation of smart watches, the lack of support for Android by certain manufacturers, whether […]
TL;DR Encapsulate your composable functions and associated types with a surrounding object and use the operator fun invoke of that object as your composable function. This is a convenient convention for complex components. Details Complex Composable functions often require numerous associated types for their implementation: state holders, UI models, default values, etc. While it does […]