LetsShip VS sdk

Compare LetsShip vs sdk and see what are their differences.

LetsShip

Let's learn devops by shipping a final product in .NET 5 (by EliotJones)

sdk

Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI (by dotnet)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
LetsShip sdk
5 113
2 2,540
- 1.1%
0.0 10.0
almost 3 years ago 4 days ago
C# C#
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

LetsShip

Posts with mentions or reviews of LetsShip. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-16.
  • .NET 6 is now in Ubuntu 22.04
    23 projects | news.ycombinator.com | 16 Aug 2022
    I have two DigitalOcean sites on the same VPS just serving from kestrel behind an nginx reverse proxy and then one site on a Hetzner VPS where I was playing around with k3s.

    For digitalocean I followed this post which is probably way out of date now https://www.hanselman.com/blog/publishing-an-aspnet-core-web...

    For the k3s site the source is here https://github.com/EliotJones/LetsShip/blob/main/kubernetes/... though worth noting I have set up LetsEncrypt incorrectly but that's my lack of k3s understanding.

  • We need to have a talk about making life easier for newcomers to .NET
    3 projects | news.ycombinator.com | 15 Nov 2021
    This - https://github.com/EliotJones/LetsShip - hopefully gets you some of the way, it uses VS on Windows for development but I can't imagine the experience in Rider or VS Code for Linux is too disimilar. Individual steps here https://github.com/EliotJones/LetsShip/tree/main/docs/posts

    I need to complete the full guide at some point but the end result is an application deployed on Linux with both a web app and independently scalable crawling services with zero downtime deployments. Hosted site here: https://pricefalcon.me/

    For a simpler deployment without k3s, this guide is the one I originally followed for my trends site and should still work for .NET 6. https://www.hanselman.com/blog/publishing-an-aspnet-core-web...

  • Synchronizing access to a pool of resources
    2 projects | /r/dotnet | 13 Apr 2021
    One example here https://github.com/EliotJones/LetsShip/blob/main/src/PriceFalcon.JobRunner/Worker.cs#L111 where I have several agent applications each of which may start up to 5 jobs, a job can take a couple of minutes to execute and while running the same request twice isn't the end of the world I'd prefer to avoid it. I use FOR UPDATE when selecting to take an update lock on the row in postgres (similar functionality hopefully exists for your DB).
  • New Core MVC App with jQuery in 2021?
    1 project | /r/dotnet | 9 Apr 2021
    I just build out a new MVP site for the purposes of a tutorial with .NET 5 and jQuery with some slightly complex front-end requirements (an interactive iFrame that validates user selections server-side on click) and though it may need to move to an SPA if it got more complex for now jQuery is fine (though assuming IE support is not needed I could have probably just used raw JS instead). https://github.com/EliotJones/LetsShip
  • The Architecture of a One-Man SaaS
    16 projects | news.ycombinator.com | 8 Apr 2021
    I've done a complete 180 on this too, I realised I was reacting from my default position of hostility to new concepts rather than an honest appraisal. I am writing it up at the moment but I've been working on a 1 person SAAS MVP tutorial [0] and though I've definitely misconfigured something having the ability to go from git push to deployed to production with 0 downtime inside of 5 minutes with no manual steps is such a nice flow, versus my previous attempts of SCP and faffing around with services.

    [0]: https://github.com/EliotJones/LetsShip

sdk

Posts with mentions or reviews of sdk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • Programmatically elevate a .NET application on any platform
    2 projects | dev.to | 6 Feb 2024
    [DllImport("libc")] private static extern uint geteuid(); public bool IsCurrentProcessElevated() { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { // https://github.com/dotnet/sdk/blob/v6.0.100/src/Cli/dotnet/Installer/Windows/WindowsUtils.cs#L38 using var identity = WindowsIdentity.GetCurrent(); var principal = new WindowsPrincipal(identity); return principal.IsInRole(WindowsBuiltInRole.Administrator); } // https://github.com/dotnet/maintenance-packages/blob/62823150914410d43a3fd9de246d882f2a21d5ef/src/Common/tests/TestUtilities/System/PlatformDetection.Unix.cs#L58 // 0 is the ID of the root user return geteuid() == 0; }
  • Swift was always going to be part of the OS
    3 projects | news.ycombinator.com | 16 Dec 2023
    > There's definitely things they tried to improve on that... weren't really improvements. The way "assemblies" are matched in .NET is much more sophisticated- the goal there was to try to kill DLL hell. It evolved into the Global Assembly Cache, which is sort of the Windows Registry of DLLs. Not a huge fan of those bits.

    The Global Assembly Cache did not make the jump to the modern .NET (Core). There was the thing called `dotnet store`, but it’s broken since .NET 6: https://github.com/dotnet/sdk/issues/24752

    The assembly redirection hell has also been greatly reduced there.

  • .NET Blazor
    7 projects | news.ycombinator.com | 21 Nov 2023
    I do the same.

    I have a small write-up here: https://chrlschn.dev/blog/2023/10/end-to-end-type-safety-wit...

    You get end-to-end type safety (even better once you connect it to EF Core since you get it all ways to your DB).

    With this setup with hot-reload (currently broken in .NET 8 [0]), productivity is really, really good. Like tRPC but with one of the most powerful ORMs out there right now.

    [0] https://github.com/dotnet/sdk/issues/36918

  • Why does dotnet cli not support updating sdk's?
    1 project | /r/dotnet | 16 Nov 2023
    Noticed an open issue just now.
  • .NET 8 – .NET Blog
    12 projects | news.ycombinator.com | 14 Nov 2023
    You're thinking of https://github.com/dotnet/sdk/issues/22247
  • LÖVE: a framework to make 2D games in Lua
    26 projects | news.ycombinator.com | 13 Sep 2023
    That's a twisted and wrong narrative

    Unity like refers to a Editor driven approach

    Unity became popular with its moonscript language (javascript like), they then ditched it to focus on C#, but what propelled unity to what it is today is the Editor driven approach, not c#, not DOTS

    They are forced to transpile C# to C++ via IL2CPP as a result to target consoles/mobiles

    C# is a disease when it comes to console/mobile support

    It's a substantial dependency, quite heavy

    And you are not free of unity like fuck ups, it's a microsoft language after all:

    https://github.com/dotnet/sdk/issues/22247

    And let's not forget when they changed the license of their debugger overnight to prevent people from using it in their products (jetbrains for example)

    And them deprecating open source tooling to a proprietary/closed one for vscode (c# devkit)

    Let's be careful when we recommend evil as an alternative to evil ;)

  • How to run multiple programs like python3 filename.py???
    1 project | /r/csharp | 21 May 2023
    The script can be found at the end of the thread here https://github.com/dotnet/sdk/issues/8742
  • Writing Python like it's Rust
    10 projects | news.ycombinator.com | 21 May 2023
    Another difference you might be surprised by is that the .NET tooling by default collects various data from your system and sends it to Microsoft [1]. If you want to avoid this (and still want to use .NET) you'll have to make sure that the environment variable DOTNET_CLI_TELEMETRY_OPTOUT is set in all contexts before touching anything.

    [1] https://github.com/dotnet/sdk/issues/6145

  • .NET 8 is on the way! +10 Features that will blow your mind 🤯
    3 projects | dev.to | 18 May 2023
    SDK Pull Request
  • Disadvantages of using F# with Mono?
    2 projects | /r/fsharp | 7 May 2023
    Pretty sure the final file referenced here https://github.com/dotnet/sdk/issues/8742 is the one I am thinking of.

What are some alternatives?

When comparing LetsShip and sdk you can also consider the following projects:

prawn-stack - A pageview counter using the AWS free tier, Postgres, Node and React

kdmapper - KDMapper is a simple tool that exploits iqvw64e.sys Intel driver to manually map non-signed drivers in memory

centos-stream

MQTTnet - MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.

app-engine-cloud-run-

ASP.NET Core - ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.

diagrams - :art: Diagram as Code for prototyping cloud system architectures

.NET Runtime - .NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

node-pg-migrate - Node.js database migration management for PostgreSQL

vscodium - binary releases of VS Code without MS branding/telemetry/licensing

litestream - Streaming replication for SQLite.

CoreCLR - CoreCLR is the runtime for .NET Core. It includes the garbage collector, JIT compiler, primitive data types and low-level classes.