Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
curiousguy
curiousguy has asked
17
questions and find answers to
62
problems.
Stats
1.1k
EtPoint
242
Vote count
17
questions
62
answers
About
I support free speech and gab.com
curiousguy questions
What's the point of std::atomic for types that the CPU can't atomically manipulate?
Overwriting an object with an object of same type
Is there any consistent definition of time complexity for real world languages like C++?
Is memory outside each core always conceptually flat/uniform/synchronous in a multiprocessor system?
Undead objects ([basic.life]/8): why is reference rebinding (and const modification) allowed?
When is a memory_order_seq_cst fence useful?
What formally guarantees that non-atomic variables can't see out-of-thin-air values and create a data race like atomic relaxed theoretically can?
What does "strongly happens before" mean?
curiousguy answers
Why do I need "this->" in derived tempate classes? [duplicate]
Pointer Arithmetic on pointers to pointers and the like
Using C time functions to measure time: are they code-reordering resistant?
Will disabling interrupts protect a non-volatile variable or can reordering happen?
Same most-derived class in virtual inheritance = same offset between parent class?
Trouble understanding C++ dependent types, vs what's on the current instantiation
Free theorems in C++: are templates inherently ignorant and neutral with their objects of unknown types?
When should I use static data members vs. const global variables?
Do std::min(0.0, 1.0) and std::max(0.0, 1.0) yield undefined behavior?
How to cast sockaddr_storage and avoid breaking strict-aliasing rules