- http://getmacapps.com
(curl -s http://www.getmacapps.com/raw/11xrkq600sh | sh)
- Chrome
- Firefox
- Dropbox
- Evernote
- Skype
- Adium
- Spotify
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
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): " |
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
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) { |
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
(function() { | |
function sleep(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
function checkElement(element, name) { | |
return new Promise((resolve, reject) => { | |
if (element) { |
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 {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 */ }; |
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
hello, world. This test can be marked a success! |
OlderNewer