HN user

ex3ndr

1,039 karma

YC Badge: 0x30b3e6cbc3420d1e26399ba4543a8bce156772e5

Posts28
Comments689
View on HN
www.npmjs.com 5mo ago

Show HN: Mercury CLI – CLI to Connect to Mercury Bank

ex3ndr
1pts0
happy.engineering 5mo ago

Show HN: Happy Coder – Run Claude Code and Codex from Anywhere

ex3ndr
2pts0
korshakov.com 6mo ago

Dead GitHub Theory

ex3ndr
2pts0
github.com 11mo ago

Show HN: Happy Coder – End-to-End Encrypted Mobile Client for Claude Code

ex3ndr
30pts8
korshakov.com 1y ago

Death of Best Practices

ex3ndr
6pts0
korshakov.com 1y ago

You should write "without bugs"

ex3ndr
121pts87
marketplace.visualstudio.com 2y ago

Show HN: I built local copilot alternative using Codellama

ex3ndr
38pts6
telegra.ph 4y ago

MongoDB Atlas to be terminated for Russians and Belorussians

ex3ndr
4pts3
github.com 5y ago

Unofficial and OSS Clubhouse app for Android

ex3ndr
4pts0
korshakov.com 6y ago

No, node_modules are not heavy

ex3ndr
4pts0
medium.com 6y ago

Quitting Facebook: The Right Way

ex3ndr
13pts0
demo.amai.io 6y ago

Show HN: API for ultra-realistic text-to-speech generation

ex3ndr
5pts4
status.heroku.com 8y ago

Heroku CI is down for almost an hour

ex3ndr
1pts0
news.ycombinator.com 8y ago

Ask HN: How Apple encrypt iCloud photos?

ex3ndr
5pts0
news.ycombinator.com 9y ago

Ask HN: Is there startup that reviews pitch decks?

ex3ndr
1pts1
orcarium.com 10y ago

Show HN: Decentralized Anonymous Court for TheDAO

ex3ndr
4pts2
www.independent.co.uk 10y ago

Apple: Body found at tech giant's headquarters campus in California

ex3ndr
13pts1
blog.actor.im 10y ago

Actor Platform releases voice calls and search

ex3ndr
4pts0
locolo.me 10y ago

Show HN: Locolo – service for sharing things

ex3ndr
1pts0
locolo.me 10y ago

Locolo – service for sharing things

ex3ndr
1pts1
github.com 10y ago

App for Drag-N-drop Google Material Icons into Sketch

ex3ndr
1pts0
actorapp.ghost.io 10y ago

Actor Platform v1.0 Release

ex3ndr
2pts1
actorapp.ghost.io 10y ago

Show HN: Android and iOS SDKs for building messaging with self-hosted server

ex3ndr
5pts0
medium.com 10y ago

Encrypted Public Contact Discovery

ex3ndr
5pts0
github.com 11y ago

Show HN: Actor Messaging platform

ex3ndr
110pts38
medium.com 11y ago

How to get access to Telegram account

ex3ndr
3pts0
news.ycombinator.com 11y ago

Ask HN: What can we do with our messaging platform startup?

ex3ndr
48pts38
medium.com 11y ago

How Actor uses Java, GWT and J2ObjC for reuse 80% of code

ex3ndr
13pts0

i have tried this workflow and it is solid. It is a codex that commits once it finishes something. You can pipeline changes, so it works like in 5-10min intervals and it gets mostly right, much better (and much slower) than opus. He has two computers and one for longer running tasks and another for short one. I suppose you just pipeline a bunch of small issues to the long term one and ask it to work and work on the repo. Another one is probably where he is more engaged with specific tasks. Impressive that it works quite good.

What if we will go even further? I have built end-to-end messaging layer for Clawdbot to talk to each other, called Murmur - https://github.com/slopus/murmur.

We tried this with friends and it is truly magical (while crazy insecure) - i can ask my agent to search friends life, their preferences, about their calendars, what films they are watching. It can look at emails and find if you need something and go to people around asking for help. It is truly magical. Very very curious where it can go. At the moment it is exceptionally easy to exfiltrate anything, but you still can control via proper prompts - what you want to share and what you dont want to. I bet models will became better and eventually it wont be a problem.

I am curious when we will land dead github theory? I am looking at growing of self hosted projects and it seems many of them are simply AI slop now or slowly moving there.

I am wondering if you can just cool down your body to fix it. I had panic attacks in the past and now from time to time i am experience mild anxiety. Eventually i learned that hot shower or hot bed (i have 8sleep) actually increases anxiety, making my bed colder calms anxiety. This makes sense since anxiety and many other disorders are just overloading the body and cooling down stops the chemical processes that causes them.

Svelte Native 2 years ago

in 2023 it is a one liner to add native modules, very easy to link via normal cocoapods or gradle, then almost zero configuration.

Flutter is a joke because it reimplements literally what apple intended to perfect - rendering pipeline, a lot of things impossible to make good without using native api.

Svelte Native 2 years ago

No, even when you are writing directly in swift/kotlin you avoid main thread at all costs. Any overhead here is a death sentence for performance.

Svelte Native 2 years ago

No, you do not, you can use a free service by expo that would build in the cloud. Literally requires zero setup. Local build is needed only if you are sensitive to security, but many banks started to use it. Also native plugins became so easy to use it is a joke how simple it is comparing to cocoapods and some cryptic libraries.

Expo's workflow is so perfect comparing to pure native, it is not even comparable. To do iOS development you need: Swift Packages, Cocoapods and XCode at least. Whils in general it is simple, but cocoapods constantly fights with apple and xcode to not crash anything. While expo also uses cocoapods, it is much more stable because you can always just delete a native project and regenerate it from scratch and it will work.

I am not even starting to discuss how complicated is development for Android - literally everything now have 5+ different APIs for a simple things like "please encrypt this string" or "take a photo". React Native and Expo has perfect packages that solves real problems and work with a few keystrokes.

Svelte Native 2 years ago

This is a very weird thing to say when expo is literally one line installation and it does not require you anything to be installed (even XCode) on machine for most projects. It is literally 10x times easier than just writing in Swift.

Svelte Native 2 years ago

Because they run JS on main thread while react native tries to minimise it at all costs (only keeping rendering and animations, but not layouts for example).