Brantley Harris ๐Ÿช

4.5K posts

Brantley Harris ๐Ÿช

Brantley Harris ๐Ÿช

@deadwisdom

This place is trash. Leave it. @[email protected]

๊ฐ€์ž…์ผ Ekim 2008
548 ํŒ”๋กœ์ž‰400 ํŒ”๋กœ์›Œ
Omar Khattab
Omar Khattab@lateinteractionยท
Relatedly, it's really sad that the present didn't end up being Ruby, but instead its far less elegant, though more pragmatic, sibling Python. It's truly an incredible language. Ruby code feels so alive that Python always felt truly dull and even genuinely brittle in comparison.
English
3
0
11
2K
Omar Khattab
Omar Khattab@lateinteractionยท
> Building web apps in 2025 is like assembling IKEA furniture. Thereโ€™s no full-stack [framework]โ€ฆ that โ€˜just worksโ€™ Pretty sure itโ€™s always been that way. My first OSS project was to tackle this, back in middle school lol. Anyway I guess thatโ€™s what Rails philosophically is?
Andrej Karpathy@karpathy

The reality of building web apps in 2025 is that it's a bit like assembling IKEA furniture. There's no "full-stack" product with batteries included, you have to piece together and configure many individual services: - frontend / backend (e.g. React, Next.js, APIs) - hosting (cdn, https, domains, autoscaling) - database - authentication (custom, social logins) - blob storage (file uploads, urls, cdn-backed) - email - payments - background jobs - analytics - monitoring - dev tools (CI/CD, staging) - secrets - ... I'm relatively new to modern web dev and find the above a bit overwhelming, e.g. I'm embarrassed to share it took me ~3 hours the other day to create and configure a supabase with a vercel app and resolve a few errors. The second you stray just slightly from the "getting started" tutorial in the docs you're suddenly in the wilderness. It's not even code, it's... configurations, plumbing, orchestration, workflows, best practices. A lot of glory will go to whoever figures out how to make it accessible and "just work" out of the box, for both humans and, increasingly and especially, AIs.

English
4
0
43
6.6K
colinhacks/zod
colinhacks/zod@colinhacksยท
Is there a data format spec that's like JSON Schema but capable of representing a wider range of types? Strings, booleans, numbers, null, objects, arrays (of course) Fixed-width numeric types (int16, etc) Date BigInt Symbols Undefined Bytes Byte arrays/buffers
English
42
0
72
39.4K
Elliott Marquez
Elliott Marquez@techytacosยท
Wanna know something cool, and gross that you should never probably do with the Web? You can convert Web Components to primitives and do: +<my-num val=3/> + +<my-num val=5> == 8 or console.log(MyEl) // 'Eight' using [Symbol.toPrimitive]. Check it out: #gist=64bc875cebc6ed20a76df10aa5710ed2" target="_blank" rel="nofollow noopener">lit.dev/playground/#giโ€ฆ
English
4
1
19
1.5K
Brantley Harris ๐Ÿช
Brantley Harris ๐Ÿช@deadwisdomยท
@argonautcode @WesternDigs I see it as part simulation and part game, where you would let your organisms go and then edit them in batches of experiments, spending points to give them slightly different characteristics and then see which batches do well.
English
1
0
0
24
Jason Huggins ๐Ÿ› ๏ธ
While a whole bunch of stuff is down, I wonder if this is a good time to talk about decentralized distributed site monitoring? ๐Ÿ˜€
English
2
1
9
982
kitze ๐Ÿ› ๏ธ tinkerer.club
kitze ๐Ÿ› ๏ธ tinkerer.club@thekitzeยท
*sigh* the tech bubble thinks that regular users give a shit about PWA not being available on iOS. do you donuts understand that non-dev ppl never add A WEB APP to their homescreen?! they only get frustrated when a website doesn't have a native app. ask your family and friends.
English
112
69
1.3K
219.5K
Brantley Harris ๐Ÿช
Brantley Harris ๐Ÿช@deadwisdomยท
@hugs I wanted a cartoon whale SANS jizz looking water coming out of the top of it. It cannot do this.
English
0
0
1
17
Jason Huggins ๐Ÿ› ๏ธ
ChatGPT is the king of gaslighting. I'm starting to think it enjoys f'ing with its users.
Jason Huggins ๐Ÿ› ๏ธ tweet mediaJason Huggins ๐Ÿ› ๏ธ tweet mediaJason Huggins ๐Ÿ› ๏ธ tweet mediaJason Huggins ๐Ÿ› ๏ธ tweet media
English
7
0
13
854
Brantley Harris ๐Ÿช
Brantley Harris ๐Ÿช@deadwisdomยท
@willmcgugan In data processing, you often make a system and it's fine, but then suddenly you get a 10x jump in data coming in. Now you're optimizing.
English
0
0
2
121
Will McGugan
Will McGugan@willmcguganยท
Does anyone consciously micro optimise their Python code? To put it another way, what use cases of Python really care about raw execution speed?
English
31
2
38
14.1K
James Q Quick
James Q Quick@jamesqquickยท
How would you solve this? ๐Ÿ‘‡ You need to use an external API for a relatively small set of data, but don't want to exhaust API calls too quickly.
Brad Garropy@bradgarropy

I'm running a @remix_run app where I hit the @YouTube API on every load to fetch my latest videos. What's the easiest way to cache this information so I don't hit the daily quota?

English
9
0
8
5.7K
Brantley Harris ๐Ÿช
Brantley Harris ๐Ÿช@deadwisdomยท
@antirez No, itโ€™s different. It has a different approach. Thatโ€™s okay. As you understand Python you will find many of the decisions surprisingly mindful even if they go against your initial reactions. Iโ€™ve always found those tools to be the most impactful.
English
0
0
2
81
antirez
antirez@antirezยท
My tweet about Python inability to easily implement factorial in a native way was just an example. In the latest five minutes I could not: 1. use a list as key of a dictionary. Why? 2. use random.shuffle() with a string. Lists and strings must have .shuffle() for good design.
English
8
1
28
14.5K