Ahh, got it! That makes a ton of sense.
And, now that I see the topic of your talks, is there any way I could see them? I love the history of mathematics. Just last week I was learning about what we can learn about Egyptian mathematics from a βtextbookβ in hieroglyphics on a papyrus scroll!
16.04.2025 08:21 β π 1 π 0 π¬ 0 π 0
Weβre going to have a very painful period of brain dead AI integrations. I think things will be better when they drop their phone tree, but who knows how long that will be.
16.04.2025 00:37 β π 1 π 0 π¬ 0 π 0
Today I called customer support and after navigating a deep phone tree I was finally connected to⦠an AI agent. It was totally unhelpful and insisted I needed to go look up the answer to its question in my manual.
Eventually I convinced it to connect me to a human.
16.04.2025 00:35 β π 3 π 0 π¬ 1 π 0
Do you know if itβs possible to join remotely? Iβm a mathematician working in apply AI safety but am based in California and cannot travel for the event.
15.04.2025 19:10 β π 0 π 0 π¬ 1 π 0
Of course, remember that I donβt know much about your specific requirements, so this may be bad advice depending on your situation.
15.04.2025 01:13 β π 1 π 0 π¬ 0 π 0
Yes, I think you can simplify that setup. In general trigger-based control flow is very difficult to debug and fix.
One file per talk sounds just fine.
Could you remove airtable, and do everything in the stage following the submitted form? Email organizers, record in spreadsheet, push to git?
15.04.2025 01:03 β π 1 π 0 π¬ 2 π 0
βBUT ITS NOT MY FAULTβ is EXCELLENT leadership. WE must ALL learn from this man.
14.04.2025 16:18 β π 11 π 0 π¬ 0 π 0
Where do I pick up my honorary PhDβs for discovering an O(n) general purpose sorting algorithm?
14.04.2025 01:50 β π 1 π 0 π¬ 1 π 0
If your code reviewer is worried about robustness, just catch and discard any and all exceptions in a while loop. Or start with βPretty pleaseβ¦β
14.04.2025 01:47 β π 1 π 0 π¬ 1 π 0
import os
from openai import OpenAI
client = OpenAI()
def sort(values: list[int]) -> list[int]:
response = client.responses.create(
model="gpt-4o",
input=fβPlease sort {values}. Answer with comma separated values.")
return [int(i) for i in response.split(β,β)]
14.04.2025 01:44 β π 1 π 0 π¬ 1 π 0
The tools like Cider and GitHub Copilot need to build heuristic protections here. Ideally ChatGPT and the other interfaces would also, but their teams focus more on instructions for chemical weapons than mundane practical things like this. To be clear, I disagree with those priorities.
14.04.2025 01:36 β π 1 π 0 π¬ 0 π 0
Yes, I partly agree, but what I really mean is this doesnβt really solve the problem. With 20 years experience I know that βimport pytestsβ should be βimport pytestβ, but someone just learning Python may not. Even something as basic as the major libraries are susceptible to this attack.
14.04.2025 01:33 β π 1 π 0 π¬ 1 π 0
Can you just use a file instead of multiple services? Dumping all your data to JSON is surprisingly effective. Estimate how big the file might ever get. If itβs less than 1MB youβre golden, or at least you donβt need to build anything more complicated for the first version.
14.04.2025 01:30 β π 2 π 0 π¬ 1 π 0
Exactly. Bytecode only, thank you very much! The processor may not include a divide instruction but Iβm not trusting some third party βlanguage.β
14.04.2025 01:26 β π 1 π 0 π¬ 1 π 0
π€―
They keep surprising me with bold new ways to do the inhumane thing.
14.04.2025 01:14 β π 1 π 0 π¬ 0 π 0
Some people have tried to point out that this doesnβt handle negative numbers, but they forget that all integers eventually underflow.
10.04.2025 01:38 β π 0 π 0 π¬ 0 π 0
Best-case time complexity is O(n^2), expected is O(n^3), and worst is of course O(β).
Further optimization is simple - make the intern find the best random seed for your dataset.
09.04.2025 19:58 β π 1 π 0 π¬ 0 π 0
Building on our novel `min` algorithm:
import random
def sort(values: list):
sorted = []
while values:
i = random.choice(range(len(values)))
vmin = values[i]
if all(vmin <= v for v in values):
sorted.append(vmin)
values.pop(i)
values.extend(sorted)
09.04.2025 19:43 β π 0 π 0 π¬ 1 π 0
import random
numbers = [5, 3, 9, 2, 8]
min = random.choice(numbers)
while not all(min <= n for n in numbers):
min = random.choice(numbers)
print(min)
02.04.2025 16:36 β π 1 π 0 π¬ 0 π 0
def iseven(n: int) -> bool:
if n == 2:
return True
elif n == 1:
return False
else:
return iseven(n-2)
31.03.2025 18:23 β π 1 π 0 π¬ 1 π 1
Yes I agree! Different languages represent such different worldviews, even reflecting different concepts of ownership, social responsibility, relationships, etc.
I havenβt been following what Cohere is doing very closely, but Iβll take a look. Thanks!
20.03.2025 17:20 β π 2 π 0 π¬ 0 π 0
Python decorators are amazing and so so dangerous π
20.03.2025 17:01 β π 1 π 0 π¬ 1 π 0
Iβm interested in pursuing this toward more and more nuanced AI behavior. We should see AI naturally code switching and tailoring themselves to the userβs culture.
I fear a global regression to dominant culture if we donβt achieve this. How awful would it be if AI degrades our cultural diversity?
20.03.2025 17:00 β π 0 π 0 π¬ 0 π 0
I agree with him, and Iβm concerned that he seems to be asymptotically approaching his third articleβ¦
Also, the line Iβm excited about is AI conducting research and publishing notable results.
20.03.2025 01:06 β π 1 π 0 π¬ 0 π 0
In adorable news, my 2yo daughter wishes me happy birthday 2-5 times every day βΊοΈ
20.03.2025 01:00 β π 2 π 0 π¬ 0 π 0
In an exclusive for Nature, I report on a paper that AI folks will probably debate for a LONG time.
The key finding: the time horizon of tasks AI can handle is doubling fast. Extrapolating the trend: AIs will be able to handle 1-month tasks by 2029. π§΅
x.com/METR_Evals/...
19.03.2025 20:03 β π 2 π 2 π¬ 1 π 0
Owner of MSW Media, host of The Daily Beans, UnJustified, and Cleanup on Aisle 45 podcasts. #Leguminati. Veteran. She/Her Substack: muellershewrote.com Secure contact: FedOath@pm.me
Signal: muellershewrote.23
Podcast: https://link.chtbl.com/TheDailyBeans
β http://www.neeldhara.com
The Big Bird at LegalEagle. Believer in the rule of law.
Personal Account
Founder: The Distributed AI Research Institute @dairinstitute.bsky.social.
Author: The View from Somewhere, a memoir & manifesto arguing for a technological future that serves our communities (to be published by One Signal / Atria
Breakthrough AI to solve the world's biggest problems.
βΊ Join us: http://allenai.org/careers
βΊ Get our newsletter: https://share.hsforms.com/1uJkWs5aDRHWhiky3aHooIg3ioxm
information science professor (tech ethics + internet stuff)
kind of a content creator (elsewhere also @professorcasey)
though not influencing anyone to do anything except maybe learn things
she/her
more: casey.prof
pragmatic, progressive, multidisciplinary creative, data scientist & full stack dev. occasional avid beach goer.
π https://marko.tech π https://startyparty.dev
computer and political science student | intern @ LatAmGPT project | neonliberal | π³οΈβπ
clarity is a public good
weibac.github.io
Americaβs Finest News Source. A @globaltetrahedron.bsky.social subsidiary.
Get the paper delivered to your door: membership.theonion.com
Staff Research Scientist, People + AI Research (PAIR) team at Google DeepMind. Interpretability, analysis, and visualizations for LLMs. Opinions my own.
iftenney.github.io
#NLP Postdoc at Mila - Quebec AI Institute & McGill University
mariusmosbach.com
π©βπ» Postdoc @ Technion, interested in Interpretability in IR π and NLP π¬
NLP | Interpretability | PhD student at the Technion
YouTuber, AI research scientist, computer science PhD. I talk about how AI will affect all of us and society as a whole.
Unofficial bot by @vele.bsky.social w/ http://github.com/so-okada/bXiv https://arxiv.org/list/cs.AI/new
List https://bsky.app/profile/vele.bsky.social/lists/3lim7ccweqo2j
ModList https://bsky.app/profile/vele.bsky.social/lists/3lim3qnexsw2g
part-time poster | researching privacy in/and/of public data @ cornell tech and wikimedia | writing for joinreboot.org
Head of Research @ Utah AI Policy Office // math PhD // networks, complex systems, machine learning, and all things AI // mom & cat lady
Research Fellow @BKCHarvard. Previously @openai @ainowinstitute @nycedc. Views are yours, of my posts. #isagiwhatwewant
Research Scientist Google DeepMind People + AI Research. HCI + AI + Programming Support + Sensemaking. ex @SCSatCMU @UMich @MSFTResearch @GoogleAI. He/him