<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Paul Fenwick</title>
    <description>The latest articles on DEV Community by Paul Fenwick (@pf_96da86a2ef1d).</description>
    <link>https://dev.to/pf_96da86a2ef1d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F876939%2Fee3be2d4-ad0b-45d7-ab64-68c65346ac22.png</url>
      <title>DEV Community: Paul Fenwick</title>
      <link>https://dev.to/pf_96da86a2ef1d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pf_96da86a2ef1d"/>
    <language>en</language>
    <item>
      <title>QL to query convert chrome time stamp to epoch milliseconds</title>
      <dc:creator>Paul Fenwick</dc:creator>
      <pubDate>Tue, 14 Jun 2022 09:05:45 +0000</pubDate>
      <link>https://dev.to/pf_96da86a2ef1d/ql-to-query-convert-chrome-time-stamp-to-epoch-milliseconds-1jnh</link>
      <guid>https://dev.to/pf_96da86a2ef1d/ql-to-query-convert-chrome-time-stamp-to-epoch-milliseconds-1jnh</guid>
      <description>&lt;p&gt;I am trying query the Chrome history database and return the chromium timestamp as human readable. for example 14/06/2022 10:05:30.25&lt;/p&gt;

&lt;p&gt;SELECT u.url AS URL, u.title AS Title, u.visit_count As "Visit Count", datetime(u.last_visit_time / 1000000 + (strftime('%s', '1601-01-01')), 'unixepoch', 'localtime') As "Last Visited Date Time", datetime(v.visit_time / 1000000 + (strftime('%s', '1601-01-01')), 'unixepoch', 'localtime') AS "Visited Date Time" FROM urls u, visits v WHERE u.id = v.url&lt;/p&gt;

</description>
      <category>sql</category>
      <category>beginners</category>
      <category>sqlite</category>
      <category>chrome</category>
    </item>
  </channel>
</rss>
