learning to code (3 month course) will land you a 70k job

Joined
Jan 21, 2013
Messages
3,416
Reputation
497
Daps
7,622
Reppin
NULL
Linux runs servers and phones and routers and arm machine's and just about everything else lol. Dont be dissing the penguin nikka

The penguin is a patty boy.

I am trying to get into security. You gotta learn somewhere especially if you want to be offensive. I am about to watch a training video on Python

Once you learn Kali try to take down st0rmfr0nt and other racist sites.
 
Joined
Aug 22, 2014
Messages
876
Reputation
500
Daps
1,889
Breh, I wrote a 2000 line provisioning/deprovisioning program to automate user onboarding at a previous job that ran on an old Dell desktop. It integrated with Active Directory, Exchange, Lawson (HR), Oracle, SQL, and a bunch of other internal applications.

In what scenario would someone who's learning to code need a xeon processor, raid 5, and a TB of storage :dwillhuh:

If you re-read my recommendation, I give a cheap baseline plus one higher if you are about it.

This is all variable should be what's implied.

For those who have the insight to follow my suggestions, you can thank me later. :youngsabo:
 

K.Dot

African American
Joined
Apr 19, 2015
Messages
14,306
Reputation
5,521
Daps
41,364
Reppin
Bro 'nem
I am trying to get into security. You gotta learn somewhere especially if you want to be offensive. I am about to watch a training video on Python
lol you going to breeze through that shyt breh. I'm learning Python as my first language and it's intuitive as hell, it's just basic English.
 

PikaDaDon

Thunderbolt Them Suckers
Joined
Oct 13, 2012
Messages
9,359
Reputation
2,339
Daps
25,318
Reppin
NULL
Converted this small c++ app into c#:

Code:
using System ;
using System.Collections.Generic ;

namespace ConsoleApplication
{

    public class MyApp
    {

        static public int EXIT_SUCCESS = 0 ;

        static public int Main( string[] args )
        {

            CCustomBoxBreh breh = new CCustomBoxBreh ();
            breh.DisplayHeader ();
            breh.MainMenu ();

            Console.ReadLine ();
            return EXIT_SUCCESS; 
        }
    }

    public class CCustomBoxBreh
    {

        public CCustomBoxBreh() {
        }

        public void DisplayHeader()
        {

            Console.WriteLine ("**************************************");
            Console.WriteLine ("**");
            Console.WriteLine ("**     CCustomBoxBreh v0.1");
            Console.WriteLine ("**");
            Console.WriteLine ("**************************************");
        }

        public void MainMenu()
        {

            int nWidth = 0, nHeight = 0;
            int reply = 0;

            Console.WriteLine ("Want me to draw a box? (1=yea, 2=nah)");
            reply = int.Parse (Console.ReadLine ());

            switch (reply) {

            case 1:

                Console.WriteLine ("How wide?");
                nWidth = int.Parse (Console.ReadLine ());

                Console.WriteLine ("How tall?");
                nHeight = int.Parse (Console.ReadLine ());

                Console.WriteLine ("Alright here you go: ");
                this.DisplayBox (nWidth, nHeight);

                break;

            case 2:

                Console.WriteLine ("fukk outta here then!");
                break;

            default:

                break;
            }
        }

        private void DisplayBox( int nWidth, int nHeight )
        {

            List<char> strOutput = new List<char> ();

            for (int i = 0; i < nHeight; i++) {
                
                for (int j = 0; j < nWidth; j++)
                    strOutput.Add ('*');

                strOutput.Add ('\n');
            }

            Console.WriteLine (strOutput.ToArray ());
        }
    }
}
 

FSP

Banned
Joined
Jun 19, 2015
Messages
14,285
Reputation
1,134
Daps
42,287
I don't if I could be around those type of people though. I'm getting out using my P911, so its an option. Right now I want to head to radiology, but I want to hurry up and make money so I can start my life over already.
lmao breh what were you going thru
 

FSP

Banned
Joined
Jun 19, 2015
Messages
14,285
Reputation
1,134
Daps
42,287
:laff: it sounded a little more dramatic that it needed to be. Just getting out of the military, and starting over as a civilian.
breh you made it sound like you was the hitman:merchant:

Anyway there's a lot of ex-military in tech. They do a good job teaching the mechanics in places like the Air Force, though a lot end up being hired by the feds and stuff.
 

null

...
Joined
Nov 12, 2014
Messages
31,197
Reputation
5,478
Daps
49,030
Reppin
UK, DE, GY, DMV
Breh, I wrote a 2000 line provisioning/deprovisioning program to automate user onboarding at a previous job that ran on an old Dell desktop. It integrated with Active Directory, Exchange, Lawson (HR), Oracle, SQL, and a bunch of other internal applications.

In what scenario would someone who's learning to code need a xeon processor, raid 5, and a TB of storage :dwillhuh:

Bit late but breh is right.

It's not just the language these days it's the framework(s), tools, tool chain, CI stuff and you want to have multiple environments.

1TB is about right. More if you are serious and can afford it.
 
Top