kitty. The ssh kitten is enough reason to use it. I work ob a lot of different systems that require OTP. Using the ssh kitten I can type the OTP once and can spawn new terminals that ssh and cd to the remote direvtory without logging in again. Obviosly the tabs and window panes are are a must too. There’s tons of other useful features that I like, like using hints to select nunbers, filenames, urls, etc in the terminal output.
- 2 Posts
- 84 Comments
KRAW@linux.communityto
Programming@programming.dev•C is one of the most energy saving languageEnglish
1·5 months agoNot sure I understand your comment on multithreading. pthreads are not very hard to use, and you have stuff like OpenMP if you want some abstraction. What about C is not ideal for multithreading?
KRAW@linux.communityto
DeGoogle Yourself@lemmy.ml•Your guide to moving away from Gmail and finding a new email service!English
9·6 months agoEvery time I’ve looked into it, most advice I’ve gotten was that it’s not a good idea.
KRAW@linux.communityto
Programming@programming.dev•Announcing iceoryx2 v0.6 | True Zero-Copy Inter-Prozess CommunicationEnglish
2·6 months agoThanks for the details! I have done MPI work in the past, so I was curious how an MPI implementation and iceoryx2 might be similar/different regarding local IPC transfers. It’d be interesting to do a detailed review of the two to see if they can benefit from each other.
KRAW@linux.communityto
Programming@programming.dev•Announcing iceoryx2 v0.6 | True Zero-Copy Inter-Prozess CommunicationEnglish
4·6 months agoCan you explain on a high level how iceoryx2 is able to achieve low latency? Is it as simple as using shared memory or are there other tricks in the background? Are there different transfer methods depending on the payload size?
Crystal hot sauce is my goto. Tangy and just the right amount of heat to casually throw on anything if you don’t want to go into battle mode. Frank’s come close. Surprised that I’m the only one mentioning Crystal.
Secret Aardvark I think would be my second goto if you aren’t looking for a hot sauce with the acidity of Crystal, Tabasco, Frank’s, etc.
What are your metrics for “effective?” As someone who is both teaching and taking classes currently, I can tell you engagement is pitifully low in online formats. Education is not just about memorizing facts and going through the motions to get a good grade. There’d have to be some amazing innovation in online education practices to convince me it will be the default anytime soon.
KRAW@linux.communityto
Linux@lemmy.ml•Kitty Terminal 0.40.0 introduces the Text Sizing Protocol: "multiple font sizes ... in a backwards compatible, opt-in way"English
1·8 months agowith kitty you can open a new terminal session that sets it’s cwd to the remote directory of the server you’re ssh’d into. Honestly the only thing I can think of that termux can do that kitty can’t is saving sessions
This genZ-bait soundtrack is making what looks like pretty cool gameplay look incredibly lame. Too many of these GaaS titles that inevitably enshittify use this same marketing to the point where it gives a Pavlovian signal to stay away.
KRAW@linux.communityOPto
Linux Gaming@lemmy.world•Cheap Hardware to Run MoonlightEnglish
1·9 months agoI don’t think I’m interested in an NVIDIA Shield since if I like the idea of running any Linux app in case I want to use it for another purpose in the future.
An RPi could be a choice. I forgot that the 5s have hardware decoding. Assuming the 4GB model is suitable, then $60 + cost of a case isn’t too bad. I assume the hardware decoding could keep up with 4k60?
KRAW@linux.communityOPto
Linux Gaming@lemmy.world•Cheap Hardware to Run MoonlightEnglish
1·9 months agoNo, I just was under the impression that Moonlight was the best solution
KRAW@linux.communityto
Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Pirating My Own Music?English
6·9 months agoNot anymore. They are owned by Songtradr now
KRAW@linux.communityto
RetroGaming@lemmy.world•VIDEO: Why is Nintendo 64 emulation still a broken mess in 2025?English
18·10 months agoJust Mario 64. However there is a very good implementation of the N64 in the Mister FPGA project. The downside is there aren’t many emulation features that you’d expect out of a software emulator (e.g. save states)
KRAW@linux.communityto
Asklemmy@lemmy.ml•Best non-coke alternative to coke zero?English
2·11 months agoI guess to be fair, there are some local places around me that make sodas, which probably are reasonable ethical businesses. Depending on how many bourbon colas you’re drinking, it might be worth paying extra for an locally made soda if possible. If you don’t have someone that makes soda locally (which is probably likely), maybe consider buying from “gourmet soda” brands like Hank’s.
KRAW@linux.communityto
No Stupid Questions@lemmy.world•Why are American universities so expensive?English
6·11 months agoAdministrative bloat. At my university, if my lab lands a grant, 60% goes to the university and only 40% is used for actual research. There’s a long chain of people whose jobs are to answer emails, and they all need to be paid.
KRAW@linux.communityto
Asklemmy@lemmy.ml•Best non-coke alternative to coke zero?English
237·11 months agoAlmost all soda is produced by a corporation run by psychopaths. Your best bet is to stop drinking soda.
KRAW@linux.communityto
Movies@lemmy.world•Does Avatar ( 2009 ) Stands The Test Of Time?English
141·11 months agoNo
KRAW@linux.communityto
Movies@lemmy.world•Sony Reportedly Scrapped 'Beyond the Spider-Verse' and Rewrote the Entire SequelEnglish
203·1 year agoWouldn’t be surprised if the 3rd movie was bad. 2nd one was very unsatisfying. It didn’t feel like it stood very well on its own, and it felt like the majority of the movie was spent explaining the whole “cannon” concept.
KRAW@linux.communityto
Asklemmy@lemmy.ml•Is Lemmy your "main social media app"? If not, which one is it?English
3·1 year agoLemmy. For more niche communities that don’t exist on Lemmy I use RSS feeds on specific subreddits. Discord for chatting with friend and other niche communities. LinkedIn because I’m in academia.


The amount of CPU time compiling code is usually negligible compared to CPU time at runtime. Your comparison only really works if you are comparing against something like Rust, where less bugs are introduced due to certain guarantees by the language.
Regarding “language constructs” it really depends on what you mean. For example using numpy in python is kind of cheating because numpy is implemented in C. However using something like the algorithm libraries in Rust woulf be considered fair game since they are likely written in Rust itself.