Skip to content

Instantly share code, notes, and snippets.

@dggodfrey
dggodfrey / newMacSetup.md
Last active August 29, 2015 14:23
Basic apps list for setting up a new mac

Basic Mac Setup (Web Developer Focus)

  • http://getmacapps.com (curl -s http://www.getmacapps.com/raw/11xrkq600sh | sh)
    • Chrome
    • Firefox
    • Dropbox
    • Evernote
    • Skype
    • Adium
  • Spotify
@dggodfrey
dggodfrey / dggodfrey.zsh-theme
Last active October 8, 2015 21:49
Oh My Zsh theme that uses /michaeldfallen/git-radar
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$reset_color%}'
PROMPT="$PROMPT\$(git-radar --zsh --fetch): "
function polarToCartesian(centerX, centerY, radius, angleInDegrees) {
var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;
return {
x: centerX + (radius * Math.cos(angleInRadians)),
y: centerY + (radius * Math.sin(angleInRadians))
};
}
function describeArc(x, y, radius, startAngle, endAngle) {
@dggodfrey
dggodfrey / jiradescriptionbasic.js
Created April 23, 2020 18:29
Adds basic structure to JIRA ticket
(function() {
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function checkElement(element, name) {
return new Promise((resolve, reject) => {
if (element) {
import {useEffect, useRef, EffectCallback, DependencyList} from 'react';
type useNonInitialEffectReturn = void | (() => void | undefined)
export const useNonInitialEffect = (effect: EffectCallback, deps?: DependencyList): useNonInitialEffectReturn => {
const initialRender = useRef(true);
useEffect(() => {
let effectReturns: useNonInitialEffectReturn = () => { /* Empty Return fallback */ };
hello, world. This test can be marked a success!