This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function generator () { | |
var wordlist3 = [ | |
{ | |
"words": "hassle our fucking Prime Minister on twitter", | |
"link": "https://twitter.com/ScottMorrisonMP" | |
}, | |
{ | |
"words": "share my fucked up experience in the bushfires", | |
"link": "https://docs.google.com/document/d/1L8eynqn5RSsMZ5bdS4E2UaTtFEr9nDizr5eTjn0jBck/edit# " | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Enzyme, { shallow, mount } from 'enzyme'; | |
import sinon from 'sinon'; | |
import Adapter from 'enzyme-adapter-react-15.4'; | |
Enzyme.configure({ adapter: new Adapter() }); | |
class Child extends React.Component { | |
render() { | |
return ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var blackList = [ | |
"2XM Technology Pty Ltd", | |
"Absolute IT", | |
"Acorva Technical Recruitment", | |
"Acumen Consulting", | |
"Adaps", | |
"Adecco Personnel", | |
"Adroit People", | |
"Agile People", | |
"Alchemy Consulting", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Providers; | |
use Illuminate\Auth\AuthManager; | |
use Illuminate\Cache\CacheManager; | |
use Tymon\JWTAuth\Providers\LumenServiceProvider; | |
class JWTAuthServiceProvider extends LumenServiceProvider | |
{ |