• 1 Post
  • 116 Comments
Joined 3 years ago
cake
Cake day: June 26th, 2021

help-circle

  • FYI, you have 3 clipboards in X11. You have your standard clipboard usually used with Ctrl-C, Ctrl-V, like in Windows. You also have your primary clipboard, which copies any text you highlight and can be pasted with middle mouse button. The secondary clipboard is typically not used. If you don’t like the middle mouse paste, stick to the way you are used to. I learnt to make use of the primary clipboard and find that I always realise just how much I miss it when I need to use a windows system.















  • Look more at the arcana packs. You can get some insane setups. One of my favourites is doing 5 of a kind, which is kicked off by taking the spectral card that turns your hand into all one rank. There’s also scaling builds, eg I used supernova to boost high card into the roof which was fun. The best part about boosting low value hands is that it is consistent, so you don’t need to worry about rng screwing you over.





  • There’s pros and cons. On one hand, packing your dependencies into your executable leads to never having to worry about broken dependencies, but also leads you into other problems. What happens when a dependency has a security update? Now you need an updated executable for every executable that has that bundled dependency. What if the developer has stopped maintaining it and the code is closed source? Well, you are out of luck. You either have the vulnerability or you stop using the program. Additionally bundling dependencies can drastically increase executable size. This is partially why C programs are so small, because they can rely on glibc when not all languages have such a core ubiquitous library.

    As an aside, if you do prefer the bundled dependency approach, it is actually available on Linux. For example, you can use appimages, which are very similar to a portable exe file on windows. Of course, you may run afoul of the previously mentioned issues, but it may be an option depending on what was released.