=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
BrainFuck Programming Tutorial by: Katie
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| import logger from 'redux-logger' | |
| import createSagaMiddleware from 'redux-saga' | |
| import { autoRehydrate } from 'redux-persist' | |
| import { createStore, applyMiddleware, compose } from 'redux' | |
| import RehydrationServices from '../' | |
| // creates the store | |
| export default (rootReducer, rootSaga) => { | |
| /* ------------- Redux Configuration ------------- */ |
| import React, {useState, useEffect, useRef} from "react" | |
| import {useRouter} from 'next/router' | |
| import axios from "axios"; | |
| import {Helmet} from "react-helmet"; | |
| const Event = ({embed}) => { | |
| const router = useRouter() | |
| const [embedSRC, setEmbedSRC] = useState(embed); | |
| const [content, setContent] = useState(null) | |
| // useEffect(() => { |
| <?php | |
| namespace App\Passport; | |
| use App\User; | |
| use Lcobucci\JWT\Builder; | |
| use Lcobucci\JWT\Signer\Key; | |
| use League\OAuth2\Server\CryptKey; | |
| use Lcobucci\JWT\Signer\Rsa\Sha256; | |
| use Laravel\Passport\Bridge\AccessToken as BaseToken; |
| <?php | |
| /* FILE LOCATION: /public_html/vendor/magento/module-authorizenet/Model/Directpost/Request.php */ | |
| /** | |
| * Copyright © Magento, Inc. All rights reserved. | |
| * See COPYING.txt for license details. | |
| */ | |
| namespace Magento\Framework\ObjectManager\Factory; | |
| use Magento\Framework\Exception\RuntimeException; | |
| use Magento\Framework\ObjectManagerInterface; |
| <?php | |
| /* FILE LOCATION: /public_html/vendor/magento/module-authorizenet/Model/Directpost/Request.php */ | |
| /** | |
| * Copyright © Magento, Inc. All rights reserved. | |
| * See COPYING.txt for license details. | |
| */ | |
| declare(strict_types=1); | |
| namespace Magento\Authorizenet\Model\Directpost; |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |