- Joined
- Jun 21, 2013
- Messages
- 669
- Reaction score
- 328
- Trophies
- 0
- Age
- 38
- Location
- New York City
- XP
- 479
- Country



Yet another person who created a way for themselves to pirate 3ds games and just decided to make a public paste bin to piss off everyone waiting for a free software alternative to gateway

Lol it's nothing at all like what you just saidThis is stupid logic. It's like getting pissed at someone who bought an expensive sports car and parked it outside instead of locking it in a garage and then refuses to gives you rides in it. These comments of people actually getting angry because they randomly stumbled upon someone's project and are now almost demanding they be given access to it because... they are tempted by it? Seriously? I can't even fathom this logic. It must be the most entitled thing I have ever seen. I mean it.![]()
Reading these comments, it sounds exactly like that, though.Lol it's nothing at all like what you just said
So let's suppose someone like myself, starting completely from scratch, wanted to learn, or gain, the programming knowledge necessary to be able to actually do something with this. Where should I begin? Specifically, what languages should I learn to program in to be able to accomplish this? What I'm looking for here is a specific direction to head in. Is there a first language I should learn that would then make the later languages easier? Or could I simply learn the language that his snippets of code are written in? Also, would this gained knowledge then transfer over to other systems as well?
First, thank you for the reply. So a good starting point would be C/C++ and Assembly with some Arm specific assembly later on? If I am understanding correctly. Are there any prerequisite languages that you might suggest to maybe make good stepping stones prior to attempting to learn these others? I'm starting literally from no programming knowledge at all. I realize this won't be an overnight or weekend long process. I'm 45 already. I don't absorb things as quickly as I used to. I'm just tired of not being able to understand what these guys are saying when they explain this stuff. It bugs the crap outta me when it flies right over my head. I have always been the kind of person that needs to fully understand things. I'm surprised that in all of my years of gaming, I never sought to pick this knowledge up, along the way, before now.
First, thank you for the reply. So a good starting point would be C/C++ and Assembly with some Arm specific assembly later on? If I am understanding correctly. Are there any prerequisite languages that you might suggest to maybe make good stepping stones prior to attempting to learn these others? I'm starting literally from no programming knowledge at all. I realize this won't be an overnight or weekend long process. I'm 45 already. I don't absorb things as quickly as I used to. I'm just tired of not being able to understand what these guys are saying when they explain this stuff. It bugs the crap outta me when it flies right over my head. I have always been the kind of person that needs to fully understand things. I'm surprised that in all of my years of gaming, I never sought to pick this knowledge up, along the way, before now.
for(int i = 0; i < 100; i++)
{
if(i % 2)
{
printf("Even Iteration, %d",i);
}
else
{
printf("Odd Iteration, %d",i);
}
}
for(int i = 0; i < 100; i++)
{
if(i%2)
{
printf("Even Iteration, %d",i);
}
else
{
printf("Odd Iteration, %d",i);
}
}

Well fucking said.Literally entitlement: the post
I don't get you, most of the time you're whiteknighting devs everywhere and then you simply shit on them when you don't get what you want. You can't code, neither can I, so too bad. It sucks, but it's their work, we can only shrug and keep watching as the useless leechers we are who can't code for shit. "No one can be trusted in the hacking scene!! piss off devs!" luls
If I wasn’t clear about this, let me make it clear: I despise piracy. The only reason I’m posting all this information is because I believe information should be free and not held by a small group of elites. I know that regardless of what I do, piracy will continue and those who want to pirate are already downgrading their consoles so I don’t think this information will enable a large number of people who couldn’t pirate before to pirate now. That being said, what you do with this information is your business. If you want to make a free piracy loader, go ahead. My only goal is providing information
People always ask this, and people always reply with a well-known computer programming language.So let's suppose someone like myself, starting completely from scratch, wanted to learn, or gain, the programming knowledge necessary to be able to actually do something with this. Where should I begin? Specifically, what languages should I learn to program in to be able to accomplish this? What I'm looking for here is a specific direction to head in. Is there a first language I should learn that would then make the later languages easier? Or could I simply learn the language that his snippets of code are written in? Also, would this gained knowledge then transfer over to other systems as well?
People always ask this, and people always reply with a well-known computer programming language.
All you really need to do is study how computers work, in a rudimentary manner.
Then read, and the important part is understand the way the 3DS works, from the 3dbrew website.
And finally, learning how to logic. Each language has it's own syntax, but it's not important.
Learn a computer language, any at all, then you can look at any other language's api and have a sense of what you need to do.
It's hard.
