Skip to content

Instantly share code, notes, and snippets.

View yomigeek's full-sized avatar
🚀
Love, Trust, Respect and Admire

Yomi Olaoye yomigeek

🚀
Love, Trust, Respect and Admire
View GitHub Profile
@yomigeek
yomigeek / editProfile.test.js
Last active July 24, 2018 07:29
T.D.D for Authors' Haven - Team Elven(Abayomi Olaoye)
// Developer: Abayomi Olaoye
// Test to edit/update a user profile
import { describe, it } from 'mocha';
import chai, { expect } from 'chai';
import chaiHttp from 'chai-http';
import index from '../index';
const should = chai.should();
chai.use(chaiHttp);
@yomigeek
yomigeek / App.jsx
Last active September 2, 2021 20:21
React Codes
// ADDING THE REDUX PROVIDER
import React from 'react';
import { Provider } from 'react-redux';
import store from '../redux/store';
import Routes from '../routes';
const App = () => {
return (
<Provider store={store}>
<Routes />
@yomigeek
yomigeek / AuthController.js
Last active April 30, 2021 16:31
NodeJS/Express code
class AuthController {
static userSignUp(req, res, next) {
res.status(200).json({
status: 'success',
message: 'signup sucessful',
});
}
}
export default AuthController;
@yomigeek
yomigeek / index.ipynb
Created March 1, 2024 17:16 — forked from georgeblck/index.ipynb
Comparison of openCV Interpolation methods by Anthony Tanbakuchi (Backup because his site is down)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.