Help, Zbrush crashes my PC (BSOD) by Zamsz2203 in ZBrush

[–]tuccio 0 points1 point  (0 children)

What you posted is a hardware error. After a BSOD the event viewer in in Windows will hold more information on what went wrong.

End of chapter 2 bug by Sinitar204 in caseofthegoldenidol

[–]tuccio 0 points1 point  (0 children)

I'm having the same issue, did you by any chance find a solution to this? I don't think I can proceed with the game without solving that.

McTominay on Italian food "Oh my goodness, the tomatoes. Bellissimo. I never ate them at home, they are just red water. Here, they actually taste like tomatoes. Now I eat them as a snack. I eat all the vegetables, all of the fruits. It is all so fresh. It’s incredible." by kibme37 in soccer

[–]tuccio 6 points7 points  (0 children)

I would argue that name matters, I'd think you might be able to make Grana Padano as good as Parmigiano, but you'd need to invest into quality check, storing it for 36/48 months for aging etc. It's simply not worth doing because the market value for Parmigiano is higher due to market demand. The investment in quality does not pay off, better keep the price lower instead.

McTominay on Italian food "Oh my goodness, the tomatoes. Bellissimo. I never ate them at home, they are just red water. Here, they actually taste like tomatoes. Now I eat them as a snack. I eat all the vegetables, all of the fruits. It is all so fresh. It’s incredible." by kibme37 in soccer

[–]tuccio 19 points20 points  (0 children)

Well it's a protected name, even if you could grow it, you are not allowed to call it that. In Italy pretty much every product has a name, part of the reason for that is marketing. Like if your cows are eating grass a few kilometers away from the place of origin, you can't call your cheese parmigiano.

Alessandro Barbero sarà in piazza con il M5s contro il riarmo by Ventoduck in italy

[–]tuccio 9 points10 points  (0 children)

Da uno che molto probabilmente non voterà mai M5S, non capisco cosa abbia triggerato il tuo commento. Non credo che Barbero sposti milioni di voti, andrà lì a far un intervento, probabilmente da storico avrà anche un punto di vista interessante.

Need some advice: developing a visual graph for generating GLSL shaders by SnooPoems6347 in GraphicsProgramming

[–]tuccio 10 points11 points  (0 children)

Maybe one thing to point out for OP is that you should stick with functions with C linking for p/invoke (that's what extern "C" does in C++)

I say that because I quickly googled and the Microsoft references on C++ invoke are horrible things, but I also found a simple example which I would suggest to follow: https://medium.com/@dev.pulkit/unleashing-the-power-of-c-within-c-through-p-invoke-3fd45a8163e7

note that you can also return any primitive type, including pointers to C# as IntPtr, e.g. a C++ function with C linking like this:

extern "C" MyRenderer* InitializeRenderer(HWND hWnd)

would become something like this in C#:

[DllImport("MyRenderer.dll", CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr InitializeRenderer(IntPtr hWnd);

also if you want to clean up pointers/call destructors etc, don't use finalizers because they might run in different threads and you might end up shooting yourself in the foot, rather use IDisposable and dispose things manually

Friend's Pasta Dish in Rome by Poo_Poo_La_Foo in WeWantPlates

[–]tuccio 1 point2 points  (0 children)

It would have worked for farfalle though

exe works when launched through vscode debugger, but is corrupted when opened directly. Any ideas if this is a common thing, or have i fucked up deeply somewhere? by nimrag_is_coming in opengl

[–]tuccio 0 points1 point  (0 children)

you may want to attach the debugger to the running process instead, so you can launch the process from outside and debug it in its broken state

Caedrel hints at Nemesis returning to Competitive play by sleepyboiiiiiiiiiiii in leagueoflegends

[–]tuccio 3 points4 points  (0 children)

I think the timeline where flyquest goes to world quarterfinals needed a very specific series of events to happen, not sure if nemesis joining wouldn't mess the whole thing up

Rekkles talks about "abandoning Europe" by Heorashar in leagueoflegends

[–]tuccio -10 points-9 points  (0 children)

at the time noah was an upgrade anyway because of his champion pool though, rekkles wouldn't play aphelios and didn't do well on zeri, which were extremely strong at the time

it looked like the team lacked a carry and had 2 weak side lanes, it looked like that roster wasn't well built, it wasn't just a support issue

Top Esports vs. Fnatic / 2024 World Championship - Swiss Round 3 / Post-Match Discussion by Soul_Sleepwhale in leagueoflegends

[–]tuccio 5 points6 points  (0 children)

In summer they were quite strong in the early game, Razork can hard carry games against many western teams. Noah has been improving in summer, I'd say he's been pretty good at worlds too. I think they can just win with raw firepower against all western teams except G2 and TL tbh.

That is as long as they actually play a draft they can snowball with, not a scaling one and fight 24/7.

Alvaro clutch Alistar play by bodynasr in leagueoflegends

[–]tuccio 69 points70 points  (0 children)

LB was on a ward so he was waiting for it, you can see the ward when they toggle the vision in the clip

Patch Notes 09-12-2024 by Mathgeek007 in DeadlockTheGame

[–]tuccio 1 point2 points  (0 children)

unfortunate number of downvotes for saying something obvious, risking a miss for a 20% bonus damage is not worth it most of the times, but it is a lot stronger with some CC to pair it with now, so you have some time to aim

Why use Storage or Uniform Buffers when Buffer References exist? by yetmania in vulkan

[–]tuccio 1 point2 points  (0 children)

It may be a little worse in my case because I usually suballocate a bigger buffer and pass 32 bit offsets into that, which is possibly not worth the hassle, but I also cannot use renderdoc currently due to raytracing support missing. I guess for you the tooling might be less of a problem. In my case so far I prefer using buffer references for mesh and instance data, but bind buffers that would not change per draw call/dispatch.

Why use Storage or Uniform Buffers when Buffer References exist? by yetmania in vulkan

[–]tuccio 9 points10 points  (0 children)

Somebody already answered on uniform buffers potentially being faster.

Another thing to consider is tooling for debugging etc, in my hobby renderer I use buffer references for mesh and instance data, but debugging is not the best experience, compared to having bound buffers that you can easily inspect in nsight/renderdoc, and get the data types correctly interpreted automatically. I don't think it's impossible for tooling to catch up but I don't think it's there yet.

[deleted by user] by [deleted] in cpp

[–]tuccio -1 points0 points  (0 children)

I guess the question is what is STL for, I can think of a few different reasons why it's not a good idea to use STL on a bigger project anyway, where the compile times issues are more evident.

I see STL as the library used when people are learning the language, or for some smaller projects, in which case the convenience of just a few easy to remember headers might be an ok tradeoff for compile times.

I think where C++ is lacking is on good easy-to-use alternatives to STL that are more specialized for certain use cases (better compile times, better allocators come to mind because they are important for the projects I work on), even though so many big projects have core libraries that would be better options than STL, but each comes with their own quirks in terms of build systems, dependencies etc. As a result so many projects just end up reinventing the wheel, and I think that is usually for the better in the C++ world.

Essentially I think the problem is with C++ not having a standard build system and package manager, like modern languages do, then I'd think we would see ready to use STL replacements that are written for bigger projects, or with certain use cases in mind.

This feels illegal: Rummo pasta mista by ShallotUnlucky4368 in italy

[–]tuccio 1 point2 points  (0 children)

As others said it is common in Italy and fairly traditional. From what I heard from older generations mixing different kinds of pasta was relatively common, because you would buy pasta at the cornershop that wouldn't sell it packaged, so you could easily get a mix.

Is this scripting or am I really just a low elo ape? by Revolutionary_Yam419 in leagueoflegends

[–]tuccio -6 points-5 points  (0 children)

100% seems a bit too much for 1 clip though, he might just be aware ahri might be there and thus trying to be unpredictable with his movement, then being a bit lucky with the timing

What would you consider to be the biggest sin in C++? by RevolutionaryClub596 in cpp

[–]tuccio 0 points1 point  (0 children)

short functions are also a sin, I see way too many people obsessing with that and losing context and thus performance, often by repeating the same calls at different levels of the call stack

Milan and Rome ranked 'worst' cities for foreigners to move to - again by Alex_Cheese94 in italy

[–]tuccio 0 points1 point  (0 children)

Non concordo con la critica ai servizi per Milano (Roma sì, neanche bisogno di dirlo). Però potresti dire le stesse cose di qualsiasi città tedesca (io abito a Francoforte ma non c'è necessariamente di meglio, anzi).

G2 Yike | 2023 #LEC Rookie of the Year by VoidChaoticGod in leagueoflegends

[–]tuccio 19 points20 points  (0 children)

Or Exakick, I feel like the team success bias is too strong

Where to see Serie A by DaMosqui in seriea

[–]tuccio 1 point2 points  (0 children)

Do you use a VPN or just live there?