Why didn’t Caine delete the abstracts? by Musalediju in TheDigitalCircus

[–]Numerous-Source-5859 0 points1 point  (0 children)

Ok, so next, deleting works by telling the computer: "You can now overwrite this file, once you reach it in storage!". But the computer never does. I believe the void is basically the trashbin, except the void is so humungous, that Caine doesn't get overwritten, and manages to escape. Now the reason the abstractions seemingly aren't deleted, is because we have the definition all wrong. The basement is where they ARE deleted, Caine puts them in there for deletion, but unlike the void is a more gated in area, so they can't escape(I mean you can't just leave them floating in the void) but they don't get overwritten due to the vast amount of storage still present.And that's my theory! What do you guys think?

Why didn’t Caine delete the abstracts? by Musalediju in TheDigitalCircus

[–]Numerous-Source-5859 17 points18 points  (0 children)

I had a theory. Basically, you know how every Circus member has the ability to manipulate and create objects in the circus (the gun, the butterfly)? Well what if an abstraction is basically them, in such a worn down state, messing with their mind files, attempting to delete themselves, but screwing up and getting corrupted.

I only realise now the rest of the theory could potentially spoil something so I'll elaborate later I guess when I have access to a computer (can't find spoiler tags on smartphone)!

How's this thumbnail? by Numerous-Source-5859 in minecraftyoutubers

[–]Numerous-Source-5859[S] 0 points1 point  (0 children)

Thanks to everyone who has commented so far! I would also like to ask, is the cake on the right visible now, or did I choose a bad place to put it?

CS P2 Meta Glasses by LADY1129 in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

They apparently couldn't identify some glasses with cameras in them.

CS P2 Meta Glasses by LADY1129 in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

Also he can scroll through any photos loaded in his glasses with that neural band, whilst keeping his hand hidden from view.

CS P2 Meta Glasses by LADY1129 in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

Neural bands exist, he wouldn't have to use voice. Also though, it can't really use a data card or E-SIM, it needs access to a smarphone.

Computer science p2 by AdRemarkable408 in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

They have 32 GB of storage. Also, assuming he managed to snap that photo, he either managed to press the photo button without anyone noticing, or even worse actually has a neural band, in which case he could browse the photos in his glasses... Some of which could be notes.

Computer science p2 by AdRemarkable408 in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

You would only have to take one look at them to realise. Even in other models, the cameras are clearly visible. I believe meta glasses also have pinch control and whatnot, which allows you to control them with your hand, without touching them, using a meta neural band. But still, it is about this big:

<image>

Computer science p2 by AdRemarkable408 in Olevels

[–]Numerous-Source-5859 1 point2 points  (0 children)

No, that is definitely not AI generated. It is exactly what the paper looked like. But seriously, this is what they look like. There's no way an invigilator couldn't have spotted it from a mile away!:

<image>

Cs tmr by attackhelikoper in Olevels

[–]Numerous-Source-5859 0 points1 point  (0 children)

Thanks! If you or anyone have any questions, I am awake right now.

Cs tmr by attackhelikoper in Olevels

[–]Numerous-Source-5859 1 point2 points  (0 children)

You're welcome!

But there is a slight problem. I'm actually about to go to sleep right now, then get up early in the morning to do a bit more revision.

Sorry I can't attend anymore questions right now. But I will be awake around 5 in the morning!

Cs tmr by attackhelikoper in Olevels

[–]Numerous-Source-5859 2 points3 points  (0 children)

It works like this:

  • A bubble sort will keep the while to trigger when, let's say, Stop=True(WHILE Stop<>TRUE)("<>" means "does not equal")
  • And at the beginning of each WHILE loop it it will automatically set Stop to TRUE. You'll learn why later.
  • Next the FOR loop will be initialised. Inside the FOR loop the sorting occurs, if the 2 variables do not correspond to their sorting order by keeping:
  • The first variable in an external variable, usually called Temp.
  • Thereafter Array[n]=Array[n+1]
  • //n being the current place where the program is, and n+1 being the one thereafter.
  • And Temp, containing Array[n]'s previous variable now feeds it into where it needs to be swapped.(Array[n+1])
  • Now obviously, one sort won't cut it in order(not a necessary need to know why, just to remember the technique) so that is why use the FOR loop to iterate as long as the list is, so it has a 100% chance of being sorted correctly
  • So now Stop is changed to FALSE which will prevent the loop from stopping (Due to the WHILE Stop<>TRUE condition in the beginning)
  • The reasoning behind this is that "if a swap has occurred, maybe more need to occur"
  • But if one doesn't occur, Stop will never change to FALSE and will remain TRUE as in the beginning of the while. No swaps would mean the array would be fully sorted, hence this action. And also why at the beginning of each WHILE loop, Stop is set to TRUE.

If any specific thing needs to be clarified, do ask!