Coding
Xamarin dynamic grid MVVM model
I am trying to create a table in C# by using the grid system.When the grid is generated I assign it to my property GridLayoutand use Bindingto set it in my XAML. However the page Read more…
I am trying to create a table in C# by using the grid system.When the grid is generated I assign it to my property GridLayoutand use Bindingto set it in my XAML. However the page Read more…
C# Wasm Benchmark is a project that compares the performance of: C# Wasm AOT C# Wasm Interpreted C# Runtime (.NET 5) JavaScript I have for a long time wanted to inspect the performance of C# Read more…
I’m trying to write fast long division using techniques like register lowering and rewriting the entire operation using cheaper instructions like shifts. Why? FOR SCIENCE! Benchmark code here: https://gist.github.com/badamczewski/4361974487c102bf7c02680257c7e49f Other Methods: (posting images crashes my Read more…
So I’ve got a production ASP c# WebAPI where abuse of the API has stressed other resources, and I would be delighted at any feedback on how others address these or similar issues. The answer Read more…
Hi guys, I wrote a post on how to get a web app to communicate with a native app on the user’s local machine. https://justsimplycode.com/2021/01/03/web-app-communicates-to-native-app-on-user-local-machine/ Useful info! Thx. Regretfully chrome only though. In the past Read more…
I’m using Dapper to create an equipment inventory from my database. Multiple comments are mapped from a Comments table to the Comments property of EquipmentModel. I’ve successfully used StringBuilder to populate the inventory in a Read more…
I’ve been a developer a long time, however I’ve always found it fascinating to learn how people structure their solutions and by extension the applications that they build. With its infinite flexibility, I’ve found that Read more…
I was playing around with hosted applications. But whenever i use “UserName” in appsettings.json it gets replaced by a different value. I had set it to “servicebus” but it contained “Llama”, is it somehow pulling Read more…
So I made this playerMovement script, where I am working on getting the player to be able to jump. I am having a problem concerning conversion of variables, in my case: AssetsScriptsPlayerMovement.cs(32,12): error CS0029: Cannot Read more…
I have been working on a parser-combinator library called ParserObjects. The library is approaching a 3.0.0 release, and I am looking for some feedback. The library has borrowed some inspiration from a number of sources Read more…