Skip to content

Instantly share code, notes, and snippets.

main debug: processing request item: watch?v=7J0sprDa_50, node: Playlist, skip: 0
main debug: rebuilding array of current - root Playlist
main debug: rebuild done - 1 items, index 0
main debug: starting playback of new item
main debug: resyncing on watch?v=7J0sprDa_50
main debug: watch?v=7J0sprDa_50 is at 0
main debug: creating new input thread
main debug: Creating an input for 'watch?v=7J0sprDa_50'
main debug: requesting art for new input thread
ACDSee Mac Pro 3
END USER LICENSE AGREEMENT
PLEASE READ THIS END USER LICENSE agreement (the “agreement”) CAREFULLY BEFORE USING THIS SOFTWARE.
Notice to User – By receiving and/or using this ACD Systems INTERNATIONAL INC. (“ACD”) software You accept and agree to be bound by the following User Agreement. This Agreement is a binding legal agreement between ACD and the purchasers, users or evaluators (“You”) of this Software. If You do not agree to be bound by this Agreement, remove this Software from Your computer now and, if applicable, promptly return to acd by mail any copies of this Software and related documentation and packaging in Your possession.
1. Definitions – “Software” means the computer software program known as ACDSee Mac Pro 3 that accompanies this Agreement and includes any available software user manuals, reference manuals and installation guides, or portions thereof, either in electronic or printed form, in any media whatsoever. “Use” of this Software means that You have loaded, in
# ===
# Given a list, write a program that prints out all the elements of the list that are less than 5
# * Make a new list that has all the elements less than 5 from this list in it and print out this new list
# * Write this in one line of Python
# ===
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
# take 1
print([e for e in a if e < 5])
# take 2
@for-coursera
for-coursera / bvimgrep.patch
Last active October 15, 2015 17:21
bvimgrep-patch
# HG changeset patch
# Parent 03fc4a77ed148ec824787f6930d1e595df27f45f
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -628,6 +628,21 @@ 5.1 using Vim's internal grep
the current window is used instead of the quickfix
list.