Threadkiller Mk XI

Status
Not open for further replies.
I won't have this luxury when I'm in IT.

you damn skippy dude! i'm in IT and during December we are STILL bloody busy working, whule the lucky mofo's in business are chilling. basically, business users only work if there are customers who are calling them. but in IT, you always gotta be doing something :(
 
Just spoke to my cousin and he's cracking jokes about how the stabbing is going to make him a superstar (50 Cent or 2Pac). Suffice to say, he sounds like he's recovering greatly. He'll probably be in hospital for another day or two for observation (for the sake of the punctured lung). That's a big load somewhat off my mind.
 
When I'm in IT.

So...you're practising for IT? I've been practising for a few years to get out of it...and I've won.

Pirate Kakaw ....... durr :rolleyes:



Lol

Bring your landlord bru.

tumblr_nk7qdvKWl01r7o56oo1_400.gif
 
No idea. Once I have the basics of Code down [emoji20]

Edit: Boss wants me to learn it, but I fucking suck at it since my projects always flop.

What you struggling with? The basics of code all come down to boolean logic, which is basically if something is true, then do x, else do y. Boils down to true and false, yes and no, 1 and 0.
eg
if (something == true) {
//do some stuff
} else {
//do other stuff
}

Looping is another basic concept that also relies on boolean logic, basically
while (expression == true) {
//do some stuff
}

And that will keep looping until the expression becomes false

Or you can loop through a collection and run code for each item like
for each (thing x in BunchOfThings) {
//process x
}
 
What you struggling with? The basics of code all come down to boolean logic, which is basically if something is true, then do x, else do y. Boils down to true and false, yes and no, 1 and 0.
eg
if (something == true) {
//do some stuff
} else {
//do other stuff
}

Looping is another basic concept that also relies on boolean logic, basically
while (expression == true) {
//do some stuff
}

And that will keep looping until the expression becomes false

Or you can loop through a collection and run code for each item like
for each (thing x in BunchOfThings) {
//process x
}

*headache*

I'm learning about Bools in online java coding as well as Xcode, isn't making it any easier to remember. So many different variations of code that needs to be remembered. :cry:
 
I only wish to fix and maintain PCs. Programming is not for me, not Xcode anyway.

Rather you than I. Also, never tell people you do this...because all your mates and family will bug you to fix their PCs.

Programming is still a lot more intense than fixing PCs. There is so much more mental strain involved; FYI, I don't cope well with mental strain.

Now that's my area of expertise.
 
I only wish to fix and maintain PCs. Programming is not for me, not Xcode anyway.

XCode is something I don't know :cry: but at the end of the day the principals of coding are all the same, once you can code in one language, learning a new one is way easier.

I will say that programming isn't something that one can just pick up easily if that's what your boss is expecting, it's more like a career path, and something that takes many years to master, and even then, you'll never know everything, and there's always a newer better technology to learn since it evolves so quickly.
 
Status
Not open for further replies.
Back
Top