In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew updateCustom social sharing buttons for Twitter, Facebook, Google Plus, LinkedIn, StumbleUpon, and Pinterest.
via http://siliconstation.com/how-develop-custom-google-plus-button/
<a class="icon-twitter" rel="nofollow"
href="http://twitter.com/"| from django import forms | |
| class Form(forms.Form): | |
| field = forms.TypedChoiceField(coerce=lambda x: x =='True', | |
| choices=((False, 'No'), (True, 'Yes'))) |
To run this, you can try:
curl -ks https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh | bash
I haven't tested this script doing it this way but i run a lot of my Gists like this so maybe this one'll work too.
Alternatively,
curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
| var getRandomColor = function() { | |
| var letters = '0123456789ABCDEF'.split(''); | |
| var color = '#'; | |
| for (var i = 0; i < 6; i++ ) { | |
| color += letters[Math.floor(Math.random() * 16)]; | |
| } | |
| return color; | |
| } |
| function arCunks(list, pieces) { | |
| pieces = pieces || 2; | |
| var len = list.length; | |
| var mid = (len/pieces); | |
| var chunks = []; | |
| var start = 0; | |
| for(var i=0;i<pieces;i++) { | |
| var last = start+mid; | |
| if (!len%pieces >= i) { | |
| last = last-1 |
| matrix = [[1, 2, 3, 5], [4, 5, 6, 32], [7, 8, 9, 44]] | |
| d_positiv = [matrix[i][i] for i in range(len(matrix))] | |
| d_negative = [matrix[i][-i-1] for i in range(len(matrix))] | |
| d_positiv = [line[i] for i, line in enumerate(matrix)] | |
| d_negative = [line[-i-1] for i, line in enumerate(matrix)] |
| find . -name "*.pyc" -exec rm -rf {} \; |