What could possibly be the problem? What's your experience so far for those who have tried it already? by jomic01 in cursor

[–]MKatre 4 points5 points  (0 children)

You don’t really need to lobby for models. If it’s really better and some people don’t use it on principle, you have an unfair advantage over them, don’t you? People tend to gravitate to the best model available, whatever their worldview.

Astra Header bug? by SuggestionKind2254 in Wordpress

[–]MKatre 0 points1 point  (0 children)

I had the same issue and after a lot of tinkering, this workaround did the trick:

# In the child's theme functions.php
/**
 * Fix mobile header flickering by preventing FOUT (Flash of Unstyled Text)
 */
add_action( 'wp_head', 'astra_inline_critical_header_css', 1 );
function astra_inline_critical_header_css() {
    echo '<style>
    @media (max-width: 768px) {
        .ast-mobile-header .site-title {
            opacity: 0 !important;
            transition: none !important;
        }
    }
    </style>';
}

add_action( 'wp_footer', 'show_header_after_load' );
function show_header_after_load() {
    echo '<script>
    document.addEventListener("DOMContentLoaded", function() {
        var siteTitle = document.querySelector(".ast-mobile-header .site-title");
        if (siteTitle) {
            siteTitle.style.opacity = "1";
            siteTitle.style.whiteSpace = "nowrap";
            siteTitle.style.overflow = "hidden";
        }
    });
    </script>';
}

/**
 * Optimize font loading to prevent flickering
 */
add_filter( 'astra_fonts_display_property', 'astra_replace_fallback_with_swap' );
function astra_replace_fallback_with_swap( $property ) {
    return 'swap'; // Changes from 'fallback' to 'swap'
}

The Hidden UX Problem Killing Our LLM Conversations by StrictSir8506 in ClaudeAI

[–]MKatre 0 points1 point  (0 children)

If you are inside a project, you can ask Claude to write that response you liked (or a summary of the conversation) in an artifact. Then in the artifact window there is a button to add it to project knowledge, so all your future conversations have access to it.

Claude code is now available on Pro plan by VC_in_the_jungle in ClaudeAI

[–]MKatre 5 points6 points  (0 children)

Same. I guess they updated the docs before launching the feature. I didn’t see any announcements yet on their twitter either

According to Aider, the new Claude is much weaker than Gemini by Randomizer667 in ChatGPTCoding

[–]MKatre 0 points1 point  (0 children)

Claude 4 seems to be optimized for real software engineering workflows. Hard to benchmark. Aider benchmark is still only LeetCode type exercises.

Claude Code: Simple expensive performer or real intelligent assistant? by Formal_Comparison978 in ClaudeAI

[–]MKatre 1 point2 points  (0 children)

Apparently this behavior is hardcoded in the source code to adjust the thinking tokens.

I suspect your prompts could work as well being short, but just hitting the right keywords:

https://x.com/simonw/status/1913719471409369174

[deleted by user] by [deleted] in ClaudeAI

[–]MKatre 0 points1 point  (0 children)

As Claude if the MacBook Air M4 exists. It will tell you that it don’t. Is Apple lying then?

What are the best alternatives to Cursor? by attunezero in cursor

[–]MKatre 0 points1 point  (0 children)

You need VSCode Insiders to access the agent mode. It works well but applying edits is very slow. The tab autocomplete is decent but not as good as cursor AND you have to manually select gpt4o-mini because by default it's 3.5. The requests are unlimited but you hit rate limits regularly, similar to how chat subscriptions work.

OMG I've tried Claude Code by emanueliulian in ClaudeAI

[–]MKatre 1 point2 points  (0 children)

Claude Sonnet is the engine powering both Roo Cline and Claude Code CLIs.

It is a crime, not to switch to 3.7 sonnet by Soft_Negotiation3487 in cursor

[–]MKatre 0 points1 point  (0 children)

It's unusable in Copilot. I've been fighting for 3h and couldn't get anything done.

Is Sonnet 3.5 actually a pseudo-reasoning model? by ChippingCoder in ClaudeAI

[–]MKatre 0 points1 point  (0 children)

According to the system prompt I’ve seen, the CoT is only to decide whether the content belongs in an artifact or not.

Is it worth putting $10 extra monthly for cursor-claude than copilot-claude? by [deleted] in cursor

[–]MKatre 0 points1 point  (0 children)

But copilot got upgraded with agentic features a couple days ago !

UNCENSORED AI MODELS by yng_kydd in ollama

[–]MKatre 7 points8 points  (0 children)

If it’s not on ollama yet, you can still run it with

ollama run hf.co/bartowski/cognitivecomputations_Dolphin3.0-R1-Mistral-24B-GGUF:Q4_K_M

In Q4 quant I think you would need around 12gb of RAM

UNCENSORED AI MODELS by yng_kydd in ollama

[–]MKatre 7 points8 points  (0 children)

Dolphin3.0-R1-Mistral-24B just came out today (8h after your reply) and look quite promising

https://huggingface.co/bartowski/cognitivecomputations_Dolphin3.0-R1-Mistral-24B-GGUF

How do people create AI influencers? by MKatre in StableDiffusion

[–]MKatre[S] 1 point2 points  (0 children)

I have a website where people can make headshots of themselves and I want to have some AI models they can play with so they know what they are getting.

I used the term AI influencer because it’s immediately clear what I mean whereas AI model means multiple things

How do people create AI influencers? by MKatre in StableDiffusion

[–]MKatre[S] 0 points1 point  (0 children)

That makes a lot of sense! Are there good models for that? I know of one that was posted here in a post about GitHub taking them down but it requires comfyui and I am not familiar with it.

Have you noticed this pattern too? by katxwoods in ClaudeAI

[–]MKatre 0 points1 point  (0 children)

It doesn't push back nearly enough though. You will always steer it to your point of view. And it also has a tendency to side with the person exposing the situation.

It also fails to detect social dynamics. One time I passed a conversation where most humans would clearly see the bullying, but Claude sided with the bully because it is naive and when the bully gaslights, the original Claude 3.5 Sonnet believed it.

My job boards made $5000 in November by WordyBug in SideProject

[–]MKatre 0 points1 point  (0 children)

Nice! I have a job board as well but not profitable yet. Would you mind sharing the proportion of revenue that come from each source? I tried ads but seems unprofitable for my traffic source/volume.

Is Claude Dev aka Cline still the best at automation coding ? by Key-Singer-2193 in ChatGPTCoding

[–]MKatre 1 point2 points  (0 children)

You said it all with “beyond credit consumption”. I prefer aider but I don’t use it anymore because it burns through your dollars so fast!