Computer Science Notes

Notes From CS Undergrad Courses FSU

This project is maintained by awa03

Socket Programming

Threads

Python Threads

Feature Posix Threads Python Threads

CPU vs IO Bound Operations

[!NOTE] Even though python cpu uses a lock it does not remove race conditions because thread operations are not atomic, meaning that they lock and unlock but each thread is not critical. A --- B --- A --- B A wont finish before B is called, they just do not run in parallel

ssh-keygen -t rsa -b 4096