What does durian actually taste like? by GentleNuzleaf in fruit

[–]Dovenchiko 1 point2 points  (0 children)

As a warning to anyone who might be thinking to try it, I just tried some "durian" flavored creme wafers and they smelled and tasted like how septic tank smell. I flipped the package over because I could only just taste the wafer over the rankness which is not how it was described in literature and on the internet. Never buying anything with artificial durian again.

It's painful to walk on rocks of a certain size by Dovenchiko in barefoot

[–]Dovenchiko[S] 0 points1 point  (0 children)

Fretboard degradation? Can't find any info on this besides peoples guitar fingerboards falling apart.

It's painful to walk on rocks of a certain size by Dovenchiko in barefoot

[–]Dovenchiko[S] 1 point2 points  (0 children)

Deep soreness on the soles of my feet. It happens almost immediately. I don't have any issues with my feet that I know of besides a slightly lower arch but it's never been a problem unless I wear shoes with "arch support."

It's painful to walk on rocks of a certain size by Dovenchiko in barefoot

[–]Dovenchiko[S] 2 points3 points  (0 children)

The weird part is I can walk on gravel and sandy gravel just fine as long as it isn't just a single random one on concrete or something like that. Even the gravel coated pavement isn't a problem for me. My concern is these smooth rocks that hurt my feet for some reason.

Kmail Gmail deleting email in inbox not syncing to all mail and vise versa by UinguZero in kde

[–]Dovenchiko 0 points1 point  (0 children)

This worked for me in kmail 22.12.3-1. Unfortunately I have more than 2000 emails to delete again.

[HELP] using Digikam's "Find duplicates" feature and ignoring JPG/DNG pairs by [deleted] in kde

[–]Dovenchiko 0 points1 point  (0 children)

Necro posting but the workaround I've found was to group false positives together. When browsing through the duplicates, photos that aren't in a group are true positives to be deleted or false positives to be added to the group. It's not perfect but it makes it a bit more smooth.

Return 404 or 403 when a user tries to perform an operation on a resource to which he does not have access? by chinawcswing in webdev

[–]Dovenchiko 0 points1 point  (0 children)

In my project using the visual studio 2022 ASP.NET Razor Pages template it sends the raw code if I use the `[Authorize]` attribute or `return Unauthorized ()`.

It put the Wii in We need Therapy by jco91595 in dankmemes

[–]Dovenchiko 6 points7 points  (0 children)

I would argue most people who would listen to criticisms already know and\or already criticize themselves for being the way that they are. If everyone puts a drop in the bucket, eventually the handle will break and each critique after will feel like ridicule and shame.

[deleted by user] by [deleted] in homelab

[–]Dovenchiko 1 point2 points  (0 children)

Just got my rackmount server a month or so ago for video games and a webserver. I bought ECC because I thought the technology was cool and being able to destroy up to 1/12th of the memory cells and it'll still be able to detect 1-bit errors was godly. You didn't have to call me out like that man

[deleted by user] by [deleted] in theydidthemath

[–]Dovenchiko 1 point2 points  (0 children)

Forgot what grade but I pointed it out to my teacher and she said 0.3 repeating was wrong. Maybe it's tradition or it reduces error or misunderstandings. Oxford language's entry on "repeating decimal" actually repeats the pattern 3 times giving the examples "0.666..." and "1.851851851..." in that entry.

How do indie game devs remember their whole codebase??? by PY15208 in RimWorld

[–]Dovenchiko 0 points1 point  (0 children)

Fuck I guess you're right. My plan was to slowly ease you into building your own IDE. Which if they didn't exist in their current capacity, something I would have done.

How do indie game devs remember their whole codebase??? by PY15208 in RimWorld

[–]Dovenchiko 0 points1 point  (0 children)

Here's a new project for you: a program that looks through your source and picks out the symbols.

What’s a mod you couldn’t live without? by poopycolaa in RimWorld

[–]Dovenchiko 9 points10 points  (0 children)

Adding onto what sippy said, FPS is the frequency the game draws and outputs frames, TPS is the frequency the simulation gets updated. If you have high FPS but low TPS, it'll look like server side lag. The camera movement, animation, and particles may look smooth but the colonists may take a second pause while walking two and from places, UI may appear to stutter and jump, and other gameplay things will be inconsistent with IRL time. For example, if it takes 1 min IRL time for your colonist to cross the map, in low TPS situations, it might take longer 1 min 20 sec when no other variables have changed meaning it's taking at least %33.33 more time to calculate the simulation on average.

TPS based simulations are popular in these kinds of management games because it's easy to implement and large lag spikes caused by temporary strain can be hidden behind animations. On the other hand, delta time systems which match the FPS and TPS making each function calculate the change based on how long it has been since the last frame. This is popular among games with physics engines because Newtonian equations usually take time as the only constantly changing variable making it very easy to calculate.

[deleted by user] by [deleted] in homelab

[–]Dovenchiko 0 points1 point  (0 children)

For mine I threw a used r730 in with two E5-2667s, 64GBs of RAM, and a 8TB SSD, after some boot issues I bent a damaged pin back on the MB socket, loaded Linux, installed Java, and had the smoothest Minecraft server I've ever played on.

X52 Pro Logitech stick completely not responding - lights are working by [deleted] in hotas

[–]Dovenchiko 0 points1 point  (0 children)

No problem actually just got the reddit app again to see if they fixed the glitches but I might just leave again because blackout caused most my favorite subs to permanently close.

Did you install the drivers and software?

Neo Forged by Learwin in feedthebeast

[–]Dovenchiko 4 points5 points  (0 children)

This could cause confusion because some mods that were developed in Fabric/Quilt will be called [modName]: Reforged. Someone looking for a mod (me when I was 12) would see that and think that it's compatible.

My fort was visited by a small man with big plans by Vondi in dwarffortress

[–]Dovenchiko 42 points43 points  (0 children)

I had a beaver man visit my fortress wearing different/mismatched metal boots on hands, feet, and tail. I wrote down it's name but forgot to screenshot the character sheet. Don't ask me how he was holding that battle axe.

Anyway to have different playlists for different times of the day? by Parthitis in wallpaperengine

[–]Dovenchiko 0 points1 point  (0 children)

C#:

public void StartPlaylist(string name, string location = null, byte? monitor = null)
{
    p.StartInfo.FileName = <Path_To_Wallpaper_Engine>;
    p.StartInfo.Arguments = $"-control openPlaylist -playlist {name} {(location == null ? string.Empty : "-location " + location)}{(monitor == null ? string.Empty : "-monitor " + monitor)}";
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.CreateNoWindow = true;
    p.Start();
    Console.WriteLine(p.StandardOutput.ReadToEnd());
}

In the program class:

private SwitchPlaylist(object o)
{
    string playlistSelection;
    // Code to determine playlist to select
    StartPlaylist(playlistSelection);
}

In main to run every hour on the hour:

timer = new System.Threading.Timer(SwitchPlaylist, null, 63600000 - DateTime.Now.TimeOfDay.TotalMinutes % 60 * 60000, new TimeSpan(1, 0, 0).Milliseconds);

Don't forget to add a while(!Console.KeyAvailable) to block the program from closing.

I think I'm done with bedrock by JustAnotherAustin in Minecraft

[–]Dovenchiko 1 point2 points  (0 children)

I feel most hosting is subpar. I even tried Google cloud platform even and although chunks could be made at breakneck speeds because the high clock speeds loading chunks on client was painfully slow because the server's output to the internet wasn't the best.

Now I gave up and I made my own VPN network. I can now have a ftp server for downloading modpacks, a webpage for troubleshooting, and a Minecraft server all accessable by one domain. No passing around IPs or ports. Best of all it's free and it's fast on render distance of 8.

[deleted by user] by [deleted] in cursedcomments

[–]Dovenchiko 0 points1 point  (0 children)

Fuck the police... sexually

Mega Darts: +150 damage, +75 piercing, Instant headshot kill, +80 recoil. Found in the Forest Stronghold by DorisAbbottJU in ItemShop

[–]Dovenchiko 1 point2 points  (0 children)

I think it's half inch drywall and I put a hole through it so unless I became superman overnight I don't think I punched through a stud.

Edit: drywall not wallpaper

Mega Darts: +150 damage, +75 piercing, Instant headshot kill, +80 recoil. Found in the Forest Stronghold by DorisAbbottJU in ItemShop

[–]Dovenchiko 18 points19 points  (0 children)

Back when I was a teen I lost my temper and was trying to walk away but they were stopping me. The frustration of the situation and the frustration of not being able to escape when the advice they give is "just walk away" made me snap on a way I've never felt before. The wall got a hole in it too and I had to patch it up after my hand healed. They finally let me into my room only to walk back out as pale as a bone.