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 photos | |
import dialogs | |
delete_these = list() | |
for album in photos.get_albums(): | |
size = len(album.assets) | |
to_delete = size == 0 | |
# print "{} {} {}".format(album.title, size, to_delete and '***') | |
if to_delete: |
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
from robot.libraries.BuiltIn import BuiltIn, register_run_keyword | |
def my_keyword(thing): | |
BuiltIn().run_keyword("Log", thing) | |
# Uncommenting this also resolves the issue. | |
# register_run_keyword(__name__, my_keyword) |
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
Ed-Brannins-MacBook-Pro:review-queue-node ed$ clear; npm install sqlite3 --loglevel=verbose | |
npm info it worked if it ends with ok | |
npm verb cli [ '/Users/ed/.nvm/versions/node/v4.0.0/bin/node', | |
npm verb cli '/Users/ed/.nvm/versions/node/v4.0.0/bin/npm', | |
npm verb cli 'install', | |
npm verb cli 'sqlite3', | |
npm verb cli '--loglevel=verbose' ] | |
npm info using [email protected] | |
npm info using [email protected] | |
npm verb install initial load of /Users/ed/dev/review-queue-node/package.json |
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
running install | |
running bdist_egg | |
running egg_info | |
writing requirements to mkdocs.egg-info\requires.txt | |
writing mkdocs.egg-info\PKG-INFO | |
writing top-level names to mkdocs.egg-info\top_level.txt | |
writing dependency_links to mkdocs.egg-info\dependency_links.txt | |
writing entry points to mkdocs.egg-info\entry_points.txt | |
writing requirements to mkdocs.egg-info\requires.txt | |
writing mkdocs.egg-info\PKG-INFO |
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
syntax on | |
set autoindent | |
set number | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set ruler | |
set incsearch | |
set hlsearch |