andreyv | 3 months ago | on: Jolla Phone Pre-Order
andreyv's comments
andreyv | 10 months ago | on: Parallel ./configure
[1] https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/a...
andreyv | 11 months ago | on: History of Null Pointer Dereferences on macOS
andreyv | 1 year ago | on: Getting silly with C, part (void*)2
Using designated initializers without the = symbol is an obsolete extension.
[1] https://gcc.gnu.org/onlinedocs/gcc/Compound-Literals.html [2] https://gcc.gnu.org/onlinedocs/gcc/Designated-Inits.html
andreyv | 1 year ago | on: Glibc Buffer Overflow in Iconv
andreyv | 1 year ago | on: Kate editor on all platforms
andreyv | 2 years ago | on: Ubuntu 24.04 LTS will enable frame pointers by default
andreyv | 2 years ago | on: GTK: Introducing Graphics Offload
For example, with a 60 Hz display and vsync, game actions might be shown up to 16 ms later than without vsync, which is ages in FPS.
andreyv | 2 years ago | on: The world nearly adopted a calendar with 13 months of 28 days
andreyv | 2 years ago | on: Fcron Is the Best Cron
andreyv | 2 years ago | on: Exploring Linux command-line space time
andreyv | 2 years ago | on: Control Center on macOS is always re-rendering its SwiftUI causing 1% CPU load
andreyv | 3 years ago | on: Visual Sum of Cubes
andreyv | 4 years ago | on: Bugs in Hello World
andreyv | 4 years ago | on: Bugs in Hello World
if (fflush(stdout) != 0 || ferror(stdout) != 0)
{
perror("stdout");
return EXIT_FAILURE;
}
at the end of the program. The same should be done for stderr as well.In GNU programs you can use atexit(close_stdout) to do this automatically.
andreyv | 4 years ago | on: Dell deletes Latitude CPU Throttling issue after link is posted here
> On occasion, the system stays in the active mode (with the screen off) for a longer interval of time. These longer active intervals occur for a variety of reasons, for example, processing incoming email or downloading critical Windows updates.
andreyv | 4 years ago | on: Why “process substitution” is a late feature in Unix shells
The process ID of the last executed background command in Bash is available as $!.
cat <(sort nonexistent)
wait $! || echo fail
gives sort: cannot read: nonexistent: No such file or directory
failandreyv | 4 years ago | on: Dell removed Fn+Left/Right for Home/End from all its products
These are not the changes one would expect to see in a professional-grade laptop. On the other hand, the Lenovo line looks good in this regard.
andreyv | 5 years ago | on: Surprisingly Slow
andreyv | 5 years ago | on: The X.Org Server Is Abandonware?
Does Wayland support this?