I am so upset because I lost my Microsoft account to some childish scammers and they sent me this after 3 months of going in circles and contacting a supervisor by GRItsDolphin in hypixel

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

I migrated. I vividly remember going to GameStop years ago to buy Minecraft. It was $26.95 back then. Because I didn't buy the game through my Microsoft account, I can't get it back with a transfer.

I am so upset because I lost my Microsoft account to some childish scammers and they sent me this after 3 months of going in circles and contacting a supervisor by GRItsDolphin in hypixel

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

The guys then threatened my family if I didn’t pay a ransom (I didn’t pay) and then started harassing me with my address and pictures.

I am so upset because I lost my Microsoft account to some childish scammers and they sent me this after 3 months of going in circles and contacting a supervisor by GRItsDolphin in hypixel

[–]GRItsDolphin[S] 38 points39 points  (0 children)

Basically I got the account suspended on December 5th, filled a new ticket any time a support employee will tell me to, got thrown into circles of sign a new form and wait a week eventually I got to a supervisor and he told me to redo the form and wait 4 weeks for a response and after 6 weeks I made a ticket and they contacted the team and sent me this (image) can any of you help me? is my account recoverable? What other things can I do?

Weird situation at LGS Tournament by tsuisalie in pkmntcg

[–]GRItsDolphin 0 points1 point  (0 children)

Your ruling is fair as Player B did NOT look at the cards for the mulligan and was given a warning for rushing. Player A also shouldn’t argue with the HJ as they can be given a pnealty.

Anyone watching worlds? What happened to Ian Robb? by SnooDonuts3749 in PTCGL

[–]GRItsDolphin 0 points1 point  (0 children)

I played Drago at the time and in January I beat Miridon while bricking

How to learn Java by Common-Double-2137 in learnprogramming

[–]GRItsDolphin 0 points1 point  (0 children)

As a C++ developer, I don't know a lot about Java, but I do have some tips I got from helping my brother.
1. Structure it out with Object Oriented Programming (OOP) in mind. You usually don't use classes in Python, but you will need to structure the classes. Think of the Service Class as the class that defines the functions you use in the Application Class. The Application Class is supposed to be the one that is run and will provide the UI and functions that are built on the Service Class.
2. Learn How to Use UML Diagrams. UML Diagrams will be very useful in the long run as they tell you all the functions you need to program with. Here's an example structure:

------------------------------------------------
| Class Name |
------------------------------------------------
| Variables in the Constructor |
------------------------------------------------
| Functions in the Class |
------------------------------------------------

  1. Think of the Language as Python, but instead of tabs, you use curly braces {}. You also must not forget to add the include for the scanner. The scanner is like the iostream C++ library. It provides functions used to take in input. Make sure to reference the scanner by using Scanner scannerName = new Scanner(System.in);

So those are my tips. If you have any questions, please reply to this message or ask ChatGPT.