This file contains 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 { polyfillDeclarativeShadowDom } from "./pollyfill"; | |
/** | |
* Multi-handle range slider input Web Component | |
* @class RangeSlider | |
* @extends HTMLElement | |
* @property {number} min - Minimum value of the slider | |
* @property {number} max - Maximum value of the slider | |
* @property {number} step - Step value of the slider | |
* @property {number[]} values - Array of values for each handle |
This file contains 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
.cache | |
node_modules | |
.DS_Store | |
package-lock.json | |
lists | |
tmp |
This file contains 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, { useState, useEffect } from 'react' | |
import styled, { css } from 'styled-components' | |
/** | |
* Domain Quality Criteria | |
* | |
* - domain length | |
* - if the domain has hyphens or not | |
* - if the domain has numbers or not | |
* - if the domain is using a common tld/extension |
This file contains 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
identifiers.txt | |
tokens.txt |
This file contains 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
_________ __ | |
\_ ___ \_______ ____ ____ | | __ ___________ | |
/ \ \/\_ __ \/ _ \_/ ___\| |/ // __ \_ __ \ | |
\ \____| | \( <_> ) \___| <\ ___/| | \/ | |
\______ /|__| \____/ \___ >__|_ \\___ >__| | |
\/ \/ \/ \/ | |
Alexander Crocker |
This file contains 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
/** | |
* Implement Gatsby's Node APIs in this file. | |
* | |
* See: https://www.gatsbyjs.org/docs/node-apis/ | |
*/ | |
// You can delete this file if you're not using it | |
const fetch = require("node-fetch"); | |
const axios = require("axios"); |
This file contains 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
{} |
This file contains 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
module.exports = { | |
plugins: [require("tailwindcss"), require("autoprefixer")], | |
} |
This file contains 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, { useState, useRef, useEffect } from 'react'; | |
import MobileDrawer from 'src/components/Client/UI/Menu/MenuSubComponents/MobileDrawer'; | |
import { Icon } from 'antd'; | |
import Router from 'next/router'; | |
import Logo from 'src/components/Client/UI/HeaderSubComponents/Logo'; | |
import Searchbar from 'src/components/Client/UI/HeaderSubComponents/SearchBar'; | |
import Menu from 'src/components/Client/UI/Menu/Menu'; | |
import SignIn from 'src/components/Client/UI/HeaderSubComponents/SignIn'; | |
const headerVerticalBar = { |
This file contains 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
#!/usr/bin/env python3 | |
# Copyright 2019 | |
# Alex Crocker - [email protected] | |
import os | |
import platform | |
import subprocess | |
from argparse import ArgumentParser, RawDescriptionHelpFormatter | |
import glob |
NewerOlder