The Power Of Pen And Paper Sketching — Smashing Magazine
When designing for digital spaces, it’s natural to default to digital mockup tools, but doing so cuts out a world of possibilities. Analog drawing can unleash your imagination and allow you to focus on what’s most important at the start: the ideas.

Boilerform
Boilerform is a little HTML and CSS boilerplate to take the pain away from working with forms.
SQL users: The QUALIFY clause is pure syntactic sugar
https://modern-sql.com/caniuse/qualify
Using a window function, we could add in a new column total_order_amount which represents the total order amount per customer. We could simply write:
SELECT
date,
customer,
order_amount,
SUM(order_amount) OVER(PARTITION BY customer) AS total_order_amount
FROM orders
ORDER BY date
the window function SUM(order_amount) OVER(PARTITION BY customer) effectively partitioned our table into different “windows” (one for each customer) and then calculated the total_order_amount for each of these windows. All of this was achieved without using a GROUP BY aggregation, allowing us to retain the same number of rows.
The relative font weight axis — how variable fonts ease font weight transitions | Stefan Judis Web Development
Variable fonts with a custom relative font weight axis ("GRAD") help to avoid layout shifts when transitioning font-weight.
The paint order of SVG elements and their stroke and fill is configurable | Stefan Judis Web Development
Control the paint order of path and fill using the paint-order presentation attribute or CSS property
In this case, I usually changed the path or width/height of the given element to avoid the stroke going over the filled area too much. But it turns out that you can change the paint order of fill and stroke using paint-order.
The default order is described via the normal value, and it defines that fill will be painted first, then the stroke, and finally the markers. But you can redefine the paint order so that the stroke is not painted over the fill area with stroke fill markers.
Chat with Document(s) using OpenAI ChatGPT API and Text Embedding
The short answer is that they convert documents that are over 100 or even 1,000 pages long into a numeric representation of data and related context (vector embedding) and store them in a vector search engine.

- Extending ChatGPT With LlamaIndex (GPT Index)
LlamaIndex, also known as the GPT Index, is a project that provides a central interface to connect your LLMs with external data. Yeah, you read that correctly. With LlamaIndex, we can build something that looks like the illustration below:
How to build a Chatbot with ChatGPT API and a Conversational Memory in Python | by Avra | Mar, 2023 | Medium
🧠 Memory Bot 🤖 — An easy up-to-date implementation of ChatGPT API, the GPT-3.5-Turbo model, with LangChain AI's 🦜 — ConversationChain memory module with Streamlit front-end. With the emergence of…
Ionicons: Premium Open Source Icon Pack for Ionic Framework
Ionicons is an open-sourced, and MIT-licensed icon pack. Download our premium designed icons for use in web, iOS, Android, and desktop apps.
How To Master Lighting In Midjourney V5 | by Paul DelSignore | The Generator | Mar, 2023 | Medium
Amazing Lighting Effects Introduced In MidJourney V5. “How To Master Lighting In Midjourney V5” is published by Paul DelSignore in The Generator.
[doc] Is there a way to open FH with :utf8 flag? · Issue #19059 · Perl/perl5 · GitHub
Where IO::Handle Description I did not find how to open file with :utf8 flag.
https://perldoc.perl.org/Encode#UTF-8-vs.-utf8-vs.-UTF8
https://www.effectiveperlprogramming.com/2011/08/know-the-difference-between-utf8-and-utf-8/
How To Build Your Own Custom ChatGPT With Custom Knowledge Base
Wouldn't it be nice if you could selectively choose your data sources and feed that information into ChatGPT conversation with your data with ease?
How to Create a Style or Character in Midjourney, That you can Then Prompt with a Single Word. | by John Walter 📣 | AI Art Creators | Feb, 2023 | Medium
How to Create a Style or Character in Midjourney, That you can Then Prompt with a Single Word.. A hack you won’t find in the official documentation.
Free Catchy Title Generator Tool: Boost Your Content Marketing with Creative Headlines
Looking for a free and easy way to come up with catchy titles for your content? Try our free catchy title generator tool! Our tool uses AI and natural language processing to generate unique and engaging titles for your blog posts, articles, social media posts, and more. With our tool, you can save time and boost your content's visibility and engagement. Try it now and see the difference it can make for your content marketing strategy!
These crispy, oven roasted potatoes are better than fries
- Kosher salt or sea salt
- 1 tablespoon baking soda
- 4-5 medium Russet potatoes, peeled and cut into 2- to 3-inch chunks (about 6 to 8 chunks per potato)
- 3 tablespoons olive oil
- Preheat the oven to 425 F. Line a large baking sheet with parchment paper.
- Bring a large pot of water to a boil over high heat. Add 1 tablespoon of salt and the baking soda and return to a boil. Add the potatoes and return to a boil. Reduce the heat to medium and simmer for 10 minutes, until a knife inserted into the center of a potato chunk slides in with little resistance. Drain the potatoes carefully and let them rest in the strainer for 30 seconds to allow excess moisture to evaporate.
- Meanwhile, in a large bowl, whisk together the oil, onion powder, garlic powder, ½ teaspoon salt and ¼ teaspoon black pepper.
- Transfer the potatoes to the bowl and toss to coat. Vigorously shake the bowl to rough up the outside of the potato chunks. The outside of each chunk should have a thick layer of smashed potato on it. Transfer the potatoes to the prepared pan and spread them out so the pieces aren’t touching each other. If necessary, use two baking sheets.
- Roast for 20 minutes. Flip and roast for 20 to 25 more minutes, until the potatoes are dark golden and crisp, shaking the pan a few times during cooking.
Tips for Ripping Wood
Build a Push Sled
To make a push sled, rip your board as you normally would by sliding it against the fence extension. When you get within reach of your push sled, hook the sled behind the board you're ripping and push it through, just like you would if you were using a regular push stick.

Apple Design Resources - Apple Developer
Design apps quickly by using Sketch and Photoshop templates, plug-ins, and preconfigured UI elements.
GitHub Flavored Markdown Spec
GitHub Flavored Markdown, often shortened as GFM, is the dialect of Markdown that is currently supported for user content on GitHub.com and GitHub Enterprise.
This formal specification, based on the CommonMark Spec, defines the syntax and semantics of this dialect.
GFM is a strict superset of CommonMark. All the features which are supported in GitHub user content and that are not specified on the original CommonMark Spec are hence known as extensions, and highlighted as such.
I wish Asciidoc was more popular
I've been using Markdown for a long time, and have grown accustomed to it. It has various quirks, features, and oddities, but what doesn't. But recently I decided to take a look at Asciidoc, a Markdown "competetor". I found it a great little document toolchain, but it won't replace Markdown.