skip to Main Content

C++/CMake can't find libxml++ – Debian

I'm a Java/Go/Python dev trying to get my feet wet with the C++ toolchain and having a hard time forcing CMake to find dependencies. I installed libxml++ on Debian using apt-get install libxml++2.6-dev and it installed it to /usr/include/libxml++2.6/libxml++. This…

VIEW QUESTION

.Net C# DateTime on Mac OSX vs Debian Linux

I have code that converts long numbers to dates. DateTimeOffset value = DateTimeOffset.FromUnixTimeSeconds(1597325462); DateTime showTime = value.DateTime; string easternZoneId = "America/New_York"; TimeZoneInfo easternZone = TimeZoneInfo.FindSystemTimeZoneById(easternZoneId); DateTime targetTime = TimeZoneInfo.ConvertTime(showTime, easternZone); Console.WriteLine("DateTime is {0}", targetTime); On my Mac, the output is…

VIEW QUESTION
Back To Top
Search