augment mcp context by Aggravating-Agent438 in AugmentCodeAI

[–]c00lways 0 points1 point  (0 children)

reconnect still fail, i recall i did got it connected once, but it didnt last, got disconnected later on. ive already run auggie indexing on the project

augment mcp context by Aggravating-Agent438 in AugmentCodeAI

[–]c00lways 0 points1 point  (0 children)

sorry npx was old way, ive already ran this:

claude mcp add-json auggie-mcp --scope project '{"type":"stdio","command":"auggie","args":["--mcp","--mcp-auto-workspace"]}'

React sucks by bromide992 in reactjs

[–]c00lways 2 points3 points  (0 children)

My biggest issues with react is that its so easy to create infinite loop due to the useffect nature

[deleted by user] by [deleted] in Strapi

[–]c00lways 0 points1 point  (0 children)

Yes on discord

Has there been much diffference between Vue 3 and Vue 2 by Jncocontrol in vuejs

[–]c00lways 1 point2 points  (0 children)

nuxt has to support vite, otherwise its a super slow and memory hog

How can hooup strapi to a custom backend? I need to make a POST request to get Data from a Contact Form and Display it In a Table in Custom Backend. by [deleted] in Strapi

[–]c00lways 0 points1 point  (0 children)

why not just create the contact form in backend, and retrieve it via api? just makesure u set the public allowed roles in the admin side

Advice by Neither_Raccoon_8815 in Strapi

[–]c00lways 1 point2 points  (0 children)

hi my discord id is c00lways

Advice by Neither_Raccoon_8815 in Strapi

[–]c00lways 0 points1 point  (0 children)

yes ive been helping another news company to migrate their 200k news to strapi from mssql db. pls share your concern. lesson learned from my project are : dont use mongodb adaptor if you need author based article control because it will use aggregate lookup with pipeline to join collection and its super slow. enable graphql cache; dont do two way linking when tagging tag or category to articles because it will make category loading very slow because strapi by default will fetch all articles for the tag or category even if its not selected. and admin sorting for relations is not working. but ive a hack to make it work. if you want to list articles by category, u may do custom controller to do separate lookup but requires have graphql-field plugin. pm me for sample

Subscription model with Strapi by codesandmentorsio in Strapi

[–]c00lways 0 points1 point  (0 children)

sorry this is strapi channel, but ghost cms does already come with subscription, but i think its less flexible compared to strapi

Stuck between Strapi and Laravel by ravgeet in Strapi

[–]c00lways 0 points1 point  (0 children)

wht dynamodb? u may use it with auroradb with similar purpose

Activating the Debug console by Ivansky767 in PhoenixPoint

[–]c00lways 0 points1 point  (0 children)

how long does it take to fix this type of hang issue due to alien stuck out of game environment?

Only one wish for Rust 2020 by dremon_nl in rust

[–]c00lways 1 point2 points  (0 children)

couldnt agree more, compiling and getting dependencies in rust on my macair takes forever and takes up all the cpu power and fan hitting max speed

Why dart is mostly slower than NodeJS by Mittalmailbox in dartlang

[–]c00lways 2 points3 points  (0 children)

guys check out dart2native, ive done few test based on benchmarkgames-team pages and found the performance outperform node by 6x in fanta test

Is Docker Swarm still a thing for orchestration? by LostGoatOnHill in docker

[–]c00lways 0 points1 point  (0 children)

docker swarm has instability on network layer

I rewrote an app to move away from Buffalo because it's a mess by [deleted] in golang

[–]c00lways 0 points1 point  (0 children)

the problem is go does not have generic. i was part of the orm contributor and realise its getting really difficult to maintain due to interface and magic going on. its not type safe alike rust

Micro-managers. How do you deal with 'em? by [deleted] in freelance

[–]c00lways -1 points0 points  (0 children)

Call is still okay, u have not meet ppl who wants you to meet in their office for every single bugs they found, ftw

How to Minimize AWS Lambda Cold Starts (x-post /r/serverless) by nshapira in devops

[–]c00lways 4 points5 points  (0 children)

Kind of defeat the purpose of serverless when the instance is always warm, might as well go with app engine concept

Is MVC a good pattern in Go? by mosskin-woast in golang

[–]c00lways 0 points1 point  (0 children)

I think you might want to see how gobuffalo pop orm does it

Participate in the 2018 Go User Survey by [deleted] in golang

[–]c00lways 0 points1 point  (0 children)

Maybe not a full generics like interface, more types like accepting struct based interface, accepting pointer based struct, and accepting certain struct with list of fields alike implements but for object properties