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 requests # http://docs.python-requests.org/en/master/ | |
from bs4 import BeautifulSoup # https://www.crummy.com/software/BeautifulSoup/ | |
def check(name): | |
""" | |
Function to check the availability of a specific Steam ID. | |
""" | |
session = requests.Session() # Initilzes a new session object from the requests module | |
matches = [] # Creates an empty list to hold our match objects | |
requestUrl = "https://steamcommunity.com/id/%s" % name # Creates a variable to hold our request url which should be the url to the Steam profile page |
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
ProjectName @parallel(true) @autodone(false) | |
- TaskName @parallel(true) @autodone(false) @context(context) @tags(context) @due(Adjusted Date) | |
"Task notes can go here" |
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 |
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
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
{} |
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
_________ __ | |
\_ ___ \_______ ____ ____ | | __ ___________ | |
/ \ \/\_ __ \/ _ \_/ ___\| |/ // __ \_ __ \ | |
\ \____| | \( <_> ) \___| <\ ___/| | \/ | |
\______ /|__| \____/ \___ >__|_ \\___ >__| | |
\/ \/ \/ \/ | |
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
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
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 |