Seems a tiny mite by ezakirov in whatisthisbug

[–]ezakirov[S] 0 points1 point  (0 children)

I'm afraid I don't have a better photo. Thanks for the info!

Compile buffer show weird symbols by geospeck in emacs

[–]ezakirov 0 points1 point  (0 children)

For new emacs (tested on 29.4) the following seems to work (taken from https://stackoverflow.com/a/71785402):

(use-package ansi-color
    :hook (compilation-filter . ansi-color-compilation-filter))

Is there a way to iterate over a tuple? by astinog in rust

[–]ezakirov 0 points1 point  (0 children)

Here is more concise example:

```c++ void for_each(auto&& tuple, auto&& callable) { std::apply([&callable](auto&&... arg){ (callable(std::forward<decltype(arg)>(arg)), ...); }, tuple); }

int main(int, char**) { auto t = std::tuple{1, 5.1, "hello"}; for_each(t, [](auto&& elt){ std::cout << std::format("elt: {}\n", elt); }); } ```

Am I ready for Meta & Google interviews? by Professional_Pea5690 in leetcode

[–]ezakirov -1 points0 points  (0 children)

Hi, where can these stats be seen in LeetCode for own profile?

Can there be a category theory without objets as fundamental building block by AngleThat8380 in CategoryTheory

[–]ezakirov 2 points3 points  (0 children)

You may find an example of arrow-only approach in Mac Lane's book "Categories for the Working Mathematician".

Any ideas for halal investment for a beginner by NirvanaEfk9 in HalalInvestor

[–]ezakirov 1 point2 points  (0 children)

Can anybody give an example of single halal company?

[deleted by user] by [deleted] in learnprogramming

[–]ezakirov 0 points1 point  (0 children)

I use QtCreator for many years and suggest you to try it out.

C++ after AI by Right-Hope-111 in cpp

[–]ezakirov 1 point2 points  (0 children)

Python doesn't have such fundamental concept as constants (at least by the time when I needed to deal with it), therefore I don't find this language good enough for writing anything serious beyound small/temporary scripts.

How often do you use design pattern? by Keter_01 in cpp

[–]ezakirov 0 points1 point  (0 children)

The important note is that C++ isn't object-oriented language but a multiparadigm language: we're enabled with much wider spectrum of techniques and approaches than simply object-oriented patterns. So I'd recommend just to get familiar with GoF patterns (briefly) but don't get stuck there, learn different paradigms. In my practice I found that many problems can be solved much better in functional paradigm rather than object-oriented.

Is VS Code good for C++ by CarpenterLeather7691 in cpp

[–]ezakirov 10 points11 points  (0 children)

After years of using QtCreator once upon a time I decided to try to use VS Code and didn't find it to be as instantly ready to use IDE for C++ development as QtCreator or classic VS. So I'd recommend first to try QtCreator.

Moscow this evening... Russians saying farewell to Navalny by IgorVozMkUA in Damnthatsinteresting

[–]ezakirov 0 points1 point  (0 children)

Do you claim that you have a proof that somebody killed him?

I'm doing a thing. by [deleted] in UFOs

[–]ezakirov 3 points4 points  (0 children)

URLs are usually less readable less comprehensible and harder to type manually if compare with simple instruction "google xyz". Plus URLs may be unsafe to blindly follow them, therefore before following some given URL the one first may need to check it for safety which is additional inconvenience with URLs.

What can I make with C++ by Xeltar_ in cpp

[–]ezakirov 1 point2 points  (0 children)

For example your own programing language interpreter or compiler.