[Request] Pseudo coding tut

Started by F@LL3N, July 20, 2012, 12:56:30 AM

Previous topic - Next topic

F@LL3N

Hey I've learned a lot of code types and I haven't seen a tut on this. I kinda understand it then I kinda don't. I'm asking if I can get a link to a tut or if someone could make one.

CrimsoN@DC

... You do realize, you don't use this so called "Pseudo coding" to do what you think you do... right?  I don't even know what it is tbh, so... goodluck with this.
Gotta question?  PM me and hopefully I can help ^^

My website:
Disturbed Core

Bully@Wiiplaza

^^ didn´t you already find a dvar tut to learn pseudo coding?
My Wii hacking site...
http://bullywiihacks.com/

My youtube account with a lot of hacking videos...
http://www.youtube.com/user/BullyWiiPlaza

~Bully

F@LL3N


hetoan2

this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.

learn to code, then you can pseudo code.


Check out my site with codes obviously...
http://hetoan2.com/

and youtube...
http://youtube.com/hetoan2

F@LL3N

Quote from: hetoan2 on July 29, 2012, 04:14:33 PM
this is just like pseudo coding on any other thing. usually people just learn how to code and use pseudo code to explain to others in generalities rather than specifics.

learn to code, then you can pseudo code.

I already know how to code. Just not this. Thanks though.

CrimsoN@DC

What Hetoan is trying to convey here, or so I would take it, is that psuedo coding is a way to "teach" others how to code, it isn't a coding system itself.  As I said before, it isn't used for what you think it is.  I know why you want to "learn this" so badly.  ::)
Gotta question?  PM me and hopefully I can help ^^

My website:
Disturbed Core

F@LL3N

Ok well can anybody explain how you set it up.

Panda On Smack

var Has_F@LL3N_Performed_GoogleSearch;
set Has_F@LL3N_Performed_GoogleSearch to false;

if F@LL3N_GoogleSearch is true then
    set this thread to closed
end if

hawkeye2777

https://en.wikipedia.org/wiki/Pseudocode

It does not have any standard; like the above link states, it's meant to be read by humans. Say you want to make a program that will count down from 10 to 0. The pseudocode might look like this:


while number is greater than 0 {
    print number
    decrement number by 1
}
print "0!!!"


In actual code, it may look like this:

Java

for (int i = 10; i > 0; i--) {
    System.out.println(i);
}
System.out.println("0!!!");


Python

i = 10
while i > 0:
    print(i)
    i -= 1
print("0!!!")


That's really all there is to it... nothing too special.
Currently "retired" from hacking codes.

Bully@Wiiplaza

True, but I don´t think he wanted something like this since it´s not really Wii hacking related.
My Wii hacking site...
http://bullywiihacks.com/

My youtube account with a lot of hacking videos...
http://www.youtube.com/user/BullyWiiPlaza

~Bully

CrimsoN@DC

Sorry if this reply is un-necessary, however what he "wants" is a psuedo coding tut that will teach him how to be the next Seth, if you know what I mean.  They were discussing how seth makes his super advantaged codes, and someone, pretending to know what they're talking about, said he did it through psuedo coding.  Or something like that, I couldn't handel the stupidity in the answers to his question so I didn't bother reading on.
Gotta question?  PM me and hopefully I can help ^^

My website:
Disturbed Core