Skip to content

Instantly share code, notes, and snippets.

View riceboyler's full-sized avatar

Jason Clark riceboyler

View GitHub Profile
import { useRadio, UseRadioProps, Box } from '@chakra-ui/react';
import React from 'react';
import { QuestionResponse } from '../types';
interface Props extends UseRadioProps {
children: React.ReactNode;
question: QuestionResponse;
}
const RadioButton = (props: Props) => {
@riceboyler
riceboyler / .zshrc
Created January 5, 2021 19:58
ZSH config with quickstart
# Copyright 2006-2020 Joseph Block <jpb@unixorn.net>
#
# BSD licensed, see LICENSE.txt
#
# Set this to use case-sensitive completion
# CASE_SENSITIVE="true"
#
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
#
#
# Include this in your own .gitconfig by using the
# [include] directive with the path to this file
#
# [include]
# path = ~/.gitconfig.aliases
#
# If you don't have any existing includes, you can add this via the following command
#
# git config --global include.path ~/.gitconfig.aliases
@riceboyler
riceboyler / .zshrc.old
Created November 5, 2020 16:03
Old ZSHRC file for reference
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block, everything else may go below.
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
@riceboyler
riceboyler / .gitconfig.aliases
Created November 5, 2020 16:02
Git Aliases (from Haack)
#
# Include this in your own .gitconfig by using the
# [include] directive with the path to this file
#
# [include]
# path = ~/.gitconfig.aliases
#
# If you don't have any existing includes, you can add this via the following command
#
# git config --global include.path ~/.gitconfig.aliases
@riceboyler
riceboyler / .gitconfig
Created November 5, 2020 16:00
New Git Config
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Jason Clark
email = jason.clark@tcnbroadcasting.com
[include]
path = ~/.gitconfig.aliases
[core]
editor = code --wait
[diff]
@riceboyler
riceboyler / .zsh_aliases
Created November 5, 2020 15:59
ZSH Aliases
#!/bin/bash
#
# Only including a shebang to trigger Sublime Text to use shell syntax highlighting
#
# Copyright 2006-2018 Joseph Block <jpb@unixorn.net>
#
# BSD licensed, see LICENSE.txt in this repository.
if [[ -d ~/gocode ]]; then
export GOPATH=~/gocode
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=/Users/jasonclark/.oh-my-zsh
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
POWERLEVEL9K_MODE="nerdfont-complete"
@riceboyler
riceboyler / .hyper.js
Last active October 1, 2018 09:46
Hyper Terminal (<- Wow, I just realized that...) Config
module.exports = {
config: {
opacity: 0.9,
updateChannel: "canary",
fontSize: 14,
fontFamily:
'"Hasklug Nerd Font", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
fontWeight: 300,
fontWeightBold: 700,
cursorColor: "rgba(248,28,229,0.8)",
define(['durandal/system', './transitionHelper'], function(system, helper) {
var settings = {
inAnimation: 'fadeInLeftBig',
outAnimation: 'fadeOutRight'
},
fadeIn = function(context) {
system.extend(context, settings);
return helper.create(context);
};