R Markdown HTML Number Figures

The other answers provided are relatively out of date, and this has since been made very easy using the bookdown package. This package provides a number of improvements which includes the built-in numbering of figures across Word, HTML and PDF. To be able to use bookdown, you need to first install the package install.packages(“bookdown”) and … Read more

Get OS Version / Friendly Name in C#

Add a reference and using statements for System.Management, then: public static string GetOSFriendlyName() { string result = string.Empty; ManagementObjectSearcher searcher = new ManagementObjectSearcher(“SELECT Caption FROM Win32_OperatingSystem”); foreach (ManagementObject os in searcher.Get()) { result = os[“Caption”].ToString(); break; } return result; }