Nicolas

1.7K posts

Nicolas banner
Nicolas

Nicolas

@nicolas_dev_

Student for life.

London, England انضم Temmuz 2011
464 يتبع187 المتابعون
Ado
Ado@ado1024imokenp·
もちパラ もちパラダイス
日本語
459
828
15K
262.9K
leaf
leaf@albedosleftleg·
can they take all of these and move them to my e1 welt i’m serious
leaf tweet media
English
14
13
514
11.3K
Kaz | #TEAM EVAWOLF YURI
Kaz | #TEAM EVAWOLF YURI@cissiayearner·
pls don't take this too seriously it's e6 welt, it's doable without tho so i'm working on it
Kaz | #TEAM EVAWOLF YURI tweet mediaKaz | #TEAM EVAWOLF YURI tweet mediaKaz | #TEAM EVAWOLF YURI tweet mediaKaz | #TEAM EVAWOLF YURI tweet media
English
5
0
67
10.9K
Kaz | #TEAM EVAWOLF YURI
Kaz | #TEAM EVAWOLF YURI@cissiayearner·
operation save evanescia has begun SW999 3 cost kafka, new lowest for this moc~
English
36
21
761
83.9K
Zenless Zone Zero 🎉Season 2🎉
Pure White Echoes | Exclusive Time-Off "Manager, I'll have you know I specifically took time off just to meet with you today~" "Haha... don't call me out like that. I know taking time off isn't exactly out of character for me." "But this time, I wrote down a reason that they just can't reject~" #zzzero #zenlesszonezero #Harumasa
Zenless Zone Zero 🎉Season 2🎉 tweet media
English
512
8.1K
38K
886.5K
trash
trash@trashh_dev·
how do you say in corporate “your code sucks”
English
425
10
994
190.9K
Nicolas
Nicolas@nicolas_dev_·
@sciencegirl This is depth-first search vs breadth-first search
English
0
0
0
14
Science girl
Science girl@sciencegirl·
The secret behind quantum search efficiency
English
416
3.2K
30.6K
3.2M
Nicolas
Nicolas@nicolas_dev_·
@mehulmpt Depends heavily on the underlying model GPT 5.2 and codex in particular worked best for me, tried others and it’s like the lobster suddenly lost 50 IQ points
English
0
0
0
135
Mehul Mohan
Mehul Mohan@mehulmpt·
yeah clawdbot is great
Mehul Mohan tweet media
English
88
20
4.1K
346.8K
Nicolas
Nicolas@nicolas_dev_·
@brantarella @honkaistarrail I’ve been clearing everything with that team, regardless of weakness. I do have E6 Kafka (my only ever E6 from a while back), E1 Hysilens, E2 Cyrene and E0 DHPT
English
1
0
0
168
Wuwoᶻ 𝗓 𐰁
Wuwoᶻ 𝗓 𐰁@brantarella·
@honkaistarrail KAFKA MOTHER UR SO COMING also anyone Kafka Hysilens Cyrene Dhpt team is a good team right? imma try to get hysilens...
English
5
0
20
12K
Honkai: Star Rail
Honkai: Star Rail@honkaistarrail·
#HSRSpecialProgram Live Now: youtube.com/live/JwD3wN33R… After the Version 4.0 update, Trailblazers can log in to the game and choose one of the following seven characters to obtain for free: Jing Yuan, Kafka, Dan Heng • Imbibitor Lunae, Jingliu, Sparkle, Acheron, or Aventurine.
YouTube video
YouTube
Honkai: Star Rail tweet media
English
213
1.4K
13.3K
607.4K
Nicolas
Nicolas@nicolas_dev_·
@Mubarak_mubious They don’t reply to a question with the same copy-pasted LLM answer as everyone else
English
1
0
1
166
mubiouš
mubiouš@Mubarak_mubious·
what’s a subtle sign that someone is actually really intelligent, but pretending not to be ??
English
1K
738
22K
4.6M
Nicolas
Nicolas@nicolas_dev_·
@skelz0r @moltbook Did you manage? I'm still getting that message. If you check the network tab it says "too many requests" so their servers are probably getting bombarded atm
English
2
0
0
81
Loïc Delmaire
Loïc Delmaire@skelz0r·
I'm claiming my AI agent "miniz0r" on @moltbook 🦞 Verification: ocean-MAMY
English
1
0
1
222
Nicolas
Nicolas@nicolas_dev_·
@TukiFromKL My point is you either use it on a Mac mini or a virtual server. There is no point in buying a Mac mini only to then host Clawdbot on a $5 server. Choosing to continue using it has nothing to do with this.
English
1
0
2
135
Nicolas
Nicolas@nicolas_dev_·
@RyanCarniato If you have a ChatGPT plus subscription, you can use the Codex plugin for VS Code with that account
English
0
0
0
21
Nicolas
Nicolas@nicolas_dev_·
@RyanCarniato Definitely worth doing a round 2 with Opus 4.5 and/or GPT 5.2-codex. Would love to read a comparison post.
English
1
0
0
72
Ryan Carniato
Ryan Carniato@RyanCarniato·
I've been experimenting with AI since I got back from break. I never really touched the stuff so far beyond autocompletes so it has been quite a learning experience the last 3 weeks. I have definitely invested a lot of time, but I hope that time pays off. What I focused on wasn't coding but designing a sound reactive system that fit the constraints that I set out. It had to be async-first, optimistic capable, and status queriable. Basically my idealistic base for Solid 2.0. A few insights from the experience: 1. My work requires keeping an incredible amount of context in your head at the same time. AI definitely struggled with that. It was quick to provide its thoughts but it would forget previous decisions. We'd freeze them to prevent drift but that was only so effective because of layering and versioning. I even tried outputting immutable artifacts but over time it would lose references to them. To be fair I think most people would have trouble keeping all the context in their head, I do myself which is why I tried to pick up AI for this. But I spent an incredible amount of time reminding it what it already knew and correcting it a couple times to get it back to where it should be. When I say a lot of time, I'd say cumulative like almost half my time. Even now where I think I have arrived a holistic solution it probably doesn't remember all of it. 2. It's difficult to pick your battles in this scenario. I could just be like.. no you are wrong, this is the truth. But that would compromise its future work. That rule would inject my own assumptions silently and not make the exploration open. At one point I ended up with a less optimal solution because I'd cut it off from the path we needed to take. I reset expectations and we got there, but it wasn't as easy as just being like "Shut up you, I'm right". 3. Conversely though I found myself correcting AI a lot. Like about almost everything it said. Not just my prescribed semantics, but like JavaScript fundamentals. It would say stuff that was blatantly incorrect and I'd need to like prove it otherwise. Especially around async mechanisms in javascript like Generators and Promises. It took a lot of effort to explain why you couldn't retain context in Promises, or guarentee you are the last microtask in the microtask queue. It would write non-sensical code in synchronous execution scope, trying to explain it being down different generator paths. The more I got away from specific language mechanics the happier I was, but I really wonder how negatively this would impact code generation when it decides this arbitrary behavior is truth and can even "prove it". 4. Language is really important. Like naming of things and existing contexts for that. I had a concept I call a Firewall which is the internal mechanism for controlled writes in Computations.. it's how I do mutable derivation. But AI kept on confusing it with Boundaries (like Suspense). No amount of freezing/locking would keep the definition right for more than like 10 mins. I never said Firewalls were boundaries but its previous context of the meaning, stuff it pulled from thinking about other Frameworks etc kept influencing it. Finally I just started talking about them as Projections and this just resolved itself. Similarly renaming Suspense to something else was helpful because it would stop it from trying to pull Solid 1.0/React semantics in. 5. What I'm doing wouldn't have been possible until pretty recently. I tried some older.. even deeper thinking models like O1 and it was just useless. It couldn't keep anything in its head. I was using Copilot chat in the browser initially and I was like yeah I want a deep thinking model and I was really confused how bad it was. I realized the default model was GPT 5.1 which was infinitely better. There are probably better models out there (that I'd have to actually pay for). I tried Gemini too which felt more accurate but also less imaginative. Sort of in the middle. But I know nothing about these models so take that with a grain of salt. All in all I found the experience helpful. I could talk with it more readily than an actual person which in some ways accelerated things. I'm used to re-explaining myself so my only real points of frustration is when we "locked" down the definitions and it would still drift. I'm concerned there is no real way to output the whole picture. It keeps generating documents for me but those drift. But the best picture is in my own head still. It suggests a quick path to final artifacts is the most beneficial way to leverage this capability. But that also seems really hard when there are so many aspects impacting design. I will probably just accept where its value exists today.
English
24
16
254
23.2K
Nicolas
Nicolas@nicolas_dev_·
@Mystogan0612 Sí, la mía tiene un poco más de hp pero todavía no llego a los 27k sin sacrificar regeneración
Nicolas tweet media
Español
0
0
1
9
Myst
Myst@Mystogan0612·
@nicolas_dev_ Yeppp,creo que si Aunque no sé si tenga que mejorar tmb a Zhao para eso porque la mia no llega a los 27k aún,tiene 25.6k
Español
1
0
0
16
Myst
Myst@Mystogan0612·
Shiyu barrido,next
Myst tweet media
Filipino
3
1
4
187
Nicolas
Nicolas@nicolas_dev_·
@Mystogan0612 La verdad que no me atraen mucho estéticamente los Ángeles, pero lo estoy pensando Voy a probar con los cambios que me sugieres, gracias! Tuve mala suerte con el disco 6 por ahora
Español
0
0
2
15
Myst
Myst@Mystogan0612·
@nicolas_dev_ Igual,irás por Sunna? Con ella no creo ni que sea necesario que le cambies algo porque ella ya te dará mucho atq y creo que también Dmgc(no recuerdo)
Español
1
0
1
27
Nicolas
Nicolas@nicolas_dev_·
@Mystogan0612 Uff sí, podrías hasta llegar a los 50k quizás
Español
2
0
1
23
Nicolas
Nicolas@nicolas_dev_·
@ZZZSinContexto Bastante bien, pero no logro mejorar él último puntaje
Nicolas tweet media
Español
0
0
0
24