Funny pro elites
Wow! You found us again, after all these years! Honestly, great job. We're on discord now! Come join us! https://discord.gg/RtgvBfE

Join the forum, it's quick and easy

Funny pro elites
Wow! You found us again, after all these years! Honestly, great job. We're on discord now! Come join us! https://discord.gg/RtgvBfE
Funny pro elites
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Log in

I forgot my password

Latest topics
» meet-up
App for tech team EmptyTue Sep 05, 2017 11:57 pm by mortified_penguin

» This is the last topic.
App for tech team EmptyTue Oct 25, 2011 9:32 pm by mortified_penguin

» Lock.
App for tech team EmptyMon Oct 24, 2011 4:04 pm by Deer

» NAT's random Pic of the Week 18!
App for tech team EmptySun Oct 23, 2011 12:05 am by NAT

» Goodbye
App for tech team EmptyWed Oct 19, 2011 8:45 pm by George

» Hello
App for tech team EmptyWed Oct 19, 2011 12:03 am by undercover_walrus

» I've been thinking.
App for tech team EmptyWed Oct 19, 2011 12:00 am by undercover_walrus

» To all members
App for tech team EmptyMon Oct 17, 2011 9:01 pm by BMTH

» The new forum
App for tech team EmptyMon Oct 17, 2011 6:29 pm by undercover_walrus

Top posters
Ninja frog (2610)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
Acheaopterix (2132)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
mortified_penguin (2043)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
TheMissingSock (1691)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
BMTH (1442)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
George (1436)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
Soylent Blue (1206)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
Wildcat Nation (1202)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
undercover_walrus (1186)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 
Mouse (1141)
App for tech team I_vote_lcapApp for tech team I_voting_barApp for tech team I_vote_rcap 

Partners
Hissing Worms
Like us on Facebook!

App for tech team

2 posters

Go down

App for tech team Empty App for tech team

Post by Acheaopterix Sat Nov 13, 2010 7:18 pm

1. I believe this position is more suited to my interests

2. What do u mean by language, do u want something like c+ or c# or binary?... Assume no
3. 1 week and a day, since you made it
4. Awnser difficult questions and provide advice on technical problems
5. Provide in depth knowledge into computers
6. Yes but it's on a different computer.








Acheaopterix
Acheaopterix
Now I am become Death, the destroyer of worlds
Now I am become Death, the destroyer of worlds

Posts : 2132
FPE Points : 2830
Reputation : 56
Join date : 2010-11-05
Age : 29
Location : England

Back to top Go down

App for tech team Empty Re: App for tech team

Post by mortified_penguin Sat Nov 13, 2010 7:56 pm

Hmmm.... Not totally sure... How about this, post three real-life situations of computer problems (IE script error, kernel boot error, etc) and how you would fix them.
mortified_penguin
mortified_penguin
Still Alive

Posts : 2043
FPE Points : 225
Reputation : 133
Join date : 2010-11-05
Age : 12
Location : Georgia

https://funnypics.forumotion.com

Back to top Go down

App for tech team Empty Re: App for tech team

Post by Acheaopterix Sun Nov 14, 2010 6:13 pm

I don't know what problems you would include, couldn't you post three problems and let me solve them, or give me till Tuesday and I will post example code then
Acheaopterix
Acheaopterix
Now I am become Death, the destroyer of worlds
Now I am become Death, the destroyer of worlds

Posts : 2132
FPE Points : 2830
Reputation : 56
Join date : 2010-11-05
Age : 29
Location : England

Back to top Go down

App for tech team Empty Re: App for tech team

Post by mortified_penguin Sun Nov 14, 2010 6:21 pm

Ok, I'll wait.
mortified_penguin
mortified_penguin
Still Alive

Posts : 2043
FPE Points : 225
Reputation : 133
Join date : 2010-11-05
Age : 12
Location : Georgia

https://funnypics.forumotion.com

Back to top Go down

App for tech team Empty Re: App for tech team

Post by Acheaopterix Tue Nov 16, 2010 1:35 pm

example code:




protected override void Update(GameTime gameTime)
{
// Allows the game to exit
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
this.Exit();

MouseState ms = Mouse.GetState();

int iXDiff = ms.X - m_msOld.X;
int iYDiff = ms.Y - m_msOld.Y;
GlobalVariables.g_camera.Yaw((float)-iXDiff * 0.01f);
GlobalVariables.g_camera.Pitch((float)-iYDiff * 0.01f);

m_msOld = ms;

KeyboardState ks = Keyboard.GetState();
if (ks.IsKeyDown(Keys.W))
GlobalVariables.g_camera.Fly(50.0f);
if (ks.IsKeyDown(Keys.S))
GlobalVariables.g_camera.Fly(-50.0f);
if (ks.IsKeyDown(Keys.A))
GlobalVariables.g_camera.Strafe(-100.0f);
if (ks.IsKeyDown(Keys.D))
GlobalVariables.g_camera.Strafe(100.0f);


base.Update(gameTime);
}
Acheaopterix
Acheaopterix
Now I am become Death, the destroyer of worlds
Now I am become Death, the destroyer of worlds

Posts : 2132
FPE Points : 2830
Reputation : 56
Join date : 2010-11-05
Age : 29
Location : England

Back to top Go down

App for tech team Empty Re: App for tech team

Post by mortified_penguin Tue Nov 16, 2010 6:05 pm

Beautiful. Accepted.
mortified_penguin
mortified_penguin
Still Alive

Posts : 2043
FPE Points : 225
Reputation : 133
Join date : 2010-11-05
Age : 12
Location : Georgia

https://funnypics.forumotion.com

Back to top Go down

App for tech team Empty Re: App for tech team

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum