Or “gluten-free”
Or “gluten-free”
Get ready for another week of breakthroughs
Do you feel good about that advice?
Attacking the P vs. NP problem with ruliology ... the beginnings of empirical theoretical computer science
writings.stephenwolfram.com/2026/01/p-vs...
"I suspect that machines to be programmed in our native tongues -- be it Dutch, English, American, French, German, or Swahili -- are as damned difficult to make as they would be to use." - Edsger Dijkstra www.cs.utexas.edu/~EWD/transcr...
Also, we should take responsibility for the code we submit regardless of how it was generated, and part of the review process helps me gain enough confidence to make that decision.
Grifters gotta grift
The right prompts and a shit ton of systems integration and data management
Hello @kelseyhightower.com sometime ago I remember you saying you like to learn things the hard way and reading docs written by humans. How this experience trying this tool reshapes your opinion? If it does. Cheers!
Spot on
I remember when the promise of AI was mostly about curing illnesses, enhancing cyber security and ethics in AI was a thing
What about Mistral
Interesting take. Do you happen to know if the R&D investment has factually decreased or is it less open source ?
It’s happening - new fulfilling jobs being created
One of the underrated papers this year:
"Small Batch Size Training for Language Models:
When Vanilla SGD Works, and Why Gradient Accumulation Is Wasteful" (arxiv.org/abs/2507.07101)
(I can confirm this holds for RLVR, too! I have some experiments to share soon.)
Do you write code at that successful software company?
ADF … taskflows eww
I also remember the total “Twitter rewrite”
And having a pension. Don’t forget pension a socialist invention
Been there. On the bright side it refreshes my codebase familiarity
Hearts at the PSF are full today from the responses about the recent grant turn down news we shared. All of your kind words of support & solidarity, as well as your donations & new memberships, mean the world to us. We're so grateful to be in community with each of you 💛🐍💙
I love your rants. Specially the one about global variables and global warming
One of the down to earth voices out there
Block an IP address The most straightforward way to block and IP address is in the firewall. It is the tool build specifically for this. To block the address 101.101.101.101, run from the command line sudo ufw insert 1 deny from 101.101.101.101 This instructs ufw (the Uncomplicated FireWall) to insert a rule at the the top of the list (position 1) to deny all incoming traffic from the address. After running this, no restart of the firewall is needed. The rule is active. (ufw docs The position 1 is important because in ufw, the first rule that matches is applied. If there was a rule to allow all addresses that started with 101. and that rule came before the deny rule, then the deny rule would never be reached. While it's possible to block specific ports, or even to block an IP address from seeing particular pages, complex rules and conditions get difficult to analyze very quickly, and can lead to cases where there are loopholes. Use fancy rule combinations sparingly. Parse logs In their raw form access logs are technically human-readable, but they are a lot. I found it really useful to do a little parsing to pull out the bits I'm interested in. (I'm working with the default nginx log format, so adjust this according to your own.) I wrote a script to take advantage of the repeatable structure of these logs to dissect them into their parts. It uses tricks like splitting the log based on brackets and spaces. It productes a pandas dataframe with columns containing the IP address, requested URI, HTTP status code, and every component of the date and time.
New post: Controlling IP traffic on your webserver
A cool part about having your own webserver is that you get to choose who can visit. When IP addresses try to access sensitive files or aggressively scrape, you can just block them.
Here's how.
brandonrohrer.com/hosting5.html
Game changer
Analysts who excel at self-promotion on LinkedIn are worse at their jobs, but experience the highest rates of promotion. klementoninvesting.substack.com/p/self-promo...
Game changer
Game changer
Me parece que ilustra muy bien el mundo actual
A few simple steps can drastically decrease the amount of personal information that’s available about you online. ssd.eff.org/module/how-...