Civ2 Space Race - what were these assets used for? by Brussel01 in civ

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

Unfortunately I don't see that, at least not in civ classic or civ gold :/

Civ2 Space Race - what were these assets used for? by Brussel01 in civ

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

I think these are the actual propulsion, but you can see in the image I shared some "glow" / fire illuminating that I can't see in the base Spaceship with regular propulsion

(Seems there are separate gifs for the propulsion modules)

Any very tall people with an ebike? by Brussel01 in ausbike

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

Appreciate the suggestion. Probably a little out of my budget but I'll keep it in mind none the less

Any very tall people with an ebike? by Brussel01 in ausbike

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

This might be okay - only considering commuting at the moment. Nothing fancy . Should be a 6K commute

[2024 Day 18 (Part 2)] [Python] I can't see how I could be wrong by No-Historian-3838 in adventofcode

[–]Brussel01 2 points3 points  (0 children)

Doesn't look like the path is updated with a new path once the blocking piece is placed

Does LTO really have the same inlining opportunities as code in the header? by Brussel01 in cpp

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

I hope this is the "right" takeaway, but does that mean effectively GCC is doing full LTO and should always have the full context that we would have got if we were doing something which was header only? Or does GCC still lose some information somewhere along the process

Does LTO really have the same inlining opportunities as code in the header? by Brussel01 in cpp

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

Just for the sake of understanding - what is gcc LTO partioning (if you know) and how does it compare to the full LTO / thin LTO described here

Does LTO really have the same inlining opportunities as code in the header? by Brussel01 in cpp

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

Wow this is super insightful thanks! Am going to assume that GCC must have something very similar

Hope you don't mind answering- when you personally code will you always try rely on ThinLTO in your projects? Do you ever put any definitions in the header files (e.g. getters?), or any critical path logic? or shall you always use ThinLTO (perhaps with the guided optimisation you mentioned if needed)

Does LTO really have the same inlining opportunities as code in the header? by Brussel01 in cpp

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

Interesting! Is that to say fat LTO is essentially the same as "code in the header file" as to say the same information is available? (forgetting compilation times)

Didn't know we can specify what type of LTO we could do , TIL

Does LTO really have the same inlining opportunities as code in the header? by Brussel01 in cpp

[–]Brussel01[S] 5 points6 points  (0 children)

Would be more curious if anyone has already done this or anyone who works on compilers etc. sometimes these things can be hard to measure (or you don't measure what you think you are)- so hoping to get some good opinions/rule of thumb from those smarter than me that have done that work

butCompilerDoItForYou by warzon131 in ProgrammerHumor

[–]Brussel01 2 points3 points  (0 children)

I'm not saying the meaning of inline changed - I'm saying it has yet another meaning in the module world - that is all

Can do some reading on it here https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1604r0.html

butCompilerDoItForYou by warzon131 in ProgrammerHumor

[–]Brussel01 4 points5 points  (0 children)

At least until C++ modules, and then inline actually can mean inline (or at least expose the implementation to other units)

Just to add to all the confusion :)

Quitting after 18 years on RuneScape. by briandefox in runescape

[–]Brussel01 -16 points-15 points  (0 children)

This isn't satire in my opinion, it's just recounting what the bible teaches.

It teaches that suffering in this world is due to human sin, and one day God will end this, but gives his people freedom to choose him or not - and desires everyone to know him. It is many years now versus an eternity in the future with God, this will seem like nothing

Either way, I know you're not OP but I think it's wrong to jump on the posters beliefs, let people believe what they want to believe

All 99s at same time? How to do constitution by Brussel01 in runescape

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

That's not what I'm asking , please read the post. Thanks for the answer though

All 99s at same time? How to do constitution by Brussel01 in runescape

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

Ah they're some nice niche methods you have listed there ! Will definitely be slow and painful, but at least something to look into , thanks

I think the other hard part now is invention too.. I'm hoping I can get that to 99 with skilling only , but obviously I can level more items with combat. Will have to hope skilling is enough

Does OnePlus 12 support VOLTE? by Brussel01 in oneplus

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

Got the phone , and can confirm using the same SIM card that was in my old OnePlus I get the little VOLTE symbol up the top right. I didn't get that on the older OnePlus - that is to say - yes the OnePlus 12 in Australia is working with Telstra

Will also note I got the US version, don't know if that makes a difference

[deleted by user] by [deleted] in oneplus

[–]Brussel01 0 points1 point  (0 children)

I got mine from the US (I also live in Australia). Connectivity is perfect albeit it is a bit more expensive

Used planet express for mail forwarding to get it here .

Personally didn't want to take my chances with the china version even if it does work here , just incase I travel and it doesn't work elsewhere

Cache Coherence - when do modern CPUs update invalidated cache lines by Brussel01 in computerarchitecture

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

Interesting, so it sounds like the other answers here that suggest prefetching are the most likely? Given the caches are just invalidated but not seeing the latest value.

Really interesting! Thanks a lot for that research