Recent Posts
- How to show more information in LSP when using Emacs and Typescript
- Great historical review on source control systems evolution
- Interesting article on learnings over a software engineer career
- Code Freeze 2023 Keynote 01 Jessica Kerr 1
- How to configure MacOSX to make the window under the mouse to receive the focus?
Recent Comments
No comments to show.
Monthly Archives: July 2019
apue.h header from Advanced Programming in the Unix Environment
/* * Our own header, to be included before all standard system headers. */ #ifndef _APUE_H #define _APUE_H #define _POSIX_C_SOURCE 200809L #if defined(SOLARIS) /* Solaris 10 */ #define _XOPEN_SOURCE 600 #else #define _XOPEN_SOURCE 700 #endif #include /* some systems still … Continue reading
Posted in Uncategorized
Leave a comment
GCC-9 and Ubuntu kernel error
if you Linux suddenly stop compiling the kernel or kernel modules from packages (nvidia, virtualbox) check that you are not using gcc-9 as default C compiler, it has a problem with some parameters needed to compile with protections for the last … Continue reading
Posted in Uncategorized
Leave a comment