This file contains hidden or 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
#!/bin/bash | |
docker images -q --filter "dangling=true" | xargs docker rmi |
This file contains hidden or 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
Links with more information: | |
http://docs.appcelerator.com/platform/latest/#!/guide/Alloy_XML_Markup-section-35621528_AlloyXMLMarkup-CollectionElement | |
http://docs.appcelerator.com/platform/latest/#!/guide/Alloy_Data_Binding |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or 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
https://iirs.googlecode.com/svn-history/r10/trunk/utiles/sinonimos.csv |
This file contains hidden or 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
#!/bin/bash | |
# echo export ANDROID_SDK=/Users/luis/Library/android-sdk-macosx >> ~/.zshconfig | |
# sudo echo /Users/luis/Library/android-sdk-macosx/tools >> /etc/paths | |
# sudo echo /Users/luis/Library/android-sdk-macosx/platform-tools >> /etc/paths | |
# ~/Library/Application Support/Titanium | |
# ~/Documents/Appcelerator_Studio_Workspace | |
echo "Installing python dependencies" | |
sudo easy_install pycrypto pyopenssl pyyaml Pygments markdown |
This file contains hidden or 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
#!/bin/bash | |
# Instructions to run | |
# create-reminder "Say thanks to Luis for this wonderful IFTTT recipe!" | |
# Instructions to configure | |
# Save this file as /usr/local/bin/create-reminder | |
# Run chmod +x /usr/local/bin/create-reminder | |
# Change the following lines | |
event_name="create_reminder" |
This file contains hidden or 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 argparse | |
import requests | |
import time | |
import json | |
def main(): | |
""" | |
Entry point of the application | |
:return: void |
OlderNewer