myxi
A computer science enthusiast.
- 8 Posts
- 45 Comments
myxi@feddit.nlto News@lemmy.world•More young people choosing permanent sterilization after abortion restrictions, new research showsEnglish19·1 year agoThe simplest way is to be a Reddit mod.
Installed 22.04 few months ago, did my configs, and then subscribed to Ubuntu Pro (free for five devices). Now I can enjoy a stable experience for at least a decade.
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English6·1 year agoYesterday, I made a choice that was very tough for me to make. So three years ago, I had a best friend, and we both liked each other. Things got hard because my feelings went too far, I became emotionally unstable and turned into an attention seeker. So because of that, I then ended the friendship.
Recently, she added me back. I thought we could be friends again because I felt like I improved my mental state in the last two years and won’t turn into an attention seeker again. Well, a week later, I was the same as I was three years ago.
It was ruining my mental health severely. I couldn’t focus on anything. But I still wasn’t ready to give up on the friendship because she was a very nice friend, and I still liked her for some reason. So I refused to give up. But things got worse real quick, and then I decided to write a long message to her explaining why I can’t continue this friendship and then I blocked her everywhere.
At the cost of ending all probabilities of a future with her, I feel much better now.
Gotta do something about this attention-seeking thing, though.
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English1·1 year ago[—]
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English2·1 year ago[—]
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English1·1 year ago[—]
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English2·1 year ago[—]
myxi@feddit.nlto Asklemmy@lemmy.ml•What's something small you achieved recently that you're proud of?English1·1 year ago[—]
Some of the “duplicate” questions that I have seen on Stack Overflow are phrased entirely different than the supposedly “original” one. It’s like they expect me to brute-force their entire fucking search index before publishing a new question. I don’t have that much patience or time.
myxi@feddit.nlto News@lemmy.world•"Shame must change sides": a Belgian model warns about deepnudesEnglish3·1 year agoWhatever I search on Pinterest, Google, Bing, the images there nowadays are mostly just AI generated. I am so used to them by now, I just don’t care anymore. Whatever makes me feel like it’s cool, I praise it. Recently hyper realistic AI generated videos have been popping up, and once there’s enough of datasets of free porn videos, which is most definitely coming out in a few years, the Porn industry is going to be filled with AI generated porn videos as well.
I think AI generated porn videos are going to be very realistic because there’s so much free porn.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish2·1 year agoThanks for note. Do they currently have that backend?
That aside, you might want to try Nim. It’s pretty cool. It can compile to C and C++, and JS. There have been browser extensions made with it. Heck, it even has an LLVM backend. And the C code it generates it pretty fast on benchmarks. It’s filled with tons of metaprogramming stuff and AST-level macros. And it has this cool thing where it can ignore name casing of identifiers like variables and functions; so
isSome
==is_some
.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish2·1 year agoI will try porting this project to Haskell and Coconut later. I am currently doing a rewrite of this in Nim.
myxi@feddit.nlto Linux@lemmy.ml•Proton Mail Finally Releases Desktop Apps With a Linux Beta VersionEnglish6·1 year agoThey said competition, not alternatives. As things are right now, and knowing people, not just trying to make a technical point, Firefox is the only competition.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish1·1 year agoOh yeah, I had given that a try, but the installation was too huge. It took like 2 GB. The dependecies were huge as well. But maybe it’d be less on Ubuntu. I will give it a shot again. I heard that language doesn’t have loops; I guess you’ve got to be good with recursion to get good at it lol.
Or maybe people rely on
map
like function of Python.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish5·1 year agoHi, I spent some time trying out the
dictd
package. I also read this protocol’s specification. As things are right now, each host-name would require its own parser, because I couldn’t notice a very similar pattern between them. Webster, Jargon, wn, all these have their own standardization for including synonyms and examples.The specification doesn’t enforce any pattern on the definitions either. I don’t think it’s going to be very useful even if I do implement it because the parsers are going to be quite complicated.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish5·1 year agoAh that. That shouldn’t be a lot of work as all the visual stuff are done by separate functions. I can do it. I will look into it.
myxi@feddit.nlOPto Programming@programming.dev•I Made a English Dictionary Front-End for TerminalsEnglish10·1 year agoMy OOP experience isn’t from Java, but I get your point. I don’t really have a dislike for OO; it sure does have its applications. I once met a dude who was trying to use an object oriented library in a functional way; the result of that was a mess full of complications. I feel a good balance is necessary.
There’s a "the’ in the quote.
>>> sorted(set("The quick brown fox jumps over the lazy dog"))[2:] ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']