In recent years, the rise of machine learning and deep learning has made vector databases increasingly important for managing high-dimensional data... Read More »
Java Date
Spring Boot with Weaviate for vector search
The world of search is evolving. Traditional keyword-based search systems are giving way to vector search, which utilizes machine learning and sema... Read More »
How to convert String to Date in Java using SimpleDateFormat To Desired Output Format
Simple way of doing Date conversion from String is by using java.text.SimpleDateFormat. Here’s an extract of relevance from the javadoc, listing all available format patterns: G Era designator Text AD y Year Year 1996; 96 M Month in year Month July; Jul; 07 w Week in year Number 27 W Week in month Number 2 D Day in year Number ... Read More »
Unix epoch time from Java Date object
What is epoch time? The Unix epoch (or Unix time or POSIX time or Unix timestamp) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z). Literally speaking the epoch is Unix time 0 (midnight 1/1/1970), but ‘epoch’ is often used as a synonym for ‘Unix time’. Many ... Read More »
Unix epoch time to Java Date object
What is epoch time? The Unix epoch (or Unix time or POSIX time or Unix timestamp) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z). Literally speaking the epoch is Unix time 0 (midnight 1/1/1970), but ‘epoch’ is often used as a synonym for ‘Unix time’. Many ... Read More »