Home New Trending Search
About Privacy Terms
#
#NetCore
Posts tagged #NetCore on Bluesky
Post image Post image

Poco a poco mejorando esta cosa 😂
#Powershell #AsBuiltReport #NetCore #ScottPlot

0 0 0 0
Post image

New episode of "Coding at night" from the creators of "I can't sleep" 😂
#Powershell #AsBuiltReportCharts #NetCore

3 0 0 0
Post image

Stacked Bar Chart

#ScottPlot #NetCore #PowerShell #AsBuiltReportCharts

3 0 0 0
Post image

Añadiendo más mejoras a las gráficas

#NetCore #Powershell #AsBuiltReportCharts #ScottPlot

2 0 0 0
Post image

Ahora a crear los cmdlet :)

#AsBuiltReportCharts #Powershell #ScottPlot #NetCore

2 0 1 0
Post image Post image

Vertical & Horizontal support!

#ScottPlot #AsBuiltReportCharts #Net #NetCore

1 0 0 0
ASP.NET Core Pitfalls - Content Type Mismatch ASP.NET Core Pitfalls - Content Type Mismatch

ASP.NET Core Pitfalls - Content Type Mismatch
developmentwithadot.blogspot.com/2026/01/aspn... #aspnetcore #netcore #pitfalls

0 0 0 0
Post image Post image Post image Post image

Hey, MahApps.Metro.IconPacks v6.2.0 with 69328 #Icons has just been released ❤️🤘

Take it, use it, love it! And give a ⭐ to all used #Icon libs!

👉 github.com/MahApps/MahA...

#IconPacks #OSS #Avalonia #MahApps #XAML #WPF #netcore #dotnet #net8 #net9 #net10 #MVPBuzz #Font

2 0 0 0
Post image Post image Post image Post image

Hey, IconPacks.Avalonia v1.3.0 with 69328 #Icons has just been released ❤️🤘

Take it, use it, love it! And give a ⭐ to all used #Icon libs!

👉 github.com/MahApps/Icon...

#IconPacks #OSS #Avalonia #MahApps #XAML #WPF #AvaloniaUI #netcore #dotnet #net8 #net9 #net10 #MVPBuzz #Font

1 1 0 0
Screenshot of twitter notifications with the tab on 'All'. Below, repeated is "Something went wrong. Try reloading." And a button that says "Retry"

Screenshot of twitter notifications with the tab on 'All'. Below, repeated is "Something went wrong. Try reloading." And a button that says "Retry"

#foundart #netcore

0 0 0 0
Preview
Releases · MahApps/MahApps.Metro A framework that allows developers to cobble together a better UI for their own WPF applications with minimal effort. - MahApps/MahApps.Metro

MahApps.Metro v2.4.11 has just been released ❤️🎉🤘

👉 github.com/MahApps/MahA...
👉 www.nuget.org/packages/Mah...
👉 www.nuget.org/profiles/pun...

#OSS #XAML #netcore #dotnet #net6 #net8 #net9 #net10 #MVPBuzz #WPF #MahApps #XAML #ControlzEx

@rickstrahl.west-wind.com

1 0 0 0
Post image Post image

Sonic net core (or idk what to call it, Windows?) doodle

#Sonic #SonicTheHedgehog #netcore #Fanart #Art #Doodle #food #fyp #foryou #windows #animal

2 0 0 0

tag: #qingyi #dotnet #base #baseencoding #encode #encoding #io #fileio #Microsoft #nuget #opensource #compress #compression #encryption #encrypt #net5 #net6 #net7 #net8 #net9 #net10 #netcore #csharp #netframework #programming #library

1 0 0 0
Post image Post image

IconPacks.Avalonia v1.2.0 with 65612 #Icons has just been released ❤️🤘

Take it, use it, love it! And give a ⭐ to all used #Icon libs!

👉 github.com/MahApps/Icon...

#IconPacks #OSS #Avalonia #MahApps #XAML #Material #WPF #AvaloniaUI #netcore #dotnet #net8 #MVPBuzz #Font

1 1 0 0
Post image Post image Post image Post image

Hey, MahApps.Metro.IconPacks v6.0.0 with 65181 #Icons has just been released ❤️🤘

Take it, use it, love it! And give a ⭐ to all used #Icon libs!

👉 github.com/MahApps/MahA...

#OSS #Avalonia #MahApps #XAML #Material #WPF #AvaloniaUI #netcore #dotnet #net8 #MVPBuzz

0 1 0 0
Post image Post image Post image Post image

Hey, IconPacks.Avalonia v1.1.0 with 65181 #Icons has just been released ❤️🤘

Take it, use it, love it! And give a ⭐ to all used #Icon libs!

👉 github.com/MahApps/Icon...

#OSS #Avalonia #MahApps #XAML #Material #WPF #AvaloniaUI #netcore #dotnet #net8 #MVPBuzz

2 2 0 0

Implement structured logging in your e-commerce app with Serilog & .NET Core for better monitoring! Improve error tracking, performance analysis & system insights. Check out this guide to get started. #NETCore #Serilog

0 0 0 0
Post image

#weirdcore #netcore #stoneraesthetic #stoner #aesthetic

1 1 0 0

Explore the benefits of Core-Driven Architecture for .NET applications! Enhance maintainability and scalability by structuring your business logic effectively. #NETCore #SoftwareArchitecture

1 0 0 0
Preview
Difference Between Web API and REST API Feature | Web API | REST API ---|---|--- **Definition** | A framework for building **HTTP-based services** in .NET Core or other technologies. | A set of architectural principles for designing **stateless, resource-based APIs**. **Protocol** | Can work over **HTTP, TCP, or other protocols**. | Strictly works over **HTTP**. **Architecture** | Can follow **REST, SOAP, or other communication styles**. | Strictly follows **RESTful principles**. **Data Format** | Can return **JSON, XML, or other formats**. | Typically returns **JSON** , but can support XML as well. **State Management** | Can be **stateful or stateless**. | **Stateless** (Each request is independent). **Methodology** | Based on **ASP.NET Core, WCF, or other technologies**. | Follows **CRUD operations** using standard HTTP methods. **Use Case** | Used for **building APIs for various communication styles**. | Used for **creating scalable, resource-oriented web services**. ### **Example to Clarify the Difference** * A **Web API** can be **RESTful** , but it can also be SOAP-based or use different communication protocols. * A **REST API** always follows REST principles, using HTTP for communication. #### **Example of a Web API (Non-RESTful)** A SOAP-based API in ASP.NET Core: <soap:Envelope> <soap:Body> <GetProduct> <Id>1</Id> </GetProduct> </soap:Body> </soap:Envelope> #### **Example of a REST API** A RESTful API using HTTP: GET /api/products/1 HTTP/1.1 Host: example.com Response: { "id": 1, "name": "Laptop", "price": 50000 } ### **Key Takeaway** * If you **build an API in .NET Core** , it is called a **Web API**. * If your Web API follows **REST principles** (stateless, resource-based, uses HTTP methods like GET, POST, PUT, DELETE), then it is also a **REST API**.
0 0 0 0
Preview
Difference Between Web API and REST API Feature | Web API | REST API ---|---|--- **Definition** | A framework for building **HTTP-based services** in .NET Core or other technologies. | A set of architectural principles for designing **stateless, resource-based APIs**. **Protocol** | Can work over **HTTP, TCP, or other protocols**. | Strictly works over **HTTP**. **Architecture** | Can follow **REST, SOAP, or other communication styles**. | Strictly follows **RESTful principles**. **Data Format** | Can return **JSON, XML, or other formats**. | Typically returns **JSON** , but can support XML as well. **State Management** | Can be **stateful or stateless**. | **Stateless** (Each request is independent). **Methodology** | Based on **ASP.NET Core, WCF, or other technologies**. | Follows **CRUD operations** using standard HTTP methods. **Use Case** | Used for **building APIs for various communication styles**. | Used for **creating scalable, resource-oriented web services**. ### **Example to Clarify the Difference** * A **Web API** can be **RESTful** , but it can also be SOAP-based or use different communication protocols. * A **REST API** always follows REST principles, using HTTP for communication. #### **Example of a Web API (Non-RESTful)** A SOAP-based API in ASP.NET Core: <soap:Envelope> <soap:Body> <GetProduct> <Id>1</Id> </GetProduct> </soap:Body> </soap:Envelope> #### **Example of a REST API** A RESTful API using HTTP: GET /api/products/1 HTTP/1.1 Host: example.com Response: { "id": 1, "name": "Laptop", "price": 50000 } ### **Key Takeaway** * If you **build an API in .NET Core** , it is called a **Web API**. * If your Web API follows **REST principles** (stateless, resource-based, uses HTTP methods like GET, POST, PUT, DELETE), then it is also a **REST API**.
0 0 0 0
ASP.NET Core Extension Points - MVC Blog on development in general and in .net in particular. Created and maintained by Ricardo Peres

ASP.NET Core Extension Points - MVC developmentwithadot.blogspot.com/2025/03/aspn... #csharp #netcore #aspnetcore #mvc

1 0 0 0
ASP.NET Core Extension Points - Core ASP.NET Core extensibility

ASP.NET Core Extension Points - Core developmentwithadot.blogspot.com/2025/03/aspn... #csharp #aspnetcore #netcore

1 1 0 0
Post image

#webcore #cyberpunk #webpunk #netcore #retro #secondlife #secondlifeavi #secondlifeavatar #secondlifephotography #demon #internetdemon #avatar #metaverse #digital #digitalart #digitalartist #skullboy #collage #demonpunk #avi #desert #glitch #glitchhart #screenshot #screenshotart #trippy #OC #OCart

15 2 1 0
Post image

#webcore #cyberpunk #webpunk #netcore #retro #secondlife #secondlifeavi #secondlifeavatar #secondlifephotography #demon #internetdemon #avatar #metaverse #digital #digitalart #digitalartist #skullboy #collage #demonpunk #avi #desert #glitch #glitchhart #screenshot #screenshotart #trippy #OC #OCart

5 1 0 0

#webcore #potatopunk #webpunk #netcore #retro #secondlife #secondlifeavi #secondlifeavatar #secondlifephotography #demon #internetdemon #avatar #metaverse #digital #digitalart #digitalartist #skullboy #collage #demonpunk #avi #desert #obsidian #skeleton #trippy #evileye

1 0 0 0
Post image

AS I WAS CUT
I COULD
FEEL MYSELF
PEEL

#webcore #cyberpunk #webpunk #netcore #retro #secondlife #secondlifeavi #secondlifeavatar #secondlifephotography #demon #internetdemon #avatar #metaverse #digital #digitalart #digitalartist #skullboy #collage #demonpunk #avi #desert #obsidian #skeleton #trippy

8 0 0 0
Post image

#webcore #cyberpunk #webpunk #netcore #retro #secondlife #secondlifeavi #secondlifeavatar #secondlifephotography #demon #internetdemon #avatar #metaverse #digital #digitalart #digitalartist #skullboy #collage #demonpunk #avi #desert #obsidian #skeleton #trippy #evileye

8 1 1 0
The Disposable Pattern in ASP.NET Core Blog on development in general and in .net in particular. Created and maintained by Ricardo Peres

The Disposable Pattern in ASP.NET Core developmentwithadot.blogspot.com/2025/01/the-... #aspnetcore #netcore #csharp

1 0 0 0
Post image

Learning about Model Binding
#.net #netcore #visualstudio

0 0 0 0