When putting your build together, you’ll need to decide on the following parts:
Caliber, barrel length, purpose?
Brace or stock?
Do you want your brace or stock to fold?
Ratcheting castle nut or staked castle nut?
What upper and lower receiver do you want?
Which trigger do you want or require?
Is your lower parts kit Mil-Spec or upgraded?
BCG.
Charging Handle (rear charging or side charging?).
Handguard preference?
Muzzle device?
Optics/Sights?
Pistol Grips/Foregrips
Barrel Takedown or Breakdown Kits
Cerakote choice (optional)
For Issues with SDKs or Runtimes not running, try this:
https://github.com/theolivenbaum/Electron.NET/
Or, try this:
https://github.com/ElectronNET/Electron.NET/issues/704
This custom web Stack aims to do two things: Maximize the use of HTMX and make UI much easier and more fun to work with in the emerging
dotnet core
Linux era.
I. Essentially, I'm supporting the generation of HTML directly from as many backends or API's as possible, without needing Javascript Framework or complicated squeaky toys like Microsoft's Blazor.
Just simple, old-school HTML, CSS and the occasional line of Javascript or C#.
II. On the backend side of things, I've added support for .sql
and .cypher
files as first class citizens. They can
be easily imported by name, or even mapped to Razor CRUD functions by name. This makes the following 3 sample codefiles
incredibly easy to maintain for all team members of all types:
-- Gets all Parts with Colt as the manufacturer:
SELECT * FROM mynugsdatabase.Parts part
WHERE part.Manufacturer LIKE '%Colt%'
-- .. etc.
# A specific User (node) is updated to "Like" a particular Build (another node), thereby forming a direct relationship which can be queried.
# Returns BOTH the build liked and the User as JSON.
MERGE (user1:User { name: $userName })
MERGE (build1:Build { name: $buildName })
MERGE (user1)-[:LIKES]->(build1)
RETURN user1, build1
https://github.com/chartjs/awesome
Htmx Hydro/Alpine.js AlpineJS tags DaisyUI TailwindCSS
Anything, really, but mainly:
[Neo4j]() - For mapping complex relationships that SQL cannot easily model or efficiently query. [MySQL]() - For ubiquitousness and ease of use. [Sqlite3]() - For local/mobile storage. [Pocketbase]() - For private uses.
Railway.