Official CS50x Thread (Free Online Harvard Programming [C, PHP, HTML, Javascript, SQL...] Courses

newarkhiphop

Moderator
Staff member
Supporter
Joined
Apr 30, 2012
Messages
37,913
Reputation
10,152
Daps
124,614
Like to add if we get stuck to offer help to each other.

Just read the syllabus and this is awesome. I will try to start on Sunday and use this class and hopefully achieve a cert towards my current job progression.


Yup that's the plan hopefully,

I plan on doing it every Saturday
 

CELL

All Star
Joined
Jun 15, 2012
Messages
5,056
Reputation
1,785
Daps
9,414
Reppin
NULL
I signed up. :blessed:

I'm a web developer and looking to further my PHP and SQL back-end programming. Any one hit me up if you're into the web and wanna start smashing this course out with the coli brehs.

In fact any one wanna make a Coli group, including discussions about the week lectures? Let's get these certs brehs :ahh:
 
Last edited:

PS5 Pro

DC looking a 1/2 seed right about nuh
Joined
Feb 28, 2013
Messages
31,609
Reputation
-10,523
Daps
21,833
Reppin
The Original Rec Room Gang
If there's anyone here that's serious about learning to code and ever needs some help with something they're learning feel free to hit me up. I program for a living and I've taught others professionally and am happy to help people learn how to program.
Oh look at this know it all as nikka. You know it all Kodie. You be giving out lectures n shyt my nikka
You really tryna earn this Rekkapryde Mod of the year trophy huh man
:ufury:
signed up, and im off this month :blessed:
Too bad the course doesn't start til the 29th, basically next month :patrice:
I will take you up on that offer.

The Coli is providing more then just music and piff Coli>:hamster:
True, but now "the man" has a reason to shut this joint down :damn:
 

newarkhiphop

Moderator
Staff member
Supporter
Joined
Apr 30, 2012
Messages
37,913
Reputation
10,152
Daps
124,614
I signed up. :blessed:

I'm a web developer and looking to further my PHP and SQL back-end programming. Any one hit me up if you're into the web and wanna start smashing this course out with the coli brehs.

In fact any one wanna make a Coli group, including discussions about the week lectures? Let's get these certs brehs :ahh:


Let's use the thread for that
 

newarkhiphop

Moderator
Staff member
Supporter
Joined
Apr 30, 2012
Messages
37,913
Reputation
10,152
Daps
124,614
Ok so i just finished Lecture 1 of Lesson 0 , all is simple enough brehs , but can someone explain this in another format? Its a simple algorithm to explain how to count people in a room

Now i know this is basic algebra but every time i tried to follow the county i was wrong , i kept being off by 1 or 2

@Kodie

2cqciso.png



also for those wondering Lesson 0 is two 1 hour lectures + assignments
 

newarkhiphop

Moderator
Staff member
Supporter
Joined
Apr 30, 2012
Messages
37,913
Reputation
10,152
Daps
124,614
also is it easier to learn to code using a windows machine or a MAC? i have access to both, i noticed a lot of the people in the lecture including the professor are using macbooks
 

Liu Kang

KING KILLAYAN MBRRRAPPÉ
Supporter
Joined
May 3, 2012
Messages
13,750
Reputation
5,513
Daps
29,905
Ok so i just finished Lecture 1 of Lesson 0 , all is simple enough brehs , but can someone explain this in another format? Its a simple algorithm to explain how to count people in a room

Now i know this is basic algebra but every time i tried to follow the county i was wrong , i kept being off by 1 or 2

@Kodie

2cqciso.png



also for those wondering Lesson 0 is two 1 hour lectures + assignments
I also finished Lesson 0 yesterday and doing some problem sets today.

From what I understood :
The setting is N = 0, so it's the first value of N
- First step, you take the 1st value, so it's N = 0 + 1 = 1. After the first step, N = 1. And 1 is N's 2nd value.
- Second step, you take the 2nd value, so it's N = 1 + 1 = 2 and so on.

EDIT : For the second algorithm with N = N + 2, it's also the same. N is set at 0
- First step (ie, first pair) : N = N + 2 = 0 + 2 = 2 ; N = 2
- Second step (ie, second pair) : N = N +2 = 2 + 2 = 4 ; N = 4 and so on...

I don't know if I'm clear, but it's clear to me :lolbron:

also is it easier to learn to code using a windows machine or a MAC? i have access to both, i noticed a lot of the people in the lecture including the professor are using macbooks
If you're on windows, just download notepad++.
 
Last edited:

newarkhiphop

Moderator
Staff member
Supporter
Joined
Apr 30, 2012
Messages
37,913
Reputation
10,152
Daps
124,614
I also finished Lesson 0 yesterday and doing some problem sets today.

From what I understood :
The setting is N = 0, so it's the first value of N
- First step, you take the 1st value, so it's N = 0 + 1 = 1. After the first step, N = 1. And 1 is N's 2nd value.
- Second step, you take the 2nd value, so it's N = 1 +1 = 2 and so on.



If you're on windows, just download notepad++.


so if there is 4 people in the room for example

person 1 = 0
person 2 = 1
person 3 = 2
person 4 = 3

??

:sadbron: i knew i should paid attention during algebra
 

Liu Kang

KING KILLAYAN MBRRRAPPÉ
Supporter
Joined
May 3, 2012
Messages
13,750
Reputation
5,513
Daps
29,905
so if there is 4 people in the room for example

person 1 = 0
person 2 = 1
person 3 = 2
person 4 = 3

??

:sadbron: i knew i should paid attention during algebra
You forgot the formula. The basis is two things : { N = 0 AND N = N + 1 }. If you don't do the second part, your count is wrong and therefore is your increment.
N1 = N + 1 = 0 + 1 = 1 => N = 1
N2 = N + 1 = 1 + 1 = 1 => N = 2
N3 = N + 1 = 2 + 1 = 1 => N = 3
N4 = N + 1 = 3 + 1 = 1 => N = 4

EDIT : I put some numbers after N, just to materialize the step, but all along, there is only one variable which is N. The variable as it's named changes during the whole time the algorithm goes and evolves with it.
 
Last edited:

gho3st

plata or plomo
Joined
Oct 27, 2012
Messages
34,641
Reputation
2,795
Daps
83,288
Reppin
2016
also is it easier to learn to code using a windows machine or a MAC? i have access to both, i noticed a lot of the people in the lecture including the professor are using macbooks
from what i understand, we will be coding using a linux based OS using a virtual environment.
 
Top