This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
This list will hopefully shrink faster than it can grow. (yeah, right)
jQuery deparam / deparam+ / sortObject (WIP)
https://gist.github.com/1025817
jQuery infiniteScroller (WIP)
jQuery scrollinout event
brew install git
brew install wget
git clone [email protected]:rmurphey/dotfiles.git
#!/bin/bash | |
# | |
# autosshd This script starts and stops the autossh daemon | |
# | |
# chkconfig: 2345 95 15 | |
# processname: autosshd | |
# description: autosshd is the autossh daemon. | |
# Source function library. | |
. /etc/rc.d/init.d/functions |
ISO 3166 Country Code | ISO639-2 Country Code | Country | ISO 3166 Country Code | ISO639-2 Lang | Language | Date Format | |
---|---|---|---|---|---|---|---|
ALB | AL | Albania | sqi | sq | Albanian | yyyy-MM-dd | |
ARE | AE | United Arab Emirates | ara | ar | Arabic | dd/MM/yyyy | |
ARG | AR | Argentina | spa | es | Spanish | dd/MM/yyyy | |
AUS | AU | Australia | eng | en | English | d/MM/yyyy | |
AUT | AT | Austria | deu | de | German | dd.MM.yyyy | |
BEL | BE | Belgium | fra | fr | French | d/MM/yyyy | |
BEL | BE | Belgium | nld | nl | Dutch | d/MM/yyyy | |
BGR | BG | Bulgaria | bul | bg | Bulgarian | yyyy-M-d | |
BHR | BH | Bahrain | ara | ar | Arabic | dd/MM/yyyy |
launchctl load ~/Library/LaunchAgents/local.gmailbackup.plist
#!/bin/bash | |
# BrowserStack SSH Tunnel Setup | |
# Find your key by logging into BrowserStack and finding your command line tunnel setup info | |
KEY=YOUR_KEY_HERE | |
# Add your internal hosts here | |
INTERNAL_HOSTS=( dev alpha beta whatever whocares ) | |
for host in ${INTERNAL_HOSTS[@]} ; do |
ag "sometext" --nogroup | awk '{print substr($1,1,index($1,":")-1);}' | xargs -I {} sed -i .bak -e 's/sometext/anothertext/g' {} |
pipeline { | |
agent any | |
stages { | |
stage('Prepare') { | |
steps { | |
parallel( | |
"Composer": { | |
sh 'composer update' | |
}, |
9 March, 2019
We were discussing with @erusev what we can do with async operation when using useReducer()
in our application. Our app is simple and we don't want to use a state management library. All our requirements are satisfied with using one root useReducer()
. The problem we are facing and don't know how to solve is async operations.
In a discussion with Dan Abramov he recommends Solution 3 but points out that things are fresh with hooks and there could be better ways of handling the problem.