patriksvensson/rustcalc A simple experiment showing a Rust library compiled to WASM and used in a simple web page. - patriksvensson/rustcalc
Massive White Supremacist Message Board Leak: How to Access and Interpret the Data - bellingcat Update: The Internet Archive has removed the SQL leak; however, the information is freely available via a torrent file (download here) or a Magnet link (click here, or copy/paste the link into a torrent client). Today, the entire SQL database from Iron Ma...
Re-Licensing Sentry Our projects now use the Business Source License (BSL), to protect them from being misused without changing anyone’s ability to run Sentry at their company.
Superintelligence: The Idea That Eats Smart People This is the text version of a talk I gave on October 29, 2016, at Web Camp Zagreb [video] (45 mins)
Securing your Blazor App with Auth0 (client side) - DEV Community 👩💻👨💻 . Tagged with blazor, auth0, csharp, auth.
Thoughts on DNS-over-HTTPS Type in your web browser’s address bar and hit enter. What happens? Before connecting to the example.com server, your browser must convert “example.com” to the network address at …
.NET Core with Jupyter Notebooks - Available today | Preview 1 | .NET Blog Jupyter Notebook with .NET core is here! You can now write C# and F# code in a Jupyter notebook. Create your .NET Jupyter notebook today.
Join the Visual Studio for Mac ASP.NET Core Challenge | Visual Studio Blog We’d like to invite you to take part in a new community challenge in which you can interact directly with our team to improve Visual Studio for Mac, explore some great looking ASP.NET Core samples, and earn prizes!
BinomialLLC/basis_universal Basis Universal GPU Texture Codec. Contribute to BinomialLLC/basis_universal development by creating an account on GitHub.
Base64 encoding and decoding at almost the speed of a memory copy Many common document formats on the Internet are text-only such as email (MIME) and the Web (HTML, JavaScript, JSON and XML). To include images or executable code in these documents, we first encode them as text using base64. Standard base64 encoding uses...
New version of Durable Functions available now | Azure updates | Microsoft Azure Announcing the general availability of the version 2.0 of Durable Functions, the extension of the Azure Functions runtime that enables stateful functions and workflow orchestrations in a serverless environment.
Memory management and patterns in ASP.NET Core Learn how memory is managed in ASP.NET Core and how the garbage collector (GC) works.
Long GC pause times caused by Array.Sort of primitive array · Issue #13730 · dotnet/runtime Repro: static void Main() { new Thread(() => { var src = new int[10_000_000]; for (;;) Array.Sort(src); }).Start(); for (;;) { Console.WriteLine("GC start"); GC.Collect(); Console.Writ...