HackerTrans
TopNewTrendsCommentsPastAskShowJobs

eneveu

no profile record

Submissions

Token spend breaks budgets – what next?

newsletter.pragmaticengineer.com
5 points·by eneveu·قبل شهرين·3 comments

Cloud Storage retrieval and data transfer fees will apply to BigQuery requests

cloud.google.com
4 points·by eneveu·السنة الماضية·1 comments

How A US Fintech Giant Crushed a Promising AI Startup

thepress.co.nz
1 points·by eneveu·السنة الماضية·2 comments

comments

eneveu
·قبل شهرين·discuss
Probably India. I'm from Europe but have read in the past about this on Reddit / HN.

More info: https://qz.com/india/889524/the-us-says-oracle-is-encouragin...

https://www.mercurynews.com/2019/09/09/h-1b-san-jose-tech-fi...

https://news.ycombinator.com/item?id=41785265
eneveu
·قبل شهرين·discuss
When installing IntelliJ IDEA extensions, I download the code and try to check it for malicious stuff using Claude Code... But not perfect since the code might not match what was released. We would need reproducible builds...

I was also toying with comparimg timestamps of git tags / GitHub releases / GitHub actions / plugin update timestamps as one indicator of potential tempering.

But not ideal.
eneveu
·قبل شهرين·discuss
> They were snatching people from the streets and killing them.

Can you give more info on this? Tried googling it but couldn't find much. I remember there were very strict quarantines, but don't remember reading anything about "killing" people snatched from the street.
eneveu
·قبل شهرين·discuss
Not much.

I think companies dream of increasing productivity using AI, so they want to encourage their devs to use AI more. Since it's notoriously very hard to measure software productivity, and they have no way to really measure how well engineers use AI, they measure number of tokens.

Which is dumb. Because a bad engineer might ask the AI to "convert this CSV to JSON" which would burn token, while a good engineer would ask the AI to "write a script to convert this CSV to JSON". Of course, this example is not ideal, since a SOTA model would probably just write a script anyway in the first case... But you get the idea.
eneveu
·قبل شهرين·discuss
Thought this was interesting to see how AI token usage is exploding at multiple companies, and how they try to deal with it.

No mention anywhere of context engineering (starting a new session once a task is done, using sub-agents, reducing context for MCPs), and it seems some companies are actually rewarding developers for wasting token, instead of being smart.
eneveu
·قبل شهرين·discuss
Interesting. Do I get this sandboxing out of the box when I install apps with Homebrew? Or do I need to do something specific?

Would love to enable this for all apps, and add exceptions for the ones that need more access.

I installed Lulu and BlockBlock recently, and want to do more to harden my Mac.
eneveu
·قبل 3 أشهر·discuss
Yes it is.

https://claude.com/pricing

It's not available on Free plan, but it's available on Pro.
eneveu
·قبل 4 أشهر·discuss
The cool thing when using AI (e.g. Claude Code) is that the conversation with the agent is saved, and you can retrieve from that convo the way you did things in the past. Not just the how, but also the why.
eneveu
·قبل 8 أشهر·discuss
If you read Clean Code and other similar books, they don't necessarily advise moving the sub-functions to other files, or splitting them arbitrarily. They simply have the top function delegate to sub-functions that are lower in the same file. Even better if these sub-functions can be marked as private in your language (to avoid polluting the public API of your object). And here the goal is to use function names to document what each block of code (sub-function) does.

Example:

    def process_order(order):
        _validate(order)
        _reserve(order)
        _charge(order)
        _confirm(order)
    
    def _validate(order):
        ...
    
    def _reserve(order):
        ...
eneveu
·السنة الماضية·discuss
Link no longer works. Article was moved to: https://www.joanwestenberg.com/p/smart-people-don-t-chase-go...
eneveu
·السنة الماضية·discuss
Previously, if you had a BigQuery external table on top of GCS files, and those files had Nearline / Coldline / Archive storage classes (e.g. due to a bucket lifecycle policy), you were not billed for retrieval fees when reading those files through the BQ external table.

This was a billing bug that was already mentioned in 2020 on StackOverflow.

But the bug has been fixed on February 21, 2025. So we are now billed for that. We started seeing 10.000 $ of retrieval fees due to that. I did a deep dive and found this.

The fact that some of our DBT projects were re-creating the external tables daily was not helping...
eneveu
·السنة الماضية·discuss
New Zealand startup Montoux shut down after a lawsuit from $46B fintech giant FIS, which accused it of stealing trade secrets—claims Montoux denied. The company had gained traction as an alternative to FIS’s Prophet software, but instead of competing, FIS sued.

Filed in Delaware, the lawsuit alleged Montoux used FIS code and trained AI on proprietary data. With legal costs hitting $600K upfront, Montoux couldn't afford to fight and liquidated. This "lawfare" tactic highlights how corporations use litigation to stifle competition, raising serious questions about monopolistic practices and the barriers to innovation.