IT Certifications and Careers (Official Discussion Thread)

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,312
Reputation
1,910
Daps
26,039
Reppin
H-Town
I hope you have at least Pro. If not you can get it from here - https://www.dreamspark.com/ All you need is a .edu account
I have 13 Pro i believe. Got windows 8 from dreamspark as well. Love that shyt. Out of all IDEs id rate them as VS>Xcode>Netbeans
Im still an extreme newbie though. I need a mentor cause this shyt I'm learning in school will likely not get me a job...
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
I have 13 Pro i believe. Got windows 8 from dreamspark as well. Love that shyt. Out of all IDEs id rate them as VS>Xcode>Netbeans
Im still an extreme newbie though. I need a mentor cause this shyt I'm learning in school will likely not get me a job...

Probably the best way to learn is to pick out an app you would like to and go make it.

Here's a good site if you want to look at .NET open source projects - https://www.codeplex.com/

Most books just have you type in commands and try to explain it. I recommend this book ( ) since It's project based. You build apps throughout the book.

here's a book with a good combination of learning to program & Game programming

and



and you can always ask questions in here.
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,312
Reputation
1,910
Daps
26,039
Reppin
H-Town
Probably the best way to learn is to pick out an app you would like to and go make it.

Here's a good site if you want to look at .NET open source projects - https://www.codeplex.com/

Most books just have you type in commands and try to explain it. I recommend this book ( ) since It's project based. You build apps throughout the book.

here's a book with a good combination of learning to program & Game programming

and



and you can always ask questions in here.
Those project books sound exciting. Ill check them out.
Planning on making a checkbook type balancing app for personal use just for the experience.
 

Type Username Here

Not a new member
Joined
Apr 30, 2012
Messages
16,368
Reputation
2,385
Daps
32,640
Reppin
humans
Code:
List<String> oWords = new List<string>();

//C#
            oWords.Add("one");
            oWords.Add("Two");
            oWords.Add("orange");
            oWords.Add("Hello");
            oWords.Add("Games");
            oWords.Add("Blender");
            oWords.Add("Jumbo");
            oWords.Add("coli");
            oWords.Add("Gold digger");
            oWords.Add("Tomorrow");
            oWords.Add("Java syntax is sorry, C# is better");
            oWords.Add("Balto");
            oWords.Add("Baltimore");
            oWords.Add("Dojo");


            foreach(var oLocation in oWords) 
                 // Search from the beginning and in reverse.           
                if (oLocation.IndexOf("o") == 0 || oLocation.LastIndexOf("o") == oLocation.Length - 1)
                    Console.WriteLine("{0} \n", oLocation);



Looking at yall code reminds me of why I dislike Java syntax.lol


:mjlol::mjlol::mjlol:


Code:
# Python Life #

oWords = []

oWords.append("one")
oWords.append("Two")
oWords.append("odysseus")
oWords.append("Hello")
oWords.append("silkk the shocker")
oWords.append("Blender")
oWords.append("Jumbo")
oWords.append("coli")
oWords.append("obietrice")
oWords.append("python da goat")
oWords.append("Dojo")
oWords.append("gianna michaels")
oWords.append("hobo")

for word in oWords:
    if word.startswith('o') or word.endswith('o'):
        print word
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
Those project books sound exciting. Ill check them out.
Planning on making a checkbook type balancing app for personal use just for the experience.

yeah you'll want to get that vs 2013 step by step book. I think it has tutorials close to that
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
:mjlol::mjlol::mjlol:


Code:
# Python Life #

oWords = []

oWords.append("one")
oWords.append("Two")
oWords.append("odysseus")
oWords.append("Hello")
oWords.append("silkk the shocker")
oWords.append("Blender")
oWords.append("Jumbo")
oWords.append("coli")
oWords.append("obietrice")
oWords.append("python da goat")
oWords.append("Dojo")
oWords.append("gianna michaels")
oWords.append("hobo")

for word in oWords:
    if word.startswith('o') or word.endswith('o'):
        print word


hah. I tried to +rep you. The python pluggin for Visual studio is pretty good.
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,312
Reputation
1,910
Daps
26,039
Reppin
H-Town
To the programmers: how many deep complicated algorithms do you use? For instance, I'm trying to wrap my head around the knapsack problem, but the way they explain it in math terms is making it difficult for me to grasp
 

kevm3

follower of Jesus
Supporter
Joined
May 2, 2012
Messages
16,288
Reputation
5,551
Daps
83,462
c# and javascript actually look a lot a like. I think I'll continue with my c# studies after I really get this Javascript and possibly php under hand.
 

kevm3

follower of Jesus
Supporter
Joined
May 2, 2012
Messages
16,288
Reputation
5,551
Daps
83,462
BTW where are my fellow Javascripters? Seems like everyone else is doing Java or C#
 

FreshFromATL

Self Made
Joined
May 1, 2012
Messages
19,606
Reputation
2,491
Daps
43,501
Reppin
ATL
yeah you'll want to get that vs 2013 step by step book. I think it has tutorials close to that

Breh I haven't touched C#/Java etc. since I've been in the BI world and I think I done forgot how to program in those languages :wtf::wow:

I may open up VS 2013 this weekend just to see if I still got it...
 

FreshFromATL

Self Made
Joined
May 1, 2012
Messages
19,606
Reputation
2,491
Daps
43,501
Reppin
ATL
To the programmers: how many deep complicated algorithms do you use? For instance, I'm trying to wrap my head around the knapsack problem, but the way they explain it in math terms is making it difficult for me to grasp

Schools always make you do unecessary bullshyt like this, smh.
 
Top