TheCodeArtist

Results 12 comments of TheCodeArtist

Upon selecting **Log Work**, each entry of few seconds/minutes/hours should be logged individually at the right starting-timestamp

**References for easily storing/retrieving app settings:** 1. https://msdn.microsoft.com/en-us/library/a65txexh.aspx?f=255&MSPPError=-2147217396 2. https://msdn.microsoft.com/en-us/library/fwc80dzb.aspx 3. http://www.dondraper.com/2011/01/easily-save-and-retrieve-application-and-user-settings-in-vb-net-or-c-apps/

Also consider including an check-box option to automatically delete the entries from the window log table in the app once they are logged to the file

Add 2 options(automatically switched) for systray icons - Base Active logger icon + overlaid "magnifying glass" when logging active. - Base Active logger icon + overlaid "Zzz..." when logging paused.

**Commands** section of https://linux.die.net/man/8/crash contains few useful examples of commands that can be supported to read/interpret a core file.

> Something like readelf -x .rodata Sounds like a great idea! Would you like to take a stab at it?... _(let me know if you get any doubts)_

> Thank you! Unfortunately I have very limited knowledge about ELF format, > I can help if you redirect me. I don't know the theory. Think of ELF as a...

> I have changed print_symbols function to print some other types too, > but I see segmentation fault when it runs. > > Why it cannot print other types? The...

How about this - 1. Call `print_strings(fd, eh, sh_tbl);` from `main()` 2. Implement `print_strings()` such that it reads a section that is a string-table and prints either the string Table...

in my previous comment i meant that as step1 and step2. Basically implement a new function `print_strings()` and call it from `main()` > Look for SHT_STRTAB and the chapter 1.4...