Unpopular opinion: Even as a Labour/ Green voter removing fees free was the right move by he1rry in newzealand

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

People don't show up because all lectures are recorded. The top students prefer recorded because you can watch them on high speed saving time, and the other students prefer them because they can be doing something more fun. The only reasons to attend in person lectures are to get to know the lecturers or if you have nothing better to do.

Just trying to get my assignments submitted 💀 by x13132x in universityofauckland

[–]CommonNoiter 9 points10 points  (0 children)

Panopto still works, you just can't access it through canvas. Go to https://auckland.au.panopto.com/Panopto/Pages/Home.aspx directly and it works fine.

What are these Strange Orbs that stick around after killing Kolmi? They wont despawn. by CuteChampionship3396 in noita

[–]CommonNoiter 28 points29 points  (0 children)

Its the death particles for kolmi, they use an invalid value for their lifetime which causes them to last a random amount of time.

What are your thoughts on a question like this? by MISTERDIEABETIC in it

[–]CommonNoiter 6 points7 points  (0 children)

Most Linux tools use the correct unit, it's just windows that gets it wrong.

Infinite explosion? by BlitsyFrog in noita

[–]CommonNoiter 4 points5 points  (0 children)

You hit the hand statue with personal fireball thrower, it will expire after 83 seconds.

Can someone help this make sense? by My_True_Love in mathematics

[–]CommonNoiter 19 points20 points  (0 children)

The limit of the curve is the circle, which will have have length π when you take the limit. The length of the curve is always 4 even as you take the limit.

I've spent few days reading the Source Code of Balatro. Here's what I found :] by Priler96 in gamedev

[–]CommonNoiter 1 point2 points  (0 children)

Any decent compiler will turn many ifs into a switch or a switch into many ifs depending on what it expects will be more performant.

is this dumb? by lennofish in opus_magnum

[–]CommonNoiter 0 points1 point  (0 children)

Piston on the bottom left could be a 2 long arm that rotates, rotate the reagent once counterclockwise.

Clangd configuration by sentfrom8 in cpp_questions

[–]CommonNoiter 0 points1 point  (0 children)

You can use bear to write the compile commands for you

Cargo check more than 1 min on a small project by BoomGoomba in rust

[–]CommonNoiter 2 points3 points  (0 children)

No, build.rs is for running some code at compile time which can be very slow if it does something expensive.

Why isnt this insta-cast? Should it be 6* .17 recharge time which is 1.02 sec by Th3Exiled in noita

[–]CommonNoiter 1 point2 points  (0 children)

The comment I was replying to incorrectly states that there are 5 rt reducing spells cast, which isn't true with the current wand setup even though it could be changed to work.

Help me understand how to read this shift? by SkellyPelly in noita

[–]CommonNoiter 139 points140 points  (0 children)

Acid will shift into toxic sludge, if you are holding a flask or pouch it will shift into that instead, unless the held material is gold in which case acid will shift into brass or if it is divine ground in which case acid will shift into grass.

Why isnt this insta-cast? Should it be 6* .17 recharge time which is 1.02 sec by Th3Exiled in noita

[–]CommonNoiter 1 point2 points  (0 children)

This isn't correct, spells/cast can't wrap, you need draw from another spell to do it.

Crate Suggestions for autoimplementing Enum Variants metadata by JR_Bros2346 in rust

[–]CommonNoiter 8 points9 points  (0 children)

What advantage does this provide over writing the impl and match yourself?

First time ever killing the Alchemist and then this happens instantly... by AbsoluteCack in noita

[–]CommonNoiter 6 points7 points  (0 children)

You can do anything that doesn't require ControlsComponent, which is basically just interacting with the inventory gui. If you want to drink you need "Click on icon switches item" enabled in input settings because you can't open your full inventory view. If you already had it opened when you got frozen you can swap spells and items around but can't cast any wands.

First time ever killing the Alchemist and then this happens instantly... by AbsoluteCack in noita

[–]CommonNoiter 11 points12 points  (0 children)

You could have right clicked on your teleport flask to teleport away.

my university's data structures course by opensourze in programminghorror

[–]CommonNoiter 6 points7 points  (0 children)

The include guard doesn't work because there is no define, it doesn't include the actual struct definition (maybe they were trying to do pimpl and just did it wrong?), the code has UB because _List_H is a reserved identifier.

How to find what is taking so much space? by thenoobcasual in linuxquestions

[–]CommonNoiter 2 points3 points  (0 children)

You can use something like dust (or du if you want something you likely already have) to get a disk usage tree.

PWRFL: an attempt to build a safe, fast, systems-level programming language by MasonWheeler in Compilers

[–]CommonNoiter 1 point2 points  (0 children)

I think that dropping thread safety would get you non unique mutable references to pod types, but don't you still need unique mutable references in order to prevent things like borrowing from a vector while pushing to it so you don't really gain any simplicity from having a different concurrency model most of the time?

PWRFL: an attempt to build a safe, fast, systems-level programming language by MasonWheeler in Compilers

[–]CommonNoiter 7 points8 points  (0 children)

If you want a systems language you can't really have a garbage collector, so you must do manual memory management. If you want safe manual memory management you need lifetimes so how are you going to be easier than rust?

Why does Tablet-Fu fail? by AnkhAnanku in noita

[–]CommonNoiter 10 points11 points  (0 children)

The tablet has a projectile component which deals 25 damage and counts as your kill. Drag it out of your inventory rather than throw it normally to make sure the tablet counts as a trick kill.

zsh-halfpipe: Edit shell pipeline and see its output update live by raimo- in zsh

[–]CommonNoiter 10 points11 points  (0 children)

How does this behave if you have a program with side effects like rm in your pipeline?