Skip to content

Instantly share code, notes, and snippets.

View teezzan's full-sized avatar
💭
Problem Solver.

Yusuf Taiwo Hassan teezzan

💭
Problem Solver.
View GitHub Profile
@teezzan
teezzan / README.md
Created October 16, 2021 06:15 — forked from betrcode/README.md
Using Python to check if remote port is open and accessible.
@teezzan
teezzan / readme-template.md
Created July 6, 2021 16:07 — forked from meg-gutshall/readme-template.md
A README.md template I created from a few different resources. It's a work in progress. ;) Please comment below with any suggestions for edits!

Project Title

Description

The What

A little info about your project and/or overview that explains what the project is about.

The Why

@teezzan
teezzan / GridStream.js
Created August 13, 2020 22:33 — forked from psi-4ward/GridStream.js
NodeJS MongoDB-GridFS Video range stream example Lets your browser seek/jump wihin the video-playback.
var app = require('express')();
var GridStore = require('mongodb').GridStore;
var ObjectID = require('mongodb').ObjectID;
var MongoClient = require('mongodb').MongoClient;
var Server = require('mongodb').Server;
var dbConnection;
MongoClient.connect("mongodb://localhost:27017/ersatz?auto_reconnect", {journal: true}, function(err, db) {
dbConnection = db;
app.listen(3000);
@teezzan
teezzan / test.js
Created July 10, 2020 15:52 — forked from jmyrland/test.js
Socket-io load test?
/**
* Modify the parts you need to get it working.
*/
var should = require('should');
var request = require('../node_modules/request');
var io = require('socket.io-client');
var serverUrl = 'http://localhost';