IT Certifications and Careers (Official Discussion Thread)

semtex

:)
Joined
May 1, 2012
Messages
20,311
Reputation
3,386
Daps
46,185
Lookin a job, building my java/android portfolio, and learning C#...stayin busy :whew: I'm fukkin tired of Jr level positions requiring experience though :beli:
 

Type Username Here

Not a new member
Joined
Apr 30, 2012
Messages
16,368
Reputation
2,385
Daps
32,640
Reppin
humans
For(String s: someStringList)
{

if(s.charAt(0)=='o' || s.charAt(someStringList.size())=='o')
{

System.out.println(s);​
}​

}

:wow:

my nicca....you are learning grasshopper

however for string or chars use .equals() for comparison not ==



The bold should be someStringList.size()-1

otherwise it would be an index out of range.
 

semtex

:)
Joined
May 1, 2012
Messages
20,311
Reputation
3,386
Daps
46,185
You wanna keep your java skills razor sharp then you should try those Sun/Oracle Java Certification quizzes. Talk about humble pie.
 

FreshFromATL

Self Made
Joined
May 1, 2012
Messages
19,606
Reputation
2,491
Daps
43,501
Reppin
ATL
How was it?

It was cool. It turned out to be them more so selling the product that deep-diving on the ins and outs (we already have it). It was a big crowd there which definitely confirms that Tableau is probably the fastest growing BI tool.
 

Skillz

Rookie
Joined
May 12, 2014
Messages
205
Reputation
30
Daps
246
^Word. I'm trying to get my free student copy (1 Year License for those interested).. Went to a workshop at school on it & she gave the basic tutorial, real smooth. Also free tuts on their site.
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
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
 
Last edited:

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
I'm switching into management soon. Has anyone taken any of the ITIL exams besides Foundation? Think I might go down that path just hoping it's not horribly boring.


only took the first one and barely passed it.Then again I was only able to study for 3 days beforehand.lol
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,312
Reputation
1,910
Daps
26,039
Reppin
H-Town
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
I actually like it. Keeps it easy to move between C# and this. What syntax do you prefer?
 

Data-Hawk

I have no strings on me.
Joined
May 6, 2012
Messages
8,419
Reputation
1,985
Daps
16,285
Reppin
Oasis
I actually like it. Keeps it easy to move between C# and this. What syntax do you prefer?

I love C#, by far my favorite programming language. Esp since its starting to become a popular game programming language. Hell there's probably more games being developed in C# now on the iPhone/Android platform( mainly due to Unity 3D ) than their native languages.

Lets not forget Visual Studio :smile:
 

el_oh_el

Bulls On Parade...
Supporter
Joined
Aug 23, 2012
Messages
10,312
Reputation
1,910
Daps
26,039
Reppin
H-Town
I love C#, by far my favorite programming language. Esp since its starting to become a popular game programming language. Hell there's probably more games being developed in C# now on the iPhone/Android platform( mainly due to Unity 3D ) than their native languages.

Lets not forget Visual Studio :smile:
Dude, visual studio is :ahh:
 
Top