Skip to content

Instantly share code, notes, and snippets.

View flickz's full-sized avatar
👋

Oluwaseun Omoyajowo flickz

👋
View GitHub Profile
.NET
360-degree video
3D Animation
3D Design
3D Model Maker
3D Modelling
3D Printing
3D Rendering
3ds Max
4D
{
"no_of_rooms": 2,
"no_of_toilets": 1,
"no_of_bathrooms": 2,
"road_accessibility":"accessible",
"treated_water":true,
"bills_payment": ["light", "water", "security"],
"water_heater": true,
"ventilation": "ventilated",
"gated_community": true,
@flickz
flickz / gsoc-report.md
Last active August 9, 2018 19:17
2018 GSoC Final Submission Report

Google Summer of Code 2018 Final Submission Report

Authenticating Users via Email, Facebook and Google.

Summary

This part of the project involves authenticating users with email using Auth0 Passwordless authentication strategy. While also using Auth0 social connections to authenticate users via Facebook and Google. The previous Twitter authentication used on Streetmix was also moved to Auth0.

@flickz
flickz / enzyme_render_diffs.md
Created April 6, 2018 18:02 — forked from fokusferit/enzyme_render_diffs.md
Difference between Shallow, Mount and render of Enzyme

Shallow

Real unit test (isolation, no children render)

Simple shallow

Calls:

  • constructor
  • render
@flickz
flickz / gist:63c843f6489405085d6260ced6910ce6
Created February 27, 2018 17:15 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@flickz
flickz / react-app-scrapping.js
Created October 12, 2017 05:19 — forked from juanbrujo/react-app-scrapping.js
Scrapping a React App using PhantomJS and Cheerio
var phantom = require('phantom');
var Q = require('q');
var cheerio = require('cheerio');
var _ph, _page, _outObj;
var url = ABSOLUTE_URL; // change here for your React app site
phantom.create().then(ph => {
_ph = ph;
return _ph.createPage();
}).then(page => {
const fs = require('fs');
const setTimeOutlogger = ()=>{
console.log('setTimeout logger');
}
const setImmediateLogger = ()=>{
console.log('setImmediate logger');
}
//For timeout