All Projects → endiliey → cs50

endiliey / cs50

Licence: other
📗 Problem sets for CS50 course by Harvard University

Programming Languages

c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
Makefile
30231 projects

Labels

Projects that are alternatives of or similar to cs50

Codex
A free note-taking software for programmers and Computer Science students
Stars: ✭ 242 (+250.72%)
Mutual labels:  cs
PersonNotes
个人笔记集中营,快糙猛的形式记录技术性Notes .. 📚☕️⌨️🎧
Stars: ✭ 61 (-11.59%)
Mutual labels:  cs
ptt-studyabroad-api
🔎 Search articles with personalized results on ptt/studyabroad
Stars: ✭ 57 (-17.39%)
Mutual labels:  cs
Best Websites A Programmer Should Visit
🔗 Some useful websites for programmers.
Stars: ✭ 44,744 (+64746.38%)
Mutual labels:  cs
Crash Course Computer Science Chinese
💻 计算机速成课 | Crash Course 字幕组 (全40集 2018-5-1 精校完成)
Stars: ✭ 8,057 (+11576.81%)
Mutual labels:  cs
Phpinsights
🔰 Instant PHP quality checks from your console
Stars: ✭ 4,442 (+6337.68%)
Mutual labels:  cs
Qvoid-Token-Grabber
Grabs Discord tokens, browser cookies and passwords; Bypasses any kind of Token Protectors.
Stars: ✭ 60 (-13.04%)
Mutual labels:  cs
Repository-Collection
A collection of useful Github repositories. Github项目精选。
Stars: ✭ 14 (-79.71%)
Mutual labels:  cs
CobaltStrike Script Wechat Push
CobatStrike-Script, Beacon上线,微信实时推送!
Stars: ✭ 41 (-40.58%)
Mutual labels:  cs
ebook
一路走来收藏的电子书
Stars: ✭ 26 (-62.32%)
Mutual labels:  cs
Caesar
Open source cheat for Steam version of Counter-Strike 1.6.
Stars: ✭ 22 (-68.12%)
Mutual labels:  cs
Front-Interview
🎓 내가 직접 정리해보는 프론트엔드 기술 면접 및 이론
Stars: ✭ 27 (-60.87%)
Mutual labels:  cs
teknowledge
A basic CS curriculum for coding in Python.
Stars: ✭ 26 (-62.32%)
Mutual labels:  cs
cs-halloween-mod
🎃 Halloween Mod for Counter-Strike 1.6
Stars: ✭ 22 (-68.12%)
Mutual labels:  cs
haxeunity
Documentation about using Unity (c#) with Haxe
Stars: ✭ 16 (-76.81%)
Mutual labels:  cs
aimto408
🇨🇳🇨🇳🇨🇳这个repo是为了那些准备死磕 计算机考研 4️⃣0️⃣8️⃣的考研党准备的,当然你如果4门课中的部分也可以看看,欢迎star📝📝📝,祝你们一战成硕🏆🏆🏆~~(更新23年大纲变化----2023年408和数学基本无变化)
Stars: ✭ 2,543 (+3585.51%)
Mutual labels:  cs
NJU-CS-Kaoyan
南京大学计算机考研经验贴
Stars: ✭ 77 (+11.59%)
Mutual labels:  cs
Tech-Interview-Study
주니어 개발자를 위한 기초 CS 스터디
Stars: ✭ 136 (+97.1%)
Mutual labels:  cs
bcomp-extended
Emulator of basic computer
Stars: ✭ 21 (-69.57%)
Mutual labels:  cs
stack-cs-activities
A stack of activities to teach advanced computer science (developed by the Teaching Lab community at the Faculty of Informatics, Masaryk University)
Stars: ✭ 20 (-71.01%)
Mutual labels:  cs

Harvard CS50 2016/2017x Weekly Overview

Link to edX

Week 0: Scratch

Link to play the game that I created :

https://scratch.mit.edu/projects/137526206/#fullscreen

Week 1: C

water.c : a program to convert shower's length (in minutes) to equivalent water bottles

~/workspace/pset1/ (master) $ ./water
minutes: 10
bottles: 120

mario.c : a program that recreates half-pyramid using hashes (#) for blocks.

~/workspace/pset1/ (master) $ ./mario
height: 8
       ##
      ###
     ####
    #####
   ######
  #######
 ########
#########

greedy.c : a program to count minimum number of coins needed for a change using greedy algorithm

~/workspace/pset1/ (master) $ ./mario
Height: -2
Height: -1
Height: foo
Retry: bar
Retry: 1
##

Week 2: Crypto

caesar.c : a program to caesar cipher a text

~/workspace/pset2/ (master) $ ./caesar 13
Be sure to drink your Ovaltine!
Or fher gb qevax lbhe Binygvar!

vigenere.c : a program to vigenere cipher a text

~/workspace/pset2/ (master) $ ./vigenere bacon
Meet me at the park at eleven am
Negh zf av huf pcfx bt gzrwep oz

Week 3: Game of Fifteen

fifteen.c : a game of fifteen games

~/workspace/pset3/ (master) $ ./fifteen 4

15 14 13 12

11 10  9  8

 7  6  5  4

 3  1  2  _
 
Tile to move:

Week 4: Forensics

whodunit.c : a program that intelligently analyze an image (clue.bmp) and turn it to a better image (verdict.bmp)

~/workspace/pset4/ (master) $ ./whodunit clue.bmp verdict.bmp

resize.c : a program that can enlarge an image to n size

~/workspace/pset4/ (master) $ ./resize 4 small.bmp large.bmp

recover.c : a program that recovers .jpeg images from card.raw

~/workspace/pset4/ (master) $ ./recover

Week 5 and 6: Spellchecker

~/workspace/pset5/ (master) $ ./speller dictionaries/large endi.txt

MISSPELLED WORDS

nme
veri
persan
yo
bro
USConstitution
http
usconstitution
const
html

WORDS MISSPELLED:     10
WORDS IN DICTIONARY:  143091
WORDS IN TEXT:        722
TIME IN load:         0.10
TIME IN check:        0.00
TIME IN size:         0.00
TIME IN unload:       0.06
TIME IN TOTAL:        0.16

Week 7 and 8: Python

Requirements & Dependencies:

cd ~/workspace/pset6/sentiments/
pip3 install --user -r requirements.txt

Convert some of week 1 & 2 .c programs to .py

~/workspace/pset6/ (master) $ python mario.py
Height: 5
    ##
   ###
  ####
 #####
######
~/workspace/pset6/ (master) $ python greedy.py
O hai! How much change is owed?
0.41
4
~/workspace/pset6/ (master) $ python caesar.py 13
HELLO
URYYB
~/workspace/pset6/ (master) $ python vigenere.py bacon
Meet me at the park at eleven am
Negh zf av huf pcfx bt gzrwep oz

Sentiments

smile.py : a program that categorizes a word as positive or negative

tweets.py categorizes a user’s recent 100 tweets as positive or negative (uses Twitter API)

Implement a website that generates a pie chart categorizing a user’s tweets

Usage:

~/workspace/pset6/sentiments/ (master) $ export API_KEY= <insert your API_KEY from Twitter here>
~/workspace/pset6/sentiments/ (master) $ export API_SECRET= <insert your API_SECRET from Twitter here>
~/workspace/pset6/sentiments/ (master) $ export FLASK_APP=application.py
~/workspace/pset6/sentiments/ (master) $ export FLASK_DEBUG=1
~/workspace/pset6/sentiments/ (master) $ flask run

Week 9: Python & SQL

C$50 Finance Implement a website via which users can "buy" and "sell" stocks, a la the below.

Requirements & Dependencies:

cd ~/workspace/pset7/finance/
pip3 install --user -r requirements.txt

Usage:

~/workspace/pset7/finance/ (master) $ flask run
~/workspace/pset7/finance/ (master) $ phpliteadmin finance.db

Week 10 & 11: Javascript

Implement a website that lets users search for articles atop a map (using Google's API)

Requirements & Dependencies:

cd ~/workspace/pset8/mashup/
pip3 install --user -r requirements.txt

Usage:

~/workspace/pset8/mashup/ (master) $ export API_KEY=<API_KEY from Google Maps API>
~/workspace/pset8/mashup/ (master) $ flask run
~/workspace/pset8/mashup/ (master) $ phpliteadmin mashup.db

Week 12-end: Final Project

https://github.com/endiliey/rengorum

Disclaimer : I am aware that my materials might not be free of errors. I intend to correct them as I encounter it. I am still learning :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].