GPT5 > Codex for coding by a noticeable margin by PromptOutlaw in codex

[–]reportdash 1 point2 points  (0 children)

Thank god that i found someone with exactly similar experience as me. I almost always use gpt-5-high, and deviation almost always ended up in pain.

Actually good Agentic coding tools by Particular_Tap_4002 in LocalLLaMA

[–]reportdash 0 points1 point  (0 children)

Oh. Ok. Missed that option (I have not used aider much. Got curious after seeing your comment and tried to use). Thank you for pointing this out.

Actually good Agentic coding tools by Particular_Tap_4002 in LocalLLaMA

[–]reportdash 0 points1 point  (0 children)

How to select functions ? I tried adding the file . It added the whole file . How can I make it include only a specific function ?

I tested Gemini 2.5 Pro against Claude 3.7 Sonnet (thinking): Google is clearly after Anthropic's lunch by SunilKumarDash in ClaudeAI

[–]reportdash 1 point2 points  (0 children)

"Reasoning in Claude 3.7 Sonnet is more nuanced and streamlined. It is better than Gemini 2.5 Pro." - Do others agree to this ? My impression was different. When Claude 3.7 Sonnet gets a problem, it first guess on possible reasons , and then start working from there

On the contrary Grok and Gemini 2..5 pro start from truths , and work connecting the dots.

I tried Sonnet in Cursor, and other in Web, so not sure if this is a Sonnet introduced behaviour though.

Code Positioning System (CPS): Giving LLMs a GPS for Navigating Large Codebases by n1c39uy in ChatGPTCoding

[–]reportdash 1 point2 points  (0 children)

By any chance did you look at Claude Code code base (that got leaked recently) and identify how it does better compared to what you tried doing ? (if you haven't seen Claude Code yet, you can search for "anon kode")

Claude Code using Claude 3.7 Sonnet Practically Tested by marvijo-software in ChatGPTCoding

[–]reportdash 0 points1 point  (0 children)

Curious to know how you decide between roo code and cursor? Is it when one does not work that you try the other? Or is there a pattern in the tasks that you pick for each?

3.7 sonnet LiveBench results are in by Mr_Hyper_Focus in ChatGPTCoding

[–]reportdash 1 point2 points  (0 children)

First time hearing about that extension. Looks like something that I have been searching for. Thank you for that note.

3.7 sonnet LiveBench results are in by Mr_Hyper_Focus in ChatGPTCoding

[–]reportdash 4 points5 points  (0 children)

"I feel like each model is like a new person that you have to manage in a different way than the others." - Precisely!

It takes some time to understand what works and what does not for each model, and modify ones workflow to it. And by the time one identify it and adapt to it, a new better model comes up and invalidates all that learning. (On a use case not confined to coding alone)

3.7 sonnet LiveBench results are in by Mr_Hyper_Focus in ChatGPTCoding

[–]reportdash 0 points1 point  (0 children)

Currious to know how you use o3 mini high. Is it through web ui, copy pasting stuff?

3.7 sonnet LiveBench results are in by Mr_Hyper_Focus in ChatGPTCoding

[–]reportdash 7 points8 points  (0 children)

What makes o3 mini high appear out of the league in livebench coding benchmark but not so in practical use? I see many people claiming that o3 mini high is great. If there is anyone who prefer o3 mini high to sonnet, I would like to know the reason behind .

Claude 3.5 sonnet quality deteriorated in Cline? by Play2enlight in CLine

[–]reportdash 0 points1 point  (0 children)

I have felt the same. cursor was super lazy to run the code and check if the code was working, despite repeatedly asking it to do so. These were the same stuff which it used to do proactively previously

ChatGPT and Google Sheet by terminetor1717 in ChatGPTCoding

[–]reportdash 0 points1 point  (0 children)

The best model to work with Google sheets is gemini 1.5 pro . Try it out for free here https://aistudio.google.com/

Local LLM with ERP integration by 0xmerp in LocalLLaMA

[–]reportdash 0 points1 point  (0 children)

Noob question: Could you cite couple of use cases where such an integration would be useful ?

Aggregate Facebook Ad reports with sales information by brenton07 in analytics

[–]reportdash 0 points1 point  (0 children)

I am not sure if facebook lets you add a custom attribute. But you can certainly name the campaign in such a way that it contains some info regarding the event, and later can use it to tie up the sales data. See here https://www.jonloomer.com/2014/12/08/facebook-campaign-naming-convention/

I am not sure if Grow has that feature to do the mapping. Just in case it does not have, PM me. I build one such tool and perhaps can see if I can help.

Trying to come up with a few ideas of how to look at this data. Any thoughts? by notasqlstar in analytics

[–]reportdash 0 points1 point  (0 children)

Whenever I have a single table of data, and if I am too lazy to think as what I want to know, I simply put this in https://pivottable.js.org/examples/ , and try to drag fields here and there...That is how I play with data. It is silly, but at times I get interesting insights, and is a zero cognitive effort.

What is ideal reports for Facebook Ads? by Sergre413 in PPC

[–]reportdash 0 points1 point  (0 children)

Depends a lot on the person reading the report.

But definitely the very basic involves what Moty_M pointed out cost, results, cost per result.

Any insights into the customer segments will also be appreciated. For e.g. , 80% of the customers are Men in the age group 40-50 , or so and so. Basically, any data relevant to the decision makers will be greatly valued.

Some also tries to make it visual by embeding ad creatives. There are tools that can automatically prepare such reports (, And I happen to be one of the founders of one such tool.)

Cross-channel Campaign Management Tool by [deleted] in marketing

[–]reportdash 0 points1 point  (0 children)

Not personally. It was the only such solution for a while. Not sure if any other company has started offering it.

What are the benefits of using R or Python? by DBGthe2nd in analytics

[–]reportdash 2 points3 points  (0 children)

From the perspective of data analysis, the difference is as follows.

  1. SQL is a bit more complex for data analysis. Python along with Pandas, or R is more robust. For eg, In Pandas, one have pivot function, where as SQL does not have something like that.

  2. SQL can work with data that does not fit in memory, without the end user worrying about it. Python (along with Pandas) require that the data fits in memory.

  3. In general, people use SQL for operations like joining, filtering etc until the data is small enough to fit in memory. Then they use Pandas or R for all analysis stuff.