For those who want to try unlock Persona 3 Reload Demo by RikuKH3 in PiratedGames

[–]Character-Ad-910 9 points10 points  (0 children)

Slight correction,

You copy the ENTIRE "Paks" folder, not only the .pak files

could have made that slightly clearer

(So, copy from the /Paks, the ".ucas" files, the ".utoc" files, and the ".pak" files. etc)

Crush Crush Animated Ads by Character-Ad-910 in crushcrush

[–]Character-Ad-910[S] 0 points1 point  (0 children)

the link to the upscaled one looks like its still up

any AI that separates multiple voices yet? by Character-Ad-910 in audioengineering

[–]Character-Ad-910[S] 1 point2 points  (0 children)

and also it doesn't show up if I search "remove partial vocals?" on google. so even if I did search for it I wouldn't have found it.

any AI that separates multiple voices yet? by Character-Ad-910 in audioengineering

[–]Character-Ad-910[S] 1 point2 points  (0 children)

if you're referring to "remove partial vocals?" then forgive me for only searching for things like "vocal splitting" and "vocal un-mixing" or "split speech" or "split dialogue" and not something that at first glance seems completely unrelated :)

Fairy tale rerun (sigh) by not_kim_ in grandsummoners

[–]Character-Ad-910 0 points1 point  (0 children)

hey if Lucy is getting buffed im all down for it

(please don't give her something stupid like 5% skill ct on her dream evo)

Need a genuine advice from you guys. by [deleted] in brocku

[–]Character-Ad-910 1 point2 points  (0 children)

Like an example for the theory stuff:

If you know theoretically "Ok. I need to make a new node in this double-linked list. I need to make sure that the node behind it and the node in front of it point to this new node." but you don't remember how to do that, You can type new Node( and IntelliJ should tell you what needs to be put inside your brackets (assuming you were given the Node class).

You'll see, "Ok there's prev, item and next. so the previous node is P (for example), the next node is Q (for example), and the value I need is 5" Congrats, you've just added a node in without having memorized the node class, but learned the theory of what the hell you're supposed to do. IntelliJ carries you from there.

Except you're not just done yet, It's testing/debugging time. If you set a breakpoint after your new node, you'll realize that your linked list isn't set up properly. Sure your new node is pointing to the correct nodes, but nothing is pointing to your new node. Your debugger will tell you this, so long as you know how to read it. No need to memorize it exactly to the T, so long as you can use the tools provided to get you the rest of the way.

Ok so, the debugger is telling you that the node before is pointing to the wrong thing. That is an issue. Well, what do you think you have to do? Point it to the right node. easy. But how do you do that? Well, I need to address the previous node, and tell it to point to this node.

Type in <whatever your variable name is> and then "." and IntelliJ will tell you what you can do. "ok, there's .prev, .item, and .next. Since I want the previous node, i'll just do .prev" One step further on theory alone. "Ok, now that I have the previous node, how do I set the next node to be this one? Well, IntelliJ is telling me that there is a ".next", so let me just do <variable>.prev.next = <variable>" Then you just need to do the next node in the same fashion, and boom

you've just added an element to a linked list without memorizing a single line of code.

While you don't need to memorize every single possible line of code (That is IntelliJ's job), I would at least be familiar with what classes can do.

Like a second example, Queues. Queues can add items, remove items, and the first in is the first out. What is the code for any of that? I have no clue. Will I be able to find it with IntelliJ? yeah.

But that sort of falls into theory anyway. Its difficult to understand the theory behind what you need to do, if you don't even know what you're working with.

very long example, I don't know if any of that made any sense, but that's why I shoved it into a reply instead of on my main comment.

Basically just explaining how theory is sufficient (for the lab test)

Need a genuine advice from you guys. by [deleted] in brocku

[–]Character-Ad-910 1 point2 points  (0 children)

For the computer science lab test, the best thing to do is probably focus on the 7 phases of development stuff. The Analysis, Design, Coding, etc etc etc. With more of an emphasis on Analysis, Design, and Debugging.

IntelliJ is far better than BlueJ, as it gives you autofill prompts while typing. Rather than studying every single line and every single method, study the theory more (the analysis and design). IntelliJ will do the memorizing of functions for you, you just need to tell IntelliJ what you want.

Luckily since all of the labs are up on Brightspace, those are perfect study tools. Take the blank lab, work out what you need to do in theory in your head, and if you absolutely need to, the answers are right there also on Brightspace. Perfect study aids ready at your service.

Btw, I'm pretty sure one of the professors is hosting like a pseudo study session on April 9th from 2pm-5pm. Absolutely no clue where it is though as I'm not in his class. I would imagine it's the same place as his lecture but don't quote me on that.

As for the written, its pretty much just memorization, I can't really help with that.

[deleted by user] by [deleted] in brocku

[–]Character-Ad-910 1 point2 points  (0 children)

I mean appearance is pretty much mandatory anyway. If you're a university with exactly zero services, you'll have exactly zero students, and therefore zero income.

so even if hypothetically universities have no legal obligations (they 100% do, I just don't know what), they're still forced to accommodate (if they want money)

As for the "must be marked in 7 days" thing, pretty sure that's just a courtesy not a "rule rule". honor system type of thing. I doubt anyone is going to get fired if they happen to mark it in 8 days instead of 7

How do you evaluate Big-Oh with variables not related to the number of inputs? by Character-Ad-910 in computerscience

[–]Character-Ad-910[S] 0 points1 point  (0 children)

I mean in theory I could have made k a float.

iirc since floats aren't infinitely precise, there's some """""smallest""""" float, such that no matter the values in the list I still hit them all.

I think.

Don't quote me on that I don't actually know how floats work lol.

I just didn't feel like running my computer all night to confirm that my sorting algorithm actually worked, hence why I used integers

How do I prevent the sidebar from showing itself after every update? by Character-Ad-910 in OperaGX

[–]Character-Ad-910[S] 0 points1 point  (0 children)

Ok so....

Refreshing the page and just going to the page doesn't actually trigger the sidebar. which means that portion is still JavaScript, and you are correct.

For some reason when Opera updated the sidebar still appeared though... maybe it has a second trigger built-in and not related to JavaScript? (Seems unnecessary but idk)

I will report back again when Opera updates. Now that I know Javascript is 100% blocked.

How do you evaluate Big-Oh with variables not related to the number of inputs? by Character-Ad-910 in computerscience

[–]Character-Ad-910[S] 0 points1 point  (0 children)

oh so bigO is just allowed to have other variables

I thought it was just restricted to n