#ищу_команду
Ищите единомышленников, делайте коллабы, создавайте новые проекты. В комментариях под постом укажите #язык, #библиотеку и/или #стек, который вас интересует и опишите общую концепцию проекта.
Ищите единомышленников, делайте коллабы, создавайте новые проекты. В комментариях под постом укажите #язык, #библиотеку и/или #стек, который вас интересует и опишите общую концепцию проекта.
Как правильно написать Hello World на Си?
Anonymous Quiz
3%
System.out.printline("Hello World");
79%
printf("Hello World");
16%
cout << "Hello World";
2%
Console.WriteLine("Hello World");
Какое из этих выражений вернет значение true, если входное целое число v является степенью двойки?
Anonymous Quiz
45%
(v & (v - 1)) == 0;
14%
(v | (v - 1)) == 0;
13%
(v | (v + 1)) == 0;
28%
(v & (v - 1)) == 0;
Интеграция заголовков C++ в Office с помощью MSVC (1/n).
https://devblogs.microsoft.com/cppblog/integrating-c-header-units-into-office-using-msvc-1-n/
https://devblogs.microsoft.com/cppblog/integrating-c-header-units-into-office-using-msvc-1-n/
Microsoft News
Integrating C++ header units into Office using MSVC (1/n)
.cameron { color: #4472c4; } C++20 has had a lot to offer and one feature in particular requires the most thought of all when integrating into our projects: C++ modules (or C++ header units in this particular case). In this blog we will show a real world…
Целочисленные преобразования и безопасные сравнения в C++20.
https://www.cppstories.com/2022/safe-int-cmp-cpp20/
https://www.cppstories.com/2022/safe-int-cmp-cpp20/
C++ Stories
Integer Conversions and Safe Comparisons in C++20
Sometimes, If you mix different integer types in an expression, you might end up with tricky cases. For example, comparing long with size_t might give different results than long with unsigned short. C++20 brings some help, and there’s no need to learn all…
Чему будут равны i и j после выполнения приведенного ниже кода?
int i = 5; int j = i++;
int i = 5; int j = i++;
Anonymous Quiz
59%
i = 6, j = 5
29%
i = 5, j = 6
12%
i = 6, j = 6
#вопросы_с_собеседований
Что выведет код?
программа завершится аварийно.
Что выведет код?
#include <iostream>Ответ:
class A {
public:
A() {}
~A() {
throw 42;
}
};
int main(int argc, const char * argv[]) {
try {
A a;
throw 32;
} catch(int a) {
std::cout << a;
}
}
ESPHome - это система для управления вашим ESP8266 / ESP32 с помощью простых, но мощных файлов конфигурации и удаленного управления через системы домашней автоматизации.
https://proglib.io/w/35ee8d17
https://proglib.io/w/35ee8d17
Libhunt
Esphome Alternatives and Reviews (Feb 2024)
Which is the best alternative to esphome? Based on common mentions it is: ✅Tasmota, ✅Home Assistant, ✅ESPresense, ✅ESP-Now, ✅Node RED, ✅Esp-homekit or ✅WLED
Ускорение экранирования строк с помощью AVX-512.
https://lemire.me/blog/2022/09/14/escaping-strings-faster-with-avx-512/
https://lemire.me/blog/2022/09/14/escaping-strings-faster-with-avx-512/
Какие подкасты вы слушаете?
Расскажите в комментариях ⬇️
Расскажите в комментариях ⬇️
Простые, легкие и удобные в использовании асинхронные компоненты.
https://www.libhunt.com/r/async_simple
https://www.libhunt.com/r/async_simple
Libhunt
Async_simple Alternatives and Reviews
Which is the best alternative to async_simple? Based on common mentions it is: Libunifex, Kelcoro, Macoro, Concurrencpp, Zab, Packio or Userver
Знаете ли вы LLVM XRay? Обязательный инструмент для торговли с низкой задержкой.
https://lucisqr.substack.com/p/do-you-know-llvm-xray
https://lucisqr.substack.com/p/do-you-know-llvm-xray
Substack
Do you Know LLVM XRay?
You might be missing out
Инициализация в C++, массивы и лямбда-выражения.
https://shafik.github.io/c++/2022/09/20/init-lambdas-array-ohmy.html
https://shafik.github.io/c++/2022/09/20/init-lambdas-array-ohmy.html
Shafik Yaghmour's Blog
C++ initialization, arrays and lambdas oh my!
Blog about C++, C, Undefined Behavior and Compilers
Use-after-freedom: MiraclePtr
https://security.googleblog.com/2022/09/use-after-freedom-miracleptr.html
https://security.googleblog.com/2022/09/use-after-freedom-miracleptr.html
Google Online Security Blog
Use-after-freedom: MiraclePtr
Posted by Adrian Taylor, Bartek Nowierski and Kentaro Hara on behalf of the MiraclePtr team Memory safety bugs are the most numerous cat...
Вступительный доклад CppCon 2022: Бьярн Страуструп, пререлиз
https://cppcon.org/2022stroustrupprerealse/
https://cppcon.org/2022stroustrupprerealse/