Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Mësoni Më Tepër

When I look at cookies.sqlite, how do I read the numbers under last accessed, expiry, and creation time?

  • 1 përgjigje
  • 1 e ka hasur këtë problem
  • 7 parje
  • Përgjigjja më e re nga cor-el

more options

Under the column "expiry" it reads: 1691890990 Under the column "lastAccessed" it reads: 1484536794500550 Under the column "creationTime" it reads: 1376530990050796

Under the column "expiry" it reads: 1691890990 Under the column "lastAccessed" it reads: 1484536794500550 Under the column "creationTime" it reads: 1376530990050796

Zgjidhje e zgjedhur

The 16 character strings are date-time stamps in microseconds in Unix epoch format.

The shorter expiry values are likely a count in milliseconds (days: xxx/(24*60*60*1000)).

Possible JavaScript bookmarklet to convert the 16 character strings:

javascript:(function(){var D='',d=new Date(),n; do{n=parseInt(D);d.setTime(isNaN(n)?d.getTime():n/1000);D=prompt('EPOCH (microseconds)\nClick Cancel to Stop\n\n'+D+'\n'+d.toLocaleString()+'\n'+(d.getTime()*1000),d.toUTCString());}while(D!=null);})();
Lexojeni këtë përgjigje brenda kontekstit 👍 3

Krejt Përgjigjet (1)

more options

Zgjidhja e Zgjedhur

The 16 character strings are date-time stamps in microseconds in Unix epoch format.

The shorter expiry values are likely a count in milliseconds (days: xxx/(24*60*60*1000)).

Possible JavaScript bookmarklet to convert the 16 character strings:

javascript:(function(){var D='',d=new Date(),n; do{n=parseInt(D);d.setTime(isNaN(n)?d.getTime():n/1000);D=prompt('EPOCH (microseconds)\nClick Cancel to Stop\n\n'+D+'\n'+d.toLocaleString()+'\n'+(d.getTime()*1000),d.toUTCString());}while(D!=null);})();

Ndryshuar nga cor-el