I don't understand how to reference the response data I get from an API.
I got it. Confirms to me that I need more practice.Need more information to go on than that breh.
I don't understand how to reference the response data I get from an API.
I got it. Confirms to me that I need more practice.Need more information to go on than that breh.
Corey Schafer on Youtube is the holy grail when it comes to webdev in python. He IS the best python channel by a mile.Starting my side journey of learning web development with python. currently watching the automate the boring stuff udemy course and a youtube video by freecodecamp, is their anything else you guys would recommend I start with as Im completely new to programming? also which other languages should I learn for back end development?
Starting my journey to become a software developper. I have no it bachelors degree (just in psychology). I have been learning css html Javascript and java on code academy. Reading through all the threads now. Is it still best to look for a help desk job starting off, or am I confused? Also is code academy the best platform for me to use. I have absolutely no experience
Starting my side journey of learning web development with python. currently watching the automate the boring stuff udemy course and a youtube video by freecodecamp, is their anything else you guys would recommend I start with as Im completely new to programming? also which other languages should I learn for back end development?
comments full of black people in tech talking about their experiences.
I dont like the way their redirect their frustrations towards black people though
I feel like many fail to understand that their older generations were never exposed to these things so of course no one was gonna take them seriously growing up wanting to play with computers.
The real elephant in the room most black people in tech like to tippy toe around is the multi-generational effects of racism and white supremacy that made most black household worse off and UNABLE to move forward educationally.
I mean think about it, in a poor black family the last thing anybody is thinking about is buying their child a computer to tinker with when they barely keep the lights on making minimum wage. Most families see sports scholarships as the only viable way to get out of poverty (understandably).
This got me thinking about myself. I didnt start learning how to turn on a computer and write a sentence in microsoft word until I was FOURTEEN (a teenager!), and that only happened because I got a chance to take a free Microsoft Office course for 3 months.
I didnt even touch a computer again after that until I was in college and had to work on it regularly for classes.
That was during the time I had to take my first programming course in Java. Most cacs, asians and Indians in that class had already done coding in their high schools
I didnt even write a single line of code after that grueling semester until 7 years later when I accidentally discovered coding again through a graduate course, it was a wrap from that day on. I been coding circles around cac coworkers and bruising their egos like my life depends on it
The saddest thing about it is that this story of lack of exposure is not unique to just me, almost every black child who doesnt come from a middle class family has a similar one.
I think its unfair for us to shyt on other black people for not understanding us or not encouraging those dreams of being in tech when they clearly didnt know any better
CS50: Introduction to Computer Science
Its free to "audit" you get the whole course still, just no certificate unless you pay.
The dude is really really good at holding your hand through stuff. Currently doing it myself.
I'm currently in Help Desk trying to get out of it, so its not the worst place to start. It gives you some creds because you are in the Tech industry at that point.
You could even end up automating somethings on the job with Python and Powershell and move up that way.
But a Help Desk position is a good foot in the door. Not needed though, I'm sure folks have skipped it entirely.
What's a good book for c and c++
Just take a course, it will be faster to learn.
If you already have skill and experience in another language then just read the documentation to get familiar with syntax and language constructs....then start using it to build whatever u want while googling for help when stuck. Thats the quickest way if u already can code in another language
I raise you this for C. I have not see any resource better than these notes for C programming. I swear by these: Notes on Data Structures and Programming Techniques (CPSC 223, Spring 2018)gentlemen, can we compromise? It’s often helpful to run through the syllabus of actual brick and mortar college courses to find textbooks, study guides, and notes all in one place. My undergrad used “c++ for everyone” and it’s pretty thorough. They gave it to all elecEng + compEng freshmen as a primer for future hardware work. I believe there are several walkthroughs available online of the exercises within the book.
Also, here’s the sauce if you still looking around for a good foundation, @YOGEBEAR09 . The Direct link is http://roneducate.weebly (dot-com)/uploads/6/2/3/8/6238184/c_for_everyone_2nd_edition_horstmann_wiley_plus_textbook.pdf
Just substitute the obvious web formatting into the parenthesis and you should be good to go.
Find two integers such that applying f to them will produce 16 as the value, given that f is defined as follows:
Code:(define f (lambda (x y) (if (even? x) 7 (* x y))))
Is that 7 * x * y = 16 if x is even?Gents, a word, if you don't mind.
I'm going through this book, Concrete Abstractions, and already I'm stuck on a problem.
I figure I have to apply the function, nested, a few times. At least can someone tell me if I'm going in the right direction.
Is that 7 * x * y = 16 if x is even?
public int f (int x, int y)
{
if (x % 2 == 0) { return 7; } // if x is even
else { return (x * y); }
}