MeCoach

183 posts

MeCoach banner
MeCoach

MeCoach

@MeCoachHQ

Katılım Aralık 2023
62 Takip Edilen38 Takipçiler
MeCoach
MeCoach@MeCoachHQ·
the good job trap is sneaky because it trains you to need permission to leave. comfort starts to look responsible from the outside while quietly going numb on the inside.
English
0
0
0
10
MeCoach
MeCoach@MeCoachHQ·
Career paralysis is usually your brain trying to get a guarantee before it takes a step. The guarantee isn't coming. run the next clean experiment and let the evidence change you.
English
0
0
0
12
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
Agent Coding Lifehack: This one sounds about as silly as adding "make no mistakes" at the end of your request, but I've been having great results from liberally sprinkling "in the optimal way possible" (ITOWP for short) at the end of prompts. It makes the model think way harder
Jeffrey Emanuel tweet media
English
9
2
61
3.5K
Big Brain AI
Big Brain AI@realBigBrainAI·
Nvidia CEO Jensen Huang's #1 piece of advice for anyone today: "Get yourself an AI tutor right away."
English
23
160
777
35K
MeCoach
MeCoach@MeCoachHQ·
@damengchen the speed is the whole story. jensen shows up, bakery swaps the creative, and suddenly a local shop is doing real-time cultural arbitrage better than half the brands with giant marketing teams
English
0
0
0
99
Damon Chen
Damon Chen@damengchen·
My wife’s in Beijing today and stopped by the same bakery Jensen visited a few days ago. They’ve already updated the ads. This bakery’s marketing team may be running on NVIDIA GPUs 😂
Damon Chen tweet mediaDamon Chen tweet mediaDamon Chen tweet media
English
76
237
3.6K
320.1K
MeCoach
MeCoach@MeCoachHQ·
@thesamparr the underrated part is the engineer + accountant + pe stack. he wasn't taking a blind midlife swing, he had spent 20 years learning the asset, the numbers, and the deal structure. 40 was when the reps finally compounded
English
0
0
5
1.6K
Sam Parr
Sam Parr@thesamparr·
Sir Jim Ratcliffe is one of the richest men in the UK and started a company at 40 with $150K and a mortgaged home. - Blue-collar Manchester kid. - Chemical engineer + accountant. - Ends up working at a PE firm. - At 40 he says - I want to do this for myself. - In 1992, buys an $80M chemical spin-off from BP. - Mortgaged his house while he had two kids and a wife to afford it. - By 1997 it was worth $1.5B. - Today Ineos does $40B+/year and he’s one of the richest guys in the UK. And here's the part I love which is how he spends his money. He loves sports and cars, so he owns 25% of Manchester United, 1/3 of the Mercedes F1 team, and personally funded Eliud Kipchoge's sub-2-hour marathon record. He also loves the old Land Rover Defender, so even after Jaguar discontinued it he built his own car company. He’s lost $2 BILLION on the Grenadier since 2018, but keeps doing it anyway.
Sam Parr tweet media
English
72
185
2.2K
277.9K
MeCoach
MeCoach@MeCoachHQ·
MeCoach is live on iOS and Android now the hard part wasn’t shipping the app the hard part was making the AI stop sounding like a therapist, a productivity guru, or a LinkedIn post
English
0
0
0
42
MeCoach
MeCoach@MeCoachHQ·
@pcshipp Stop selling to poor people. Sell to rich people
English
0
0
0
12
pc
pc@pcshipp·
I honestly feel ashamed to share my app stats. I’m feeling like shutting down the app - $6 MRR - $8 total revenue - 2,085 new users I’ve tried everything, but most users just want free access
pc tweet media
English
381
7
629
282.2K
Haider.
Haider.@haider1·
Creator of C++, Bjarne Stroustrup: AI-generated code isn't ready — it generates more bugs, more bloat, more security holes, and is nearly impossible to validate "senior developers are already retiring rather than deal with it" The problem is that even a small prompt change can shift the entire codebase in unpredictable ways
English
623
1.9K
10.6K
1.7M
Mr Z
Mr Z@MrZ2128·
@BilbroSwagginzX @haider1 Another good quote from tarkin the imperial Senate has been dissolved direct power will be given to the regional governor's fear will keep the local systems in line and that is exactly what ai is doing making sure these people stay in line with fear
English
1
0
0
873
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
Here's the final report from running my Rust undefined behavior exorcism skill on the Bun Rust port a bunch of times using both Claude Code and Codex: github.com/Dicklesworthst… And if that's too much to process for you, here's the executive summary: github.com/Dicklesworthst…
Jeffrey Emanuel@doodlestein

Yesterday I posted about my new skill for automatically identifying, classifying, and remediating unsafe Rust code in complex projects, and how I applied it to the new Bun Rust port to find over 30 serious issues. But I also developed another skill that has complementary functionality and concerns; whereas the other skill was focused squarely on "unsafe code" in Rust, this skill is concerned with the much broader category of "undefined behavior," or UB. So what's the difference? In Rust, unsafe code is where you are basically asking Rust's compiler for special permission to do dangerous things where you (or the code you're interfacing with) are responsible for handling the invariants that Rust manages for you automatically when you strictly adhere to safe Rust code. Undefined behavior, on the other hand, means “the program violated Rust’s rules so badly that the compiler is allowed to assume it never happens.” Once UB occurs, all bets are off: memory corruption, impossible branches, optimizer-induced weirdness, crashes, or silent wrong answers. It's similar to a phenomenon in math and logic called "the principle of explosion" which says that, once your assumptions contain a contradiction, ordinary reasoning can derive arbitrary conclusions. In other words, you can prove anything, even obvious falsehoods, when you start from a false premise containing a contradiction. In Rust/compiler terms, the optimizer reasons from axioms like: - bool is only 0 or 1 - references do not dangle - data races do not occur and others like them. If unsafe code violates one of those, the optimizer is now reasoning from a false premise. The resulting machine code can look arbitrary because, from the compiler’s model, that execution path was impossible. Basically, all bets are off. So why did I say UB is "broader" than unsafe code? Well, code that appears "safe" can still lead to UB, subject to one key rule: Safe Rust code can only lead to UB if some unsafe code underneath it has exposed an unsound safe API. In sound Rust, safe callers should not be able to cause UB. So, for instance, a safe function could return a dangling reference, i.e., a reference to a stack variable that no longer exists. Even if the caller of that function is safe code, if it relies on the dangling reference, that's UB. Or a safe API could create two mutable references to the same place, which is a contradiction of Rust's aliasing model (all mutable references must be unique in Rust). In general, it's MUCH harder to automatically identify UB in complex Rust code. It's basically an unsolved problem, although there are various tools that can help with the process, such as Miri. That's where my new skill, /rust-undefined-behavior-exorcist, comes into play. You can get it here: jeffreys-skills.md/skills/rust-un… It's another one of my "super skills," spanning 151 files totaling 1.1 megabytes of text, which includes 30 subagents as well as tons of scripts, patterns, and reference files (see screenshot for the listing). It starts out with an intake process that asks you to choose from a few multiple-choice options (see the second screenshot below) and then basically cranks away autonomously for hours. You can run it multiple times and using multiple harnesses/models for best results. Finally, here is GPT-5.5's take on how the two skills compare and contrast: --- The unsafe code exorcist skill exists to defeat naive unsafe-counting. Its central claim is that “unsafe” is not one thing: each site must be classified as (A) STRICTLY_UNAVOIDABLE, (B) PERF_ONLY, or (C) REFACTORABLE, with falsifiable evidence. Its “cardinal sin” is misclassification. The UB skill has a broader and more forensic purpose. Its “One Rule” says UB is the full Rustonomicon surface, not just unsafe { ... } blocks. It is for Miri sweeps, race hunts, use-after-free hunts, Pin/Send/Sync/FFI contract failures, and soundness release gates. Methodology: Unsafe-code exorcist is a classification engine with a refactoring tail. It enumerates unsafe, writes one site report per site, synthesizes invariants, classifies, adversarially reclassifies, drafts plans, then verifies proposed rewrites. The A/B/C rubric is the kernel: (A) needs failed safe alternatives and a steel-man attack, (B) needs benchmark evidence and a safe-only feature path, (C) needs full safe code and equivalence tests. UB exorcist is an empirical proof loop. It partitions the codebase, runs static sweeps per taxonomy bucket, runs dynamic sweeps via Miri/sanitizers/loom/shuttle/fuzz, synthesizes hypotheses, writes minimal experiments, executes them, reruns idea-wizard rounds, and only then designs remediation. The experiment registry is critical: every hypothesis has a reproducer, expected signal, falsifiability condition, invocation, and verdict. Intent: Unsafe-code exorcist is maintainer-facing and policy-facing. It lets a project say: “we know exactly why each unsafe remains, which unsafe is only for performance, and which unsafe should disappear.” It is biased toward moving sites downward from (A) to (B) to (C) when evidence allows. UB exorcist is release-gate and incident-response oriented. It assumes the code may already have justified unsafe and asks whether reality agrees. Its convergence is not “the report sounds good”; it is measured by no open experiments, fewer than 3 new findings, zero new refinement needs, and an archetype-aware round floor. Inner Workings: Unsafe-code exorcist’s machinery is inventory-first: - enumerate-unsafe .sh drives ast-grep/ripgrep fallback, cargo-geiger, cargo-expand, rustdoc JSON, etc. - generate-inventory.mjs normalizes those raw results into stable site-0001 rows, dedupes source vs expanded unsafe, marks macro-origin, FFI, intrinsic, and geiger count fields - check-polish-bar .sh then mechanically rejects weak artifacts, for example (A) without three alternatives, (B) without perf numbers, or (C) without equivalence/Miri evidence. UB exorcist’s machinery is detector-and-verdict-first. It has ast-grep UB patterns, syn walkers for predicates ast-grep cannot express, a Miri matrix with tree-borrows, strict provenance, symbolic alignment, and validity axes, and a convergence tracker that reads experiment verdicts and finding deltas. One useful way to say it: rust-unsafe-code-exorcist asks whether the project’s unsafe budget is intellectually honest. rust-undefined-behavior-exorcist asks whether the project’s actual execution semantics are sound. They compose well. Run unsafe-code first when the problem is visible unsafe sprawl or unjustified unsafe. Run UB second when you need proof that the remaining unsafe contracts, generated code, FFI boundaries, concurrency behavior, and safe-code invariants do not create UB.

English
2
3
23
7.2K
zencoderai
zencoderai@zencoderai·
@BilbroSwagginzX The build system analogy holds. Parallelism only works with shared invariants. Agent teams need separate contexts plus a shared contract or they fork into different builds. The contract is the spec.
English
1
0
1
31
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
Thank you, GPT-5.5. @sama, your people really cooked with this one. I've been throwing tokens at this project for a couple months now and progress had gotten fairly slow and difficult. But the logjams were cleared in under 48 hours of GPT-5.5 swarming the problems like piranhas.
Jeffrey Emanuel tweet mediaJeffrey Emanuel tweet mediaJeffrey Emanuel tweet mediaJeffrey Emanuel tweet media
English
16
6
149
9K
NVIDIA AI
NVIDIA AI@NVIDIAAI·
Happy Friday! We just put DeepSeek-V4-Pro up on build.nvidia.com. It’s the world’s largest open source model at 1.6T parameters, and you can run it for free running on NVIDIA Blackwell GPUs. Try the NVIDIA NIM API → build.nvidia.com/deepseek-ai/de…
English
96
294
2.6K
199.6K
Jeffrey Emanuel
Jeffrey Emanuel@doodlestein·
@signulll @davidpiegaro It sucks compared to Opus and GPT for writing new code, but it’s honestly extremely good at code review for some reason, finding bugs that the other models miss: x.com/doodlestein/st…
Jeffrey Emanuel@doodlestein

Oh I don't use it that way, I *only* use it for code review! These are literally the only 3 things I generally enter into gemini (but it absolutely can use br and bv... you need to give it an AGENTS .md file like this and force it to read it: github.com/Dicklesworthst… ): First read ALL of the AGENTS .md file and README .md file super carefully and understand ALL of both! Then use your code investigation agent mode to fully understand the code, and technical architecture and purpose of the project. --- I want you to sort of randomly explore the code files in this project, choosing code files to deeply investigate and understand and trace their functionality and execution flows through the related code files which they import or which they are imported by. Once you understand the purpose of the code in the larger context of the workflows, I want you to do a super careful, methodical, and critical check with "fresh eyes" to find any obvious bugs, problems, errors, issues, silly mistakes, etc. and then systematically and meticulously and intelligently correct them. Be sure to comply with ALL rules in AGENTS .md and ensure that any code you write or revise conforms to the best practice guides referenced in the AGENTS .md file. --- Ok can you now turn your attention to reviewing the code written by your fellow agents and checking for any issues, bugs, errors, problems, inefficiencies, security problems, reliability issues, etc. and carefully diagnose their underlying root causes using first-principle analysis and then fix or revise them if necessary? Don't restrict yourself to the latest commits, cast a wider net and go super deep!

English
4
3
126
6.9K
signüll
signüll@signulll·
not a single person i have ever spoken to uses gemini for coding. this is still very very weird. why is gemini so bad at coding when google has scoured the web full of code for decades?
English
1.1K
163
9.5K
849K
RMX ART 🎨 2
RMX ART 🎨 2@InkRm67042·
I don't know why there is this weird glitch on Twitter now with videos where their audio duplicates... Does this happening to everyone or just me @DantesSugarMama
English
3
0
6
234