Unix to UTCAllows developers to easily read unix timestamps in VS Code Version 2.0.4 VS Code Marketplace • Features • Requirements • FAQ Features
Requirements
Quick Install
uvicorn: ^0.24.0
starlette: ^0.27.0
httpx: ^0.26.0
fastapi: ^0.104.1
FAQNothing happens when running extension commands?If no notification window pops up on the bottom right of VS Code make sure you installed required python libraries in Requirements. These must be installed globally and not through a virtual environment. Since this extension uses the Python Datetime library to provide accurate timestamps with the TypeScript VS Code API, it needs libraries like FastAPI installed on your local computer. What is a Unix timestamp?Unix time is a date and time representation widely used in computing. It measures time by the number of non-leap seconds that have elapsed since 00:00:00 UTC on 1 January 1970, the Unix epoch.
What is an ISO 8601 format timestamp and why use it?ISO 8601 is an international standard covering the worldwide exchange and communication of date and time-related data. I chose this format for its precision and ability to represent UTC offset. It has strong use cases in worldwide communication and time-synchronization.
The ISO 8601 includes the year (YYYY), month (MM), day (DD), followed by the letter 'T' to separate the date from the time, and then the hours (HH), minutes (MM), seconds (SS), and fractional seconds (SSSSSS) with a decimal point. The '+00:00' at the end represents the UTC offset, indicating that the time is in Coordinated Universal Time (UTC) with zero offset (no time zone adjustment). Future Plan
UsageLocal Development
|