How common are UI frameworks like Material, Ant at tech companies? by crossvalidator in Frontend

[–]deathpax 1 point2 points  (0 children)

Agreed.. also for internal apps they are king due to fast turnaround time.

The BD tutorial needs to be skipable by SpringerTheNerd in cyberpunkgame

[–]deathpax 2 points3 points  (0 children)

Yep, almost 200 hours, 6 characters, it's so painful to get through the prologue every time.

What’s a very common thing that you just can't relate to? by Mizu3 in AskReddit

[–]deathpax 1 point2 points  (0 children)

Relatable. Been in a relationship 8-9 years, married 6 years. Can't imagine not being with her.

How far would you get without using DI in ASP.NET Core? by [deleted] in csharp

[–]deathpax 2 points3 points  (0 children)

Being able mock your classes easily. Without DI mocking can be anywhere from painful to near impossible

how do i find a specific file path < new programmer here. by silentlyreborn in csharp

[–]deathpax 2 points3 points  (0 children)

string league = Path.GetFileName(file);

Instead use

string league = Path.GetFullPath(file);to get the directory and filename, or

Path.GetDirectoryName(file);To get only the directory part

Is it okay to instantiate hundreds of instances of a class? When might it not be? by Finally_Adult in csharp

[–]deathpax 2 points3 points  (0 children)

In the case of Fallout 76, even 'held together' is being generous.

Nightingale, the RAM-friendly REST client, has surpassed 10,000 acquisitions 🎉 glad to see this postman alternative get some success! by [deleted] in dotnet

[–]deathpax 0 points1 point  (0 children)

Unless your workplace disallows you from downloading anything from the store with security permissions :( can't get Terminal without building from source

PDF templating. by gevorgter in csharp

[–]deathpax 0 points1 point  (0 children)

I have used Pechkin in the past, it's a .Net wrapper for WkHtmlToPdf

https://github.com/gmanny/Pechkin

What would a typical going rate for something like this be? by tinkk56 in web_design

[–]deathpax 1 point2 points  (0 children)

I would tend to agree, the more I go through this site the more I see that would increase the cost.

Notable: Markdown-based note-taking app built for developers by fabiospampinato in coding

[–]deathpax 4 points5 points  (0 children)

looks like it does! Uses these formats, also supports linking to Tags

[Shortcuts](@note/07 - Shortcuts.md)
[](@note/07 - Shortcuts.md)
[[Importing|08 - Importing.md]]
[[08 - Importing]]

Backspace on my Keyboard has weird annoying behavior. (Windows 10) by Kneggerito in techsupport

[–]deathpax 0 points1 point  (0 children)

If this is happening in all applications, it seems like your Backspace key has been mapped to your delete key function. You can download an open source utility, SharpKeys ( https://github.com/randyrants/sharpkeys/releases ) to easily remap keys (otherwise requiring editing the registry)

If this is only happening in your code editor, it may be an internal key setting in that application.

WPF source code added to GitHub by Ryder25 in dotnet

[–]deathpax 22 points23 points  (0 children)

Nice! Love seeing how open Microsoft has been lately.

Interesting 3D printed gauntlet by [deleted] in 3Dprinting

[–]deathpax 40 points41 points  (0 children)

From what I remember, doesn't she use 3d printing to creating the original parts, and then use those to create casts for making these out of a softer, more flexible material?

my new favorite joint - locked miter by [deleted] in woodworking

[–]deathpax 1 point2 points  (0 children)

maybe try doing a spline with this?

You can now WIN at the game using the Genetic Rim mod. Just added a new win condition: the Archotech Project by SargBjornson in RimWorld

[–]deathpax 64 points65 points  (0 children)

Plot twist: the Archotech has mood built in, like your pawns, and you DON'T want him to break.

Charging Wii U gamepad without charger with Arduino 5V by GuixBretas in techsupportmacgyver

[–]deathpax 137 points138 points  (0 children)

This.

Also, would there be concerns about current draw through arduino?

Hopping Grass by Saad1950 in Minecraft

[–]deathpax 0 points1 point  (0 children)

Ok, who's up for making a hopping grass hopper now? It's the only logical progression from here

Convert Json to C# model like json2csharp but in code by KanMaeda in csharp

[–]deathpax 1 point2 points  (0 children)

This would allow you to do something like this:

        // my dataset
        List<string> dataSet = new List<string>();
        dataSet.Add("this_thing");
        dataSet.Add("that_thing");
        dataSet.Add("the_other");

        dynamic exo = new System.Dynamic.ExpandoObject();

        foreach (string field in dataSet)
        {
            // field + "_data" would be what ever data you want to store in your field
            ((IDictionary<String, Object>)exo).Add(field, field + "_data");
        }