Off Topic Chit Chat - (Silliness factor 5)

Ahh… Please revealing face (in public) feels like one of the toughest things in the world :stuck_out_tongue_winking_eye:

2 Likes

:joy:Tiktokers be dancing for strangers

3 Likes

wanted to try it out but whenever I launch it throws me this :


 ╰─λ emacs

(emacs:7191): Gtk-WARNING **: 13:08:59.667: cannot open display: :1 

Well, I still have a good neovim setup though with LSP and Git integrations like things
and almost have tmux like setup in my neovim with just maybe 3 or 4 remaps/keybindings :grin:






(yes I am weird who use file tree and telescope at the same time :crazy_face: )

And simply I love it :slightly_smiling_face:
maybe in future I would try emacs but I am not that intrested ATM :stuck_out_tongue:

1 Like

I feel like your solution should be xhost +local: , I don’t know why though.

Your Neo vim looks cool…Its kinda tempting for me to try it. With all this keybinds in my head I think my head would explode if I did.

1 Like

You can use which-key for keybinds.

I press the start of a key with which my keybinds begin and pause a sec the which key window shows up showing all the possible keybindings with it.

1 Like

How did you achieved that :astonished: ??

I am just using lunarvim :slightly_smiling_face: you can find all the configs in a nice repo online. (lunarvim is the theme name over neovim).

which key is a plugin you can download with the plugin manager and then continue to set it up.

1 Like

LOL, I have bookmarked their introduction page from a year but never got time to get started :rofl:

I would need to start some time, now I got the reason too :grin:

BTW, thank you soo much for telling about the plugin :slightly_smiling_face:


Now that’s really something awesome :heart_eyes:!!!
I would fine tune it in future… :stuck_out_tongue_closed_eyes:

1 Like

Happy cake day @Yada!
:partying_face:

5 Likes

Anybody know some good resources for branch prediction and out of order prediction?

  • Preferably with c++ involved?


:smiling_face_with_three_hearts:

6 Likes

Hehe kinda same :smile:

1 Like


Alright full reveal from me as well

3 Likes

Personally, I’ve always been a bit frightened of @SGS & his Precondition 412 banhammer!

6 Likes

I often used to think why people call C++ a behemoth until I started really deep diving into it… I started by trying to understand wtf Arg && is went into this rabbit hole of std::forward std::move and so on which I very barely grasp. Trying to read the docs on this I somehow ended up in template functions? Which apparently can also be used to pass arguments to functions and not just contain typename’s that are resolved at compile time??

People might have a stroke trying to understand this,

struct A
{
    friend bool operator==(const A&, const A&) = default;
};
 
template<A a>
void f()
{
    &a;                       // OK
    const A& ra = a, &rb = a; // Both bound to the same template parameter object
    assert(&ra == &rb);       // passes
}
int main()
{
   A a;
   f<a>();
   return 0;
}

At what point did people think this is understandable code… what was so wrong with the normal way of passing arguments to functions…? Reading a little more I found we can define constraints and concepts for a function that’s checked at compile time…

https://en.cppreference.com/w/cpp/language/constraints

Just under what circumstances are these concepts even being used…? :eyes:

Well anyway keeping up with the trend…


I think it’s safe to say SGS sits on top of this list for everyone. :slightly_smiling_face:

6 Likes

My heart beat generally goes high and gets combined with frightening and sweating when I post an MR link and he starts typing and keeps typing for too long :sweat_smile:

My brain is for that time is stuck at only one question “Have I made another typo ?” :joy: :rofl:

Ohh… Hell yeah !!!
SGS will always be on the top :grin:

6 Likes

Looking at this mostly just makes me sad, because it reminds me of how much I still miss Jonathon.

7 Likes

Well that’s a change…
My Bro has beaten SGS​:grin:

4 Likes

Yeah, he was always kinda everyone’s big brother, heh. :slight_smile:

5 Likes