Joined October 2012
32 Photos and videos
28 Aug 2024
Knowing how to do something and doing that something are very different things
73
16 May 2024
I wonder what would have happened if Jaco and tony rice played together
1
84
15 May 2024
With all this AI tooling out there now, I feel like the resume is dead…if it wasn’t already. What takes its place?
97
14 May 2024
Interviews are the plinko machine of human interactions
2
106
A key part of leadership to me is knowing what details matter and which do not
4
92
27 Apr 2024
Trying to include “and” instead of “but” everywhere I can. Surprisingly happens more than I expected. Changes the audience demeanor in a meaningful way.
1
72
mark hutter retweeted
16 Apr 2024
The best way to improve at programming is to pair with someone better than you.
10
8
103
11,956
mark hutter retweeted
15 Mar 2024
The minimum viable product is the one customers will buy. It ain't viable otherwise.
23
74
640
49,341
What’s the AI landscape for sql? Should I be advising new devs to deeply learn this skill or is this something that AI is doing easily these days? #ai #SQL #CareerDevelopment
2
193
I spent 3 hours today to get a slider carousel to work in a NextJS app. Granted my experience in this ecosystem is low, but the layers of abstraction between NextJS, TypeScript, and React is a lot to traverse.
1
1
177
I got mine in 2015. I still wear it to this day. And I still miss @WagonHQ every day
Many years later, the quality of those @wagonhq t-shirts continues to pays off: "It’s been forever but I’ll admit I think of Wagon whenever I make my yearly plea to my mom to throw out her Wagon t-shirt. You gave it to me in 2015 and it remains her most comfortable shirt 😂."
1
236
mark hutter retweeted
The high % of the YC W24 batch that uses @posthog and @porterdotrun is a powerful indicator that these two companies are onto something big.
24
29
472
329,138
Does anyone use #ractors in #ruby? Curious of your experience
65
28 Feb 2024
There are so many cool figma plugins that make ui ux so much easier!
2
87
28 Feb 2024
I find myself doing NextJs dev and trying to get pixel perfect. I still find the @FirefoxDevTools the most useful when working with css and html. Something just smoother and clearer about it to me.
2
67
mark hutter retweeted
I’ve retired from software… process. No scrum, dds, tdd, stand ups, devops, sre, micro services, retrospectives, pre and post mortems… Instead, we just build and run software together. We do use an issue tracker and a good readme. Everyone posts an eod update to our group with demo/insights from their day. Plain and simple. It’s pure bliss.
150
218
3,129
747,024
mark hutter retweeted
Wrote a little something. In admiration of some of the best programmers I've ever worked with:
5
13
153
24,321
mark hutter retweeted
1 Feb 2020
Has anyone written something great about how to model your Rails-based SaaS app with Users, Teams, Organizations, and Subscriptions so that you don't regret it later?
34
25
210
mark hutter retweeted
17 Jan 2024
Is this true?
42
24
244
23,232
mark hutter retweeted
SQL doesn't have to be scary or unreadable. Using CTEs and properly formatting your SQL can go a really long ways. Lets start with CTEs. They're like a temporary view that you can build and refer to later, here's an example: with late_invoices as ( SELECT id, account_id, amount, created_at FROM invoices WHERE created_at >= now() - '1 month'::interval AND status='unpaid' ) Then you can query it simply with: SELECT * FROM late_invoices Or, we could join against the account table to get the users email to contact. SELECT * FROM late_invoices, users WHERE late_invoices.account_id = account.id; How else do you make SQL readable? Well consistent formatting goes a long way, don't put too much on a single line. Personally for formatting I'm in camp CAPITALIZE SQL keywords, lowercase all else. Indentation matters to. I make sure to align my columns I'm selecting from, tables I'm querying from, and then for my WHERE clause when I have ANDs I make sure to align it so the condition all aligns (two spaces before your AND. It's hard to see on twitter, but copy and paste the CTE and it'll make a bit more sense.

3
6
42
3,400