Software Development and Programming Careers (Official Discussion Thread)

Samson

Wholesome Black Man
Joined
Oct 18, 2017
Messages
3,374
Reputation
2,170
Daps
12,056
Reppin
Haitian Gang
I don't recommend paying for free resources when it comes to Web Development, the stuff I learned was from youtube and documentation.
Yeah, I generally agree. It's just that I need teachers. Not someone doing it but explaining how and setting up why it should be written like this. You know?
 

Spin

All Star
Joined
Jul 11, 2012
Messages
1,010
Reputation
390
Daps
2,862
Yeah, I generally agree. It's just that I need teachers. Not someone doing it but explaining how and setting up why it should be written like this. You know?

A course I was following mentioned this guy as being real good Learn from Kyle Simpson's Courses on Frontend Masters. I hear you. Also I feel paying money for a good course saves time. Yea you can find "free" resources, but it often times involves digging through alot of BS. As you move up the money train, you realize time is more valuable than money.
 

Samson

Wholesome Black Man
Joined
Oct 18, 2017
Messages
3,374
Reputation
2,170
Daps
12,056
Reppin
Haitian Gang
A course I was following mentioned this guy as being real good Learn from Kyle Simpson's Courses on Frontend Masters. I hear you. Also I feel paying money for a good course saves time. Yea you can find "free" resources, but it often times involves digging through alot of BS. As you move up the money train, you realize time is more valuable than money.
dap+rep I will check him out, thanks
 

Llcoolbay

Superstar
Supporter
Joined
Jun 10, 2014
Messages
16,020
Reputation
1,530
Daps
41,333
Reppin
St Louis Rams!!!!!
Is there a thread to post some code you made. :jbhmm:

I need some critiques. :patrice:

Basically what I'm doing is learning something like arrays, loops, switch statement, return function and making a simple program.

Learn so more shyt and rewrite it with all the new shyt I learned as well. In theory it should be a more efficient program if I'm understanding what I'm learning
 

Obreh Winfrey

Truly Brehthtaking
Supporter
Joined
Nov 18, 2016
Messages
20,852
Reputation
25,252
Daps
131,941
Is there a thread to post some code you made. :jbhmm:

I need some critiques. :patrice:

Basically what I'm doing is learning something like arrays, loops, switch statement, return function and making a simple program.

Learn so more shyt and rewrite it with all the new shyt I learned as well. In theory it should be a more efficient program if I'm understanding what I'm learning
Make one :yeshrug:
 

OSUBaneBrowns

Ohio to California
Supporter
Joined
May 10, 2012
Messages
5,949
Reputation
823
Daps
16,093
Reppin
Long Beach, CA
Just finish reading "Teach Yourself SQL in 10 minutes" :blessed::patrice: . Going to have to find new examples to work in Microsoft Access to keep the information fresh in my head. Beside Udemy and Youtube videos, what is another place to practice or watch program coding to stay active?
 

Samson

Wholesome Black Man
Joined
Oct 18, 2017
Messages
3,374
Reputation
2,170
Daps
12,056
Reppin
Haitian Gang
I am loving MongoDB for a database. Nice and simple. It came easier to me than SQL. Is it possible to get by knowing just MongoDB or do you have to learn SQL too?
Just finish reading "Teach Yourself SQL in 10 minutes" :blessed::patrice: . Going to have to find new examples to work in Microsoft Access to keep the information fresh in my head. Beside Udemy and Youtube videos, what is another place to practice or watch program coding to stay active?
Codewars helped me. I used it for javascript and it helped me get the functions and methods down for problem-solving.
 

DJSmooth

Superstar
Joined
Oct 22, 2015
Messages
3,975
Reputation
1,229
Daps
23,678
What Docker information are you looking for?

I'm trying to pass/save my aws Parameter Secrets as environment variables in my Dockerfile.

Can't figure out how to get my aws credentials into my docker container locally.

The error is something yada yada you need to configure aws credentials when my shell script is called in my Dockerfile.
 

OSUBaneBrowns

Ohio to California
Supporter
Joined
May 10, 2012
Messages
5,949
Reputation
823
Daps
16,093
Reppin
Long Beach, CA
I am loving MongoDB for a database. Nice and simple. It came easier to me than SQL. Is it possible to get by knowing just MongoDB or do you have to learn SQL too?

Codewars helped me. I used it for javascript and it helped me get the functions and methods down for problem-solving.
A lot of the jobs that I’ve been looking at require SQL knowledge. Trying to find something better with higher pay.
 

Obreh Winfrey

Truly Brehthtaking
Supporter
Joined
Nov 18, 2016
Messages
20,852
Reputation
25,252
Daps
131,941
I'm trying to pass/save my aws Parameter Secrets as environment variables in my Dockerfile.

Can't figure out how to get my aws credentials into my docker container locally.

The error is something yada yada you need to configure aws credentials when my shell script is called in my Dockerfile.
tenor.gif

Good luck out there lol. I don't use AWS so I can't speak to that specifically. I could be misinterpreting, but you want to set up environment variables (AWS_USR, AWS_TOKEN) and make them available to your container? If so the you'll have something like:
docker run -d -e AWS_USR=some-user -e AWS_TOKEN=some-token your_image_name

But it almost sounds like your credentials aren't valid. Try running

docker run -it --entry point /bin/bash -e AWS_USR=some-user -e AWS_TOKEN=some-token your_image_name
Then run your script with bash -c my_script.sh. That might point you towards what the issue is
 
Top