[release][B]Want: Coder(s) for Terraria Modded Client[/B][/release]
[LIST]
[*]We have 2 other coders (Me and a friend.)
[*]A partially modded client
[*]and VPS with Git.
[/LIST]
[B]
Requirements:[/B][LIST]
[*]Microphone
[*]Easy way of communication (Preferably Steam)
[*]Free time
[*]Ability to pass our coding test
[*]Motivation to work on this project
[*]Willing to learn or can use Git
[*]Must own Terraria [B] legitimately [/B]
[*]Continue working and updating it with us.
[/LIST]
What are your plans with this client? Modding the client is not hard at all, even a VB.NET programmer could do it.
[QUOTE=mmavipc;30978403]What are your plans with this client? Modding the client is not hard at all, even a VB.NET programmer could do it.[/QUOTE]
Well, it's mainly a learning experience for us, but when and if we feel it has enough good features we would like to release it on our forums.
Just because I'm curious, what is this "coding test?"
[img]http://f.cl.ly/items/1F0x350g0y3H1p1c2J0S/Screen%20shot%202011-05-22%20at%201.56.13%20AM.png[/img]
Does that count?
Yeah, whats the coding test?
I wanna do the coding test here just for the hell of it.
We want the coding test :P
but first you guys should answer our coding test...
what would your algorithm be for reversing a singly linked list?
[QUOTE=ShaRose;30986095]http://f.cl.ly/items/1F0x350g0y3H1p1c2J0S/Screen%20shot%202011-05-22%20at%201.56.13%20AM.png
Does that count?[/QUOTE]
No, it does not, because you could have downloaded a Terraria client for it. We need evidence you made it, but it needs to be through a PM or Steam Message, we don't want everybody copy-pasting everyone else's code.
[editline]8th July 2011[/editline]
The coding test removes the people who don't know what they're doing and want our source.
Send me a PM or Steam Message with the code you would use to repeat the last command the player has entered into chat. [B] It must be over a PM or Steam Message. [/B]
You said yourself this was a learning exercise why would people want your source :S
And before I apply I'd be more interested in who I was applying for. So my previous question still stands
[QUOTE=VGS_Devs;30991061]You said yourself this was a learning exercise why would people want your source :S
And before I apply I'd be more interested in who I was applying for. So my previous question still stands[/QUOTE]
Yeah. Learning doesn't mean I don't know anything. I know enough to do some cool things. There's plenty of commands in our source. Why should I answer your question anyway? I could easily copy the code from the internet but I'm a honest person. As far as I know Terraria is not going to require reversing a singly linked list at the moment.
Did you ever consider that if you want quality engineers to work with you have to demonstrate that you have the kind of skill that quality engineers will want to work with ?
So far you've come here demanding people to work with you with no proof or concepts of the level or scope of your project. And if you copied the code from the web you'd probably paste a C example and the language semantics wouldnt match your other text...
So I guess the question is... Why would we want to work for you ?
[QUOTE=VGS_Devs;30991384]Did you ever consider that if you want quality engineers to work with you have to demonstrate that you have the kind of skill that quality engineers will want to work with ?
So far you've come here demanding people to work with you with no proof or concepts of the level or scope of your project. And if you copied the code from the web you'd probably paste a C example and the language semantics wouldnt match your other text...
So I guess the question is... Why would we want to work for you ?[/QUOTE]
We have not demanded anything. We're asking if people would like to join us and work with us. Not for us. Just leave if you don't want to apply. It was just a fun project for us because Terraria is simple, if you don't want to work with us, and you obviously don't, get out of this thread. We can find somebody else that does want to work with us, and if not, we'll go somewhere else, or continue working on it ourselves.
Just offering some advice perhaps you should consider the "Get Programmers" stage part of your learning experience.
And for the record I was initially interested...
[QUOTE=VGS_Devs;30991575]Just offering some advice perhaps you should consider the "Get Programmers" stage part of your learning experience.
And for the record I was initially interested...[/QUOTE]
Well, you seem like you just want to argue with me. This was mainly a "It's here if you want to join" kind of thing.
[QUOTE=clicheusername;30991517]We have not demanded anything. We're asking if people would like to join us and work with us. Not for us. Just leave if you don't want to apply. It was just a fun project for us because Terraria is simple,[B] if you don't want to work with us, and you obviously don't, get out of this thread.[/B] We can find somebody else that does want to work with us, and if not, we'll go somewhere else, or continue working on it ourselves.[/QUOTE]
We do not tolerate that kind of attitude here.
Just post the test already!
[QUOTE=Smashmaster;30991772]Just post the test already![/QUOTE]
It's there already
He already posted it
[QUOTE=Xerios3;30991713]We do not tolerate that kind of attitude here.[/QUOTE]
Sorry, I would just like to get on with this, but he keeps insisting on arguing about everything.
[QUOTE=Doritos_Man;30991829]It's there already
He already posted it[/QUOTE]
Oh. It sort of blended in with that pointless argument.
a) So the test is something trivial which could be done by anyone by a quick search over the Terraria code
b) Your ignoring of the question on how to reverse a singly-linked list just makes it look like you don't know very much at all about programming?
This is going to go nowhere.
[QUOTE=Chris220;30992024]a) So the test is something trivial which could be done by anyone by a quick search over the Terraria code
b) Your ignoring of the question on how to reverse a singly-linked list just makes it look like you don't know very much at all about programming?[/QUOTE]
Lay off him
He already said he is learning
If it comes to him needing to learn how to reverse a singly-linked list he can either just do a Google search and figure it out or ask someone on how to do it. From what he has said he isn't a programming guru like the majority of people that post here. He didn't ignore the question either he said he didn't know how. Does that mean he can't code for shit, no.
[QUOTE=Chris220;30992024]a) So the test is something trivial which could be done by anyone by a quick search over the Terraria code
b) Your ignoring of the question on how to reverse a singly-linked list just makes it look like you don't know very much at all about programming?[/QUOTE]
The linked list thing is pretty simple anyway.
[code]
Node prev = null;
Node cur = start;
Node next = null;
while (cur.next != null)
{
next = cur.next;
cur.next = prev;
prev = cur;
cur = next;
}
cur.next = prev;
start = cur;
[/code]
... I must have read every single one of his posts wrong then somehow. The general impression I was getting was that he was acting like nobody was good enough to work on it or something... bah
Just ignore me.
[QUOTE=Chris220;30992383]... I must have read every single one of his posts wrong then somehow. The general impression I was getting was that he was acting like nobody was good enough to work on it or something... bah
Just ignore me.[/QUOTE]
Well, the whole process is completely fair.
If he doesn't want to work with us, that's fine, because most of us don't want to work with him anyway.
I'm just in it to do programming tests and boost my ego.
[QUOTE=Chris220;30992383]... I must have read every single one of his posts wrong then somehow. The general impression I was getting was that he was acting like nobody was good enough to work on it or something... bah
Just ignore me.[/QUOTE]
Haha, it's no problem. I can understand that. I know a lot less then most people.
[editline]8th July 2011[/editline]
[QUOTE=Smashmaster;30992436]
If he doesn't want to work with us, that's fine, [B] because most of us don't want to work with him anyway. [/B]
[/QUOTE]
I know people don't want to work with me because I'm not as skilled as them or whatever but I don't get why people that don't seem to be generally interested keep posting here.
Sorry for acting like a dick in my earlier post.
So you are planning on decompiling editing recompiling and then releasing, copy righted software.
[QUOTE=ColdFusionV2;30992616]So you are planning on recompiling editing and then releasing a copy righted client.[/QUOTE]
How do you edit compiled code?
Sorry, you need to Log In to post a reply to this thread.