You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<itemrdf:about="http://www.fullstackpython.com/">
<title>Full Stack Python</title>
<dc:date>2014-07-06T14:12:01+00:00</dc:date>
<link>http://www.fullstackpython.com/</link>
<dc:creator>davewongillies</dc:creator><description><![CDATA[This guide has a different focus from the above resources. Here I focus on explaining several ways of setting up a Python web application stack from server infrastructure through JavaScript execution on a user's browser.]]></description>
<dc:subject>python webdev linux</dc:subject>
<dc:source>http://delicious.com/</dc:source>
<dc:identifier>http://pinboard.in/u:davewongillies/b:23e4d9f9664a/</dc:identifier>
<taxo:topics><rdf:Bag> <rdf:lirdf:resource="http://pinboard.in/u:davewongillies/t:python"/>
<rdf:lirdf:resource="http://pinboard.in/u:davewongillies/t:webdev"/>
<rdf:lirdf:resource="http://pinboard.in/u:davewongillies/t:linux"/>
</rdf:Bag></taxo:topics>
</item>
<itemrdf:about="http://apenwarr.ca/log/?m=201407#01">
<title>apenwarr: The curse of smart people</title>
<dc:date>2014-07-06T14:12:01+00:00</dc:date>
<link>http://apenwarr.ca/log/?m=201407#01</link>
<dc:creator>mechazoidal</dc:creator><description><![CDATA[It can be easy for very smart people to wall themselves away from the world and rationalize away everything.]]></description>
<dc:subject>culture intelligence post</dc:subject>
<dc:identifier>http://pinboard.in/u:mechazoidal/b:a540d0137946/</dc:identifier>
<taxo:topics><rdf:Bag> <rdf:lirdf:resource="http://pinboard.in/u:mechazoidal/t:culture"/>
<rdf:lirdf:resource="http://pinboard.in/u:mechazoidal/t:intelligence"/>
<rdf:lirdf:resource="http://pinboard.in/u:mechazoidal/t:post"/>
</rdf:Bag></taxo:topics>
</item>
Note that both dc:date elements are set to 2014-07-06T14:12:01+00:00.
This poses a problem since Coldsweat to figure out the next entry to show check entry timestamps and sort it:
To fix this is necessary to apply two sort and condition parameters: last_updated_on and id. Note that Peewee order_by() method accepts multiple clauses.
The text was updated successfully, but these errors were encountered:
First option: Extract all entries from a feed, sort asc by their timestamp and then add them to the database. By relying on ID database autoincrement field we are sure entries will maintain they order, even if timestamps are all equal.
Later, in the views sort by ID's desc, not timestamp. Older entries will be on bottom (smal ID's), recent entries on top. Second option: Use a greater fetcher "add time" accuracy, down to microseconds maybe, instead of relying to entry published date. This mirrors what Google Reader API expects, so it might be a better solution overall.
PInboard "popular" feed entries have all the same timestamp. E.g:
Note that both dc:date elements are set to 2014-07-06T14:12:01+00:00.
This poses a problem since Coldsweat to figure out the next entry to show check entry timestamps and sort it:
To fix this is necessary to apply two sort and condition parameters: last_updated_on and id. Note that Peewee order_by() method accepts multiple clauses.
The text was updated successfully, but these errors were encountered: