More from Good Enough
The second half of 2024 was definitely an inflection point in the world of software. Large Language Models (LLMs) and generative AI started to permeate products everywhere, from chatbots to operating systems, and at times it felt like everyone was taking part in a race to integrate some AI feature or other into their product. This seems to have been particularly true in the world of customer support. Whole businesses seem to have pivoted, turning AI into their central feature as if their very lives depended on it. Some taglines from well-known companies leave no doubt: The best AI Agent and AI-first Customer Service Platform Try our new AI integration! AI-first service. ... and I can see the appeal for some businesses. But personally, I hate talking to bot or AI customer service tools. Is there anything more frustrating than carefully explaining your issue, then inexplicably being railroaded through some set of pointless questions or regurgitated knowledge-base articles, desperately hoping that if you can only jump through all these hoops like a good little boy, you might be able to eventually get in touch with an actual person who can actually read and understand your question and actually help you at the end of the tortuous process? It makes my blood boil! And as these big players double down on AI, it feels clearer than ever that they are really only focussed on customers who are so big that they don’t need to care how frustrating their support processes are. Companies for whom support is a cost centre they are trying to minimise. Jelly takes a different position. Jelly is about connecting actual people having actual conversations — support requests, questions, and all other kinds of collaboration. We're a small company, too. We know that the communication between us and our customers, existing or potential, will be one of the biggest factors in our success. There's no way we want an AI agent representing us in those vital conversations. Our bet is that there are thousands of other small companies and groups who neither need nor want an AI agent sitting between them and the people they want to communicate with. If you've been looking for a way for your team to share an inbox and work together to talk to your users, customers, clients, collaborators, and anyone else -- try Jelly. It's the simplest, most elegant, most humane way to work on email as a team.
While building Pika’s Stream of posts layout, we had need to add the capability to manage excerpts in the Pika editor. These excerpts would be used to show a small portion of your post in a post stream while offering a “continue reading” link for readers to click to read the rest of your post. To add this capability we had to dig into extending the base open source library for our editor, Tiptap. First the Tiptap part Below is the full code of the extension. Primarily the extension detects if the user types {{ excerpt }}, {{ more }}, or WordPress’s <!--more--> and replaces that text with: <div data-type="excerpt" class="post-excerpt" contenteditable="false" draggable="true">↑ Excerpt ↑</div> With that HTML, we use CSS to style things like so: This extension is smart enough to know if an excerpt already exists in the editor, in that case disallowing another excerpt being created. The extension: import { Node, InputRule, nodeInputRule, mergeAttributes } from '@tiptap/core' /** * Look for on a line by itself, with all the whitespace permutations */ export const excerptInputRegex = /^\s*{{\s*excerpt\s*}}\s*$/i /** * Look for on a line by itself, with all the whitespace permutations */ export const moreInputRegex = /^\s*{{\s*more\s*}}\s*$/i /** * Look for classic WordPress <!--more--> tag */ export const wpMoreInputRegex = /^\s*<*![-—]+\s*more\s*[-—]+>\s*$/i const excerptText = '↑ Excerpt ↑' /** * Used to detect if an excerpt already exists in the editor */ const hasExistingExcerpt = (state) => { let hasExcerpt = false state.doc.descendants(node => { if (node.type.name === 'excerpt') { hasExcerpt = true return false // stop traversing } }) return hasExcerpt } /** * Disable excerpt button in toolbar if excerpt already exists in * the editor. Note that we use Tiptap with the Rhino editor for * Rails, which explains the rhino-editor selectors. Rhino: * https://rhino-editor.vercel.app/ */ const setExcerptButtonState = (editor) => { const button = editor.view.dom.closest('rhino-editor').querySelector('rhino-editor button[data-excerpt]') if (button) { button.classList.toggle('toolbar__button--disable', hasExistingExcerpt(editor.state)) button.disabled = hasExistingExcerpt(editor.state) } } /** * This custom InputRule allows us to make a singleton excerpt node * that short-circuits if an excerpt node already exists. */ export function excerptInputRule(config) { return new InputRule({ find: config.find, handler: ({ state, range, match }) => { if (hasExistingExcerpt(state)) { return } const delegate = nodeInputRule({ find: config.find, type: config.type, }) delegate.handler({ state, range, match }) }, }) } export const Excerpt = Node.create({ name: 'excerpt', group: 'block', content: 'inline+', inline: false, isolating: true, atom: true, draggable: true, selectable: true, onCreate() { setExcerptButtonState(this.editor) }, onUpdate() { setExcerptButtonState(this.editor) }, parseHTML () { return [{ tag: 'div[data-type="excerpt"]' }] }, renderHTML ({ HTMLAttributes }) { return ['div', mergeAttributes({ 'data-type': 'excerpt', class: 'post-excerpt' }, HTMLAttributes), excerptText] }, /** * Add insertExcerpt command that we can call from our custom * toolbar buttons. This command checks for an existing excerpt * before inserting a new one. */ addCommands() { return { insertExcerpt: () => ({ state, commands }) => { if (hasExistingExcerpt(state)) { return false } return commands.insertContent({ type: this.name, content: [{ type: 'text', text: excerptText }] }) }, } }, /** * Set up various detection for {{ excerpt }} etc text. */ addInputRules() { return [ excerptInputRule({ find: excerptInputRegex, type: this.type, }), excerptInputRule({ find: moreInputRegex, type: this.type, }), excerptInputRule({ find: wpMoreInputRegex, type: this.type, }), ] }, }) Now for the Rails part This will obviously need modified depending on your Tiptap environment. In our case, using the Rhino editor with Rails, here’s what we do… app/javascript/controllers/extensions/excerpt.js is where our extensions directory lives. We use importmaps to manage our JavaScript, so we need to pin our extensions directory there: pin_all_from "app/javascript/extensions", under: "extensions" We have a Stimulus controller for all of our Rhino enhancements. We need to import our extension there: import { Excerpt } from "extensions/excerpt" To add the extension, we do this in the function that we use to do all of our Rhino initialization (we pass the Rhino editor into this function): initializeEditor(rhino) { // snip rhino.addExtensions(Excerpt) // snip } And we add one function, which we will later call with our new Rhino toolbar button. This function calls the insertExcerpt command that we defined in our extension. insertExcerpt() { this.element.editor.chain().focus().insertExcerpt().run() } And finally here’s the button we add to our Rhino toolbar. Notice the data-action="click->rhino#insertExcerpt", which is calling the function above: <button slot="after-increase-indentation-button" class="rhino-toolbar-button toolbar__button--excerpt" type="button" data-role-tooltip="rhino-insert-excerpt" data-action="click->rhino#insertExcerpt" data-excerpt data-role="toolbar-item" tabindex="-1"> <role-tooltip class="toolbar__tooltip" id="rhino-insert-excerpt" part="toolbar__tooltip toolbar__tooltip--create-excerpt" exportparts="base:toolbar__tooltip__base, arrow:toolbar__tooltip__arrow"> Create Excerpt </role-tooltip> <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" part="toolbar__icon" viewBox="0 0 24 24" width="24" height="24" style="pointer-events: none;"> <path d="SNIP"/> </svg> </button> This is by no means a drop-in extension, but hopefully it helps someone else who is wanting to add this excerpt functionality to their Tiptap editor.
When Good Enough was in its infancy as a truly American LLC (formed in Delaware and representing one or two people who were only semi-serious about a business), it was fun to play around with building websites. Shawn and I were truly just playing and exploring, more than anything reminding ourselves that building software could be a satisfying activity. After a year of goofing around we were still enjoying it, but we were also running up against our limitations. Some things we were okay at, but many of our skills just weren’t that impressive. So began the journey to Good Enough’s next phase: a collective of Good Enough people. We could make some cool, if janky, web toys alone, but with a few more people to play with… Along came Lettini and Patrick and James and Cade. Each of us with a different set of skills and a different set of weaknesses. Things definitely did become a lot more interesting once we teamed up! When my weaknesses got in the way, there was someone else to step into that gap and show me how it’s done. Hopefully others agree that I’m able to help them in some of the areas where I have a little more experience. 🤞 That’s enough reading for you; now it’s time to listen. Lettini, James, and I were recently asked to have a conversation on the IndieRails podcast. We are very thankful to Jeremy and Jess for this opportunity to talk about some of Good Enough’s short history. And luckily for you, we hardly talk about Rails at all! Throughout our lovely discussion, the power of a team filled with complimentary skills kept resurfacing in my head. This experience cannot be recreated as a solo dev or by working on some project in my garage. The times where our skills don’t overlap makes this whole Good Enough experiment lovely and worthwhile. To my teammates, I thank you. You complete me!
Yesterday, Lettini took a chance and posted about Jelly on Hacker News, a discussion site notorious for it's mercurial population of tech-maybe-too-saavy experts. Jelly is a tough sell for some of them, those with the technical skill to pipe email at a low level through custom-built filters running on their own cloud servers. I'm not going to lie to you. I was pretty nervous. And yet... Jelly at the top of Hacker News last night. At the time of writing, we've had over 100 comments and 281 "points" We got a really lovely response! It was also a great opportunity for us to practice talking about Jelly, about why we built it, what it stands for, and why people should consider it over other tools or workflows. It gave us an opportunity to talk about our philosophy on pricing: For us, affordability is part of the product itself. We’re specifically building this not to hoover up every dollar on the table, but to serve smaller groups that have been left out in the cold by "bigger" tools, and who get screwed by per-seat pricing. We believe there are enough teams who fit this profile to be profitable. There’s a difference between making profit and maximizing profit. the capitalists will call us crazy, but we're not here to maximize profit. This really resonated: I love this. Seriously. This is such a refreshing perspective! I've always wondered if there's room for craftsmen to build quality products for smaller groups. Your focus on simple, well-designed software really resonates with me. Thanks for showing us a viable path. A lot of people really got the product and the design choices we've been making: I'm really liking the UX there! In sports-speak there's the "Whose got the ball" method to identify who is managing a topic...and the way this is executed - from what i saw in the video - seems really straight-forward to help answer that. I really like the way this landing page is designed. And I think it really highlights one of the sales points, which is that you are decent and reasonable. Good stuff. I'm going to send this around to some people. Of course, there were plenty of people offering their home-brewed alternatives that cover some of what Jelly does, setting up filters and forwarding and even using labels to "claim" messages. It's fascinating to see how other people have approached this, and the existence of so many different "solutions" demonstrates, to me, that this is a problem that really exists in the world, and that really needs a Good Enough solution that works for people whether they are tech-saavy or not. Anyway. Go try Jelly. It's approved by the smart folks at Hacker News. What are you waiting for?
More in technology
We might be seeing the end of remote coding interviews as we know them, and a return of in-person interviews, trial days and longer trial periods. Could hiring be returning to pre-pandemic norms?
Lee Morris of Fstoppers on how tariffs impact him, as someone who wants to make his stuff in the US: This is a really good breakdown of how tariffs impact small businesses and why they aren't a great tool for getting manufacturing to come back to America (at
Arduino Cloud has grown tremendously over the past year, adding powerful features to make development smoother and IoT deployments more scalable. From real-time collaboration to interactive digital twins on a dashboard and AI-powered coding assistance, our platform has evolved to support everyone. Now, if you tuned in to Arduino Days 2025 (watch the video), you […] The post Find the right Arduino Cloud plan for you appeared first on Arduino Blog.
Zolan Kanno-Youngs: El Salvador’s President Says He Won’t Return Maryland Man Who Was Wrongly Deported In an Oval Office meeting with President Trump on Monday, President Nayib Bukele of El Salvador said that he would not return a Maryland man who was wrongly deported from the
A common question I’m hearing from leaders is “how can I best use AI in my business?” They expect concrete, practical answers — not the platitudes and hype that dominate the media. It’s a fair question: businesses stand to gain significant advantages from judicious use of AI. But first, they must understand where opportunities lie. That requires seeing the business through a different lens. One way to understand a business is through the value it delivers. For example, a grocery store allows consumers to buy diverse foodstuffs and other household goods conveniently and at reasonable prices. That’s the most obvious lens. But another, just as crucial, is how information moves through the business to support decision-making. All businesses acquire, process, analyze, communicate, and store data, transforming it into information and, ultimately, knowledge. A knowledge pipeline is the set of systems and processes through which raw data becomes actionable knowledge. For example, supermarket managers need to track inventory and prices. They get data from various sources, including providers. Once inside the organization, this data makes it into spreadsheets and dashboards, where managers decide what to stock. Retail prices make it onto systems that tell consumers how much things cost. Managers track variations over time to learn about pricing patterns. Basically, you can’t run a supermarket without a functioning knowledge pipeline. For knowledge workers, the pipeline is the job. These folks are responsible for gathering, compiling, synthesizing, transforming, communicating, and otherwise working on and with stuff moving through the pipeline. It’s a central part of every business, not just supermarkets. A hospital, for example, must coordinate schedules, patient data, diagnostics, and billing: all parts of a complex knowledge pipeline. In a well-functioning business, the pipeline ingests the right data and transforms it into information that allows people to make good decisions in a timely manner. Information is processed and stored to become knowledge that allows the organization to improve over time. Today, these transformations are done by people using the traditional tools of knowledge work: email, spreadsheets, dashboards, enterprise apps, databases, etc. They emerged in a world where only humans performed these transformations and communicated the resulting information. Humans are well-suited for many jobs that entail working with information. For example, discussing performance evaluations with employees is best done by humans. But humans are less effective at other knowledge activities, such as making thousands of calculations in real time or spotting patterns in large data sets. Today, bottlenecks are more likely to develop due to humans’ inability to process information at scale and in a timely manner than in technical limitations. AI can help. To answer the question of how to best use AI, managers must first understand their knowledge pipeline: How is data coming in? How is it processed? Who needs to know what by when? What information do we not have because we either can’t get it or can’t process it at scale? AI can relieve bottlenecks so management can use information more effectively and efficiently. It can also unlock new ways of transforming data to information to knowledge. While doing this isn’t as sexy as having chatbots make better slides, it’s much more impactful. Businesses stand to realize significant competitive gains by mapping their knowledge pipelines and adding AI agents to the flows. AI ROI doesn’t start with models, but by understanding how information flows in your business — and designing means for it to flow faster, clearer, and smarter than ever.