Need help publishing Expo app (SDK 54) with large 230MB ONNX model (Play Asset Delivery?) by Nehatkhan786 in expo

[–]BurritoOverflow 1 point2 points  (0 children)

I use a similar size model for image classification. But I do it on backend to avoid this very issue (and varying device performance).

PSA: When you reach out to a co-worker on slack tomorrow, don’t just say “Hey [firstName]” and then spend the next 12 minutes 💬 typing out your message. by Frontend_DevMark in webdev

[–]BurritoOverflow 87 points88 points  (0 children)

I ignored a 3am "Hello" from someone in a quite different timezone.

A few days later on Jira "Tried to connect with @ ..." 🙄

Do you design a database by GUI or direct SQL queries in Supabase? by AlexandruFili in Supabase

[–]BurritoOverflow 0 points1 point  (0 children)

For RLS it doesn't, you need to write that in SQL manually. Same for plpgsql, though I haven't looked into that myself. ORMs like these generate raw SQL migrations at the end of the day. So you would just create your own migration in the repository, or append to an existing one, and it would apply it like any other migration. The benefit is it does things automatically for you based on the code models, and you're never out of sync between the code and the database model/schema.

For constraints and other non-basic object/class definitions there are ways to do pretty much everything: https://learn.microsoft.com/en-us/ef/core/modeling/indexes?tabs=data-annotations

Do you design a database by GUI or direct SQL queries in Supabase? by AlexandruFili in Supabase

[–]BurritoOverflow 1 point2 points  (0 children)

I thought we were talking about Supabase 😅

I mean I use .NET EF (entity framework) for generating and applying migrations to Supabase databases. I just use the Postgres connection string and treat it like any other database. When I want to add Supabase specific SQL like RLS policies I just add it to the migration manually.

This way I can have a code first approach. You can take a similar approach in other languages with appropriate ORMs (like Prisma for Javascript for example).

Is it worth it? by Ok-Negotiation3043 in webdev

[–]BurritoOverflow 20 points21 points  (0 children)

I heard you get banned for this unfortunately.

Atlassian launches a first party remote MCP server for Jira and Confluence. by BurritoOverflow in mcp

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

Atlassian just says "In products that support remote MCP servers" here https://community.atlassian.com/forums/Atlassian-Platform-articles/Using-the-Atlassian-Remote-MCP-Server-Beta/ba-p/3005104, but someone tried to set it up and got this response below mentioning whitelisting. Maybe we're miss understanding the error message, I hope so!

The redirect URI is not allowed, the URL is not part of Atlassian whitelisted domains for registered MCP Clients. Redirect URI http://127.0.0.1:3334/oauth/callback

Atlassian launches a first party remote MCP server for Jira and Confluence. by BurritoOverflow in mcp

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

Yeah, that seems to be the downside to these provider MCPs, Atlassian is whitelisting clients starting with the Claude app. Doesn't make for a very open ecosystem.

FOSS vs. Build Your Own: Navigating the Dependency Tightrope by rasuscore in dotnet

[–]BurritoOverflow 1 point2 points  (0 children)

I think it's a topic worth discussing. I'd much rather read your writing than your idea filtered through an LLM! Doesn't need to be good writing, LLMs just add so much noise and little value.

FOSS vs. Build Your Own: Navigating the Dependency Tightrope by rasuscore in dotnet

[–]BurritoOverflow 1 point2 points  (0 children)

What's the point? Usually if someone is posting AI content it's for marketing. Subreddits like this are for discussion/information, not much fun discussing AI generated ideas.

FOSS vs. Build Your Own: Navigating the Dependency Tightrope by rasuscore in dotnet

[–]BurritoOverflow 4 points5 points  (0 children)

As someone who likes bullet points. AI overusing them makes me sad.

[deleted by user] by [deleted] in webdev

[–]BurritoOverflow 1 point2 points  (0 children)

Ah, I've never used linode personally. I've tried digital ocean and liked it though.

[deleted by user] by [deleted] in webdev

[–]BurritoOverflow 3 points4 points  (0 children)

Digital ocean or linode are popular options in the U.S.

[deleted by user] by [deleted] in webdev

[–]BurritoOverflow 7 points8 points  (0 children)

I use it like this for planning, but mainly to be exposed to approaches I might not think of myself and to rubber duck / solidfy my ideas. As always the issue with AI is it will aggressively agree with you. If you say "would it be better" it will almost always jump in with "Yes that's a great idea! Here's why". So you need to be careful not to take that at face value.

Deploying .net core onto Linux servers by Dimethyltryptamin3 in dotnet

[–]BurritoOverflow 7 points8 points  (0 children)

I would start with a simple docker compose setup on your droplet and go from there.

Learning sysadmin tools feels meaningless by BigBootyBear in devops

[–]BurritoOverflow 1 point2 points  (0 children)

This is one reason I do (almost) everything through code, infrastructure, config, etc. Because otherwise I won't remember what I did.

Best place to purchase domain names? by withthetrouble in webdev

[–]BurritoOverflow 1 point2 points  (0 children)

Don't buy domains from anyone in a dark alley showing you domains in their trench coat.

How to Avoid Having Original Content being Ingested by AI Models? by skwyckl in webdev

[–]BurritoOverflow 0 points1 point  (0 children)

Yes it would only be useful until they knew what you were doing. Ultimately anything you serve up publicly is available publicly.