Cole | Development

3.8K posts

Cole | Development banner
Cole | Development

Cole | Development

@ncole_dev

Full Stack Developer. Tech, Blockchain, AI.

Joined Ağustos 2012
867 Following1.1K Followers
Pinned Tweet
Cole | Development
Cole | Development@ncole_dev·
A little insight to what I’m building for the @Ultra_io ecosystem… applying for a little grant to get it over the line.. Anyone will be able to build powerful marketplaces like ultraislife and ultra data powered dapps.. Will be open source.. ultraconnect.ultraislife.com $UOS
Cole | Development tweet mediaCole | Development tweet media
English
9
11
53
3.2K
Cole | Development
Cole | Development@ncole_dev·
@mjovanovictech I think it depends on the desired outcome.. I used the strangler fig to upgrade applications from webforms to .net8 MVC incrementally.. microservices is another conversation and level of complexity that we didn’t require.. also be careful with MassTransit as it’s soon a paid prod
English
0
0
0
72
Milan Jovanović
Milan Jovanović@mjovanovictech·
What's the Strangler Fig pattern? Strangler Fig allows you to migrate a legacy system incrementally. You gradually move specific pieces of functionality into new applications and services—an excellent approach for legacy systems. However, there's a smarter way to do this.
Milan Jovanović tweet media
English
3
19
132
9.8K
Cole | Development
Cole | Development@ncole_dev·
@stevensanderson I mean.. if you have a standalone page and it requires a simple bit of MVVM why not? It’s lightweight, simple, well documented.,
English
0
0
2
111
Cole | Development
Cole | Development@ncole_dev·
@mjovanovictech Yes i do a similar thing.. in one of our solutions where there are multiple isolated features which are dependent on client I isolate the contexts by feature despite being in same db as some clients won’t implement certain features so don’t need any knowledge of it
English
0
0
0
23
Milan Jovanović
Milan Jovanović@mjovanovictech·
Why would you want to use multiple EF Core DbContexts in the same application? Here are some excellent use cases: - When working with multiple databases - When you want to separate the concerns - When building a modular monolith - When you have a database read replica
Milan Jovanović tweet media
English
4
9
55
4K
Cole | Development
Cole | Development@ncole_dev·
@thebuggeddev All looks good but it’s a generic product.. a product built for the sake of building a product.. it doesn’t deal with the complexity of a real ecommerce application.. it’s effectively a demo, there is so much more needed for it to deal with the nuances of the real world
English
0
0
0
366
The Bugged Dev
The Bugged Dev@thebuggeddev·
For anyone who still thinks AI can’t build real backend systems here’s my proof doing the talking 😉 I vibe coded a complete 21-page sales dashboard application with a fully integrated database and end-to-end functionality entirely using Codex GPT 5.3 model. It took around 35-40 prompts but many of those were just UI tweaks. Backend itself was finished in < 30 prompts. Entire execution time was < 5 hours, and I personally spent < 2 hours writing prompts. In other words, I vibe coded a full sales dashboard in < 7 hours without writing a single line of code. CAN YOU BELIEVE THAT?? Btw, this isn’t a basic CRUD project either. It includes everything you’d expect from a production ready system from full CRUD operations, persistent data storage, search and filtering, localization, organization management, user invitations, charts, webhooks, rate limits, security, basically all the things people love to say AI “can’t handle.” 🤣 Live: salex-navy.vercel.app
English
54
10
287
51.2K
Cole | Development
Cole | Development@ncole_dev·
@noelcetaSEO Good list but you missed one important one.. add exclusions to robots.txt file so crawlers don’t crawl the faceted urls.. no indexing means they won’t get indexed but may still be crawled..
English
0
0
0
1K
Noel Ceta
Noel Ceta@noelcetaSEO·
Ecommerce site with filters is SEO nightmare. Every filter combination creates new URL: - /shoes/ - /shoes/?color=red - /shoes/?color=red&size=10 - /shoes/?color=red&size=10&brand=nike 50 filters = 1 million+ possible URLs. Google's crawl budget explodes. Duplicate content penalties. Here's how to fix faceted navigation without killing filters: 🧵👇
English
29
58
914
185.4K
Tom Holz
Tom Holz@tomholz·
@ncole_dev @BradAI @oliviscusAI From what Brad was saying, if you need live interaction, you probably do want to stick with ElevenLabs. The product guy in me would try an A/B test, but that's a lot of effort absent a strong business case.
English
1
0
1
48
Oliver Prompts
Oliver Prompts@oliviscusAI·
ElevenLabs just lost its moat 🤯 Someone just dropped Voicebox, and it clones any voice from just a 3-second audio clip, running 100% locally on your machine. 100% Open Source
Oliver Prompts tweet media
English
240
891
9.6K
798.4K
Cole | Development
Cole | Development@ncole_dev·
@tomholz @BradAI @oliviscusAI Hi. So it’s a medical training app so one persona will be a nurse and one will be the concerned patient… the user will be interacting with both
English
1
0
1
51
Tom Holz
Tom Holz@tomholz·
@ncole_dev @BradAI @oliviscusAI Do you have any hypotheses, intuition, or data around what voice generation characteristics matter for your target market and application?
English
1
0
0
60
Cole | Development
Cole | Development@ncole_dev·
@BradAI @tomholz @oliviscusAI So ElevenLabs is still your preference in this space.. I’m currently working with a company building an AI training app and we use ElevenLabs but always on the lookout for cheaper more effective solutions.. Cartesia is one we have just started to look at
English
4
0
1
77
Brad
Brad@BradAI·
You're spot on. In this space the full pipeline is STT, LLM, then TTS, all under 500ms for it to feel natural. You always have to make trade-offs somewhere. For example, if you're running an outbound lead gen campaign to a cold list, speed is everything. You shave off expressiveness to keep responses snappy. But an inbound customer service or tech support call? You can afford a little more latency, so choosing a more expressive voice with real empathy at the expense of 50 to 100ms is absolutely worth it. That's ElevenLabs' moat. Low latency, human-like voices, and the ability to choose the right model for the task at hand. Open source TTS doesn't give you that flexibility at production scale.
English
1
0
4
138
Gaurav Sen
Gaurav Sen@gkcs_·
I have moved from JIRA to Google Sheets, and the planning seems to be simpler. Maybe I am not able to understand how useful JIRA is. Could anyone explain the benefits? We are a startup of ~15 people, looking to manage tasks on a daily basis.
English
141
6
519
81.8K
Anton Martyniuk
Anton Martyniuk@AntonMartyniuk·
@mjovanovictech We also need an API Gateway in Strangler Fig Pattern - to route traffic to a new and legacy endpoints. YARP is a good choice for .NET
English
1
0
4
276
Milan Jovanović
Milan Jovanović@mjovanovictech·
What's the Strangler Fig pattern? Strangler Fig allows you to migrate a legacy system incrementally. You gradually move specific pieces of functionality into new applications and services—an excellent approach for legacy systems. However, there's a smarter way to do this.
Milan Jovanović tweet media
English
2
16
124
7.4K
Samrith Shankar
Samrith Shankar@samrithshankar·
@ncole_dev @gkcs_ @linear I use JIRA daily and’s it’s not worth it for small teams. If you’re a small team using all of those things your mentioned, then you’re tracking useless metrics imho
English
2
0
0
57
Cole | Development
Cole | Development@ncole_dev·
@samrithshankar @gkcs_ @linear GitHub projects is cool but I’d say more useful for dev teams.. if you are a small business team with a mix of people, some non dev.. JIRA is still a great choice
English
0
0
0
15
Cole | Development
Cole | Development@ncole_dev·
@Zorii_ger @iskishor @gkcs_ Jira is free for less than 10 people.. many of my clients and projects find it very useful and once setup is easy to manage and track tasks
English
0
0
0
19
badZorii
badZorii@Zorii_ger·
@iskishor @gkcs_ But most of the times that ends up in over managed projects doesn't it? I mean, 5 person startup paying jira, come on! Or all those Starbucks meetings that for some reason appear as 4 different things on jira.
English
1
0
1
181
Cole | Development
Cole | Development@ncole_dev·
@gkcs_ Some bad takes in this thread imo.. sheets is simpler but JIRA has many advantages - notifications, integrations (slack, GitHub etc) - images, videos easily added to issues - much more advanced visualisation of current work a - reporting, time tracking Its about requirements
English
0
0
0
32
Cole | Development
Cole | Development@ncole_dev·
@samrithshankar @gkcs_ @linear Looks very cool.. thanks for recommending.. however if you are a small team, less than 10 JIRA is free.. Linear only allows 250 issues which is nothing… JIRA is a free and very useful tool for small teams to visualise, assign, track and document work items
English
1
0
0
180
Samrith Shankar
Samrith Shankar@samrithshankar·
Don’t use JIRA. It is only good if you need audit and compliance when third-parties vet it (eg. Deloitte, PWC, etc.) coz they don’t understand shit outside of it. For small teams I highly recommend @linear if you’re a multi-domain team. If you are a developer-only team - GH Projects works like a charm.
English
1
0
0
3.6K
Denis Gajcew ⏚🧯
Denis Gajcew ⏚🧯@DenisGajcew·
@Dave_DotNet To be fair, MediatR is used mostly in a way that can be implemented on your own in less than 50 lines of code spread across ~5 source files. Unless more advanced features of MediatR are needed it's overkill in many applications.
English
1
0
8
716
Dave Callan | dotnet
Dave Callan | dotnet@Dave_DotNet·
Would you still use Mediatr for new project? 👀 This one is being asked at the moment on Reddit. #dotnet
Dave Callan | dotnet tweet media
English
21
3
45
9.5K