home.social

#append — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #append, aggregated by home.social.

  1. New post: The Markdown Link no. 12

    Among today’s links are #markdowneditors Deepdwn and MarkLite, toolbar app Append, quick-capture app Kraa, and Mat Duggan plumbs the depths of the #filesystem

    md-markdown.com/blog/markdown-

    #markdown #Fountain #MSWord #WordStar #WordPerfect #Deepdwn #MarkLite #Append

  2. @foo

    It's a little #clearer what's going on here if you put it this way:

    >>> b = []
    >>> b.append(b)
    >>> b
    [[...]]
    >>> b is b[0]
    True

    So all you've done is create a #list, and then #append (not extend) that list to itself. Since `a` and `a[0]` are the same #object, the `in` test will return True either way.