Skip to content

Instantly share code, notes, and snippets.

View aderonkeakinyemi's full-sized avatar

Aderonke Akinyemi aderonkeakinyemi

View GitHub Profile
@aderonkeakinyemi
aderonkeakinyemi / myHTTPServer.js
Last active August 29, 2015 14:27
My Server Assignment
//importing the HTTP module
var http = require('http');
//Defining the port that i want to listen to
const PORT=8080;
//a function that handles requests and sends response
function handleRequest(request, response){
response.end('Hello World');
}
@aderonkeakinyemi
aderonkeakinyemi / PY0101EN-1-1-Types.ipynb
Created April 5, 2019 07:57
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / PY0101EN-1-2-Strings.ipynb
Created April 6, 2019 15:52
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / PY0101EN-2-1-Tuples.ipynb
Created April 7, 2019 18:35
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Lists.ipynb
Created April 7, 2019 18:53
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Dictionaries.ipynb
Created April 8, 2019 04:28
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Sets.ipynb
Created April 8, 2019 07:21
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Conditions.ipynb
Created April 9, 2019 04:49
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Loops.ipynb
Created April 10, 2019 04:55
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aderonkeakinyemi
aderonkeakinyemi / Functions.ipynb
Created April 10, 2019 20:48
Created on Cognitive Class Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.