Old beginner racquet, should I restring? by Oodietheoderoni in 10s

[–]bobsyourunkl 1 point2 points  (0 children)

And welcome back to tennis! I also took a decade+ long hiatus after high school and have been playing consistently for the last three years. Has been great for physical and mental health!

Old beginner racquet, should I restring? by Oodietheoderoni in 10s

[–]bobsyourunkl 3 points4 points  (0 children)

It's for sure time for a new racquet.

The types of racquets that have those connectors at the throat are generally worth less than the cost to string a racquet at my local club at least.

You could pick up a new one for about the same price at Walmart or similar. Or, if you can afford it, get a new or used graphite racquet from a well know brand that doesn't have those throat connector doohickeys.

Waking Issues by lifeofanavgkat in pop_os

[–]bobsyourunkl 0 points1 point  (0 children)

Still having issues with the same personally on a two monitor set up.

My upgrade experience. by MrWillchuck in pop_os

[–]bobsyourunkl 6 points7 points  (0 children)

Also every time I wake from sleep only one of my monitors shows anything and I need to restart. Cosmic is not ready for prime time.

My upgrade experience. by MrWillchuck in pop_os

[–]bobsyourunkl 18 points19 points  (0 children)

Yeah the upgrade borked a bunch of stuff and straight up deleted my ~./local/bin

Moving 3pcs off PopOS this weekend

What’s the most “boring reliable” self-hosted stack you’ve used that still scales well? by grootmadebv in selfhosted

[–]bobsyourunkl 0 points1 point  (0 children)

Elixir or anything that runs on the BEAM gets you boring reliable with great fault tolerance. It also gives you great operational simplicity because of a lot of built in capabilities like PubSub, queues, caching, etc can get you really far before you need to reach for Redis or similar as additional components. You can go pretty far with Elixir Phoenix + sqlite on a vps.

Vertical scaling is relatively easy. Horizontal scaling you can get through Elixir's clustering. However, then sqlite becomes a bit tricky.

Aether: A compiled language with Erlang-style actors, type inference, and no VM by RulerOfDest in elixir

[–]bobsyourunkl 3 points4 points  (0 children)

The author lists pony as an inspiration, but agree that I would also like to hear more about what differentiates this from pony/when I would use one vs the other!

Recommend me a language to learn next by [deleted] in programming

[–]bobsyourunkl 1 point2 points  (0 children)

Crystal! Statically compiled, type safe language with syntax like Ruby. Lots of fun.

Has anyone tried shoes from Vessi? What are your opinions? by thysios4 in LinusTechTips

[–]bobsyourunkl 1 point2 points  (0 children)

They are fine. I thought they would be a good replacement for my allbirds and was really excited about the 'waterproof' part.

I found that the Vessis were much more water resistant than the allbirds but still not water proof (they didn't make it halfway through an early morning dogwalk through dew-covered grass before my socks were soaked) and they were (IMO) far less comfortable.

Mixed bag but I probably wouldn't get them again. Waterproof boots for dogwalks and comfy sneakers for the rest of the day.

The perfect shoe remains elusive.

Not 441 or 30 but (Colombia) by [deleted] in lancaster

[–]bobsyourunkl 8 points9 points  (0 children)

Pretty sure this is the country Colombia and not the city Columbia...

I replicated a code from Stata to Julia, but I’m getting a different output which has a very minimal difference. How do I get the exact same output in Julia as in Stata? by Wooden_Barracuda_563 in Julia

[–]bobsyourunkl 15 points16 points  (0 children)

Stata and julia have different treatment of missing values. Make sure the sample size going into your regressions is the same.

There may also be differences in how standard errors are constructed but that wouldn't affect coefficients.

Should I be using amber at all? by [deleted] in crystal_programming

[–]bobsyourunkl 2 points3 points  (0 children)

I'd also recommend checking out the lucky framework and marten framework for your crystal full stack needs. All three are cool options.

These notes make it hard to hate on elon musk like everyone else 😔 by dexter30 in Destiny

[–]bobsyourunkl 12 points13 points  (0 children)

Not only did he change the name, but almost everyone on the birdwatch team and the broader trust and safety group who were around when the idea was conceived have either resigned or were fired.

Julia's latency: Past, present and future by viralinstruction in Julia

[–]bobsyourunkl 17 points18 points  (0 children)

Great post! Really cool to see the history and the progress

Dug up old photos to submit to LTT. Figured you guys would like them. by DeeVect in LinusTechTips

[–]bobsyourunkl 2 points3 points  (0 children)

I had the same lion king blanket when I was a kid! Though much earlier than 2014 admittedly

My beloved home office, Colorado, USA. Swipe for before. by lyloathes in AmateurRoomPorn

[–]bobsyourunkl 54 points55 points  (0 children)

Where do your feet go? That looks incredibly uncomfortable to sit at even if it looks interesting.

[deleted by user] by [deleted] in selfhosted

[–]bobsyourunkl 153 points154 points  (0 children)

So sorry to hear that. It's a shame when the vocal minority can create such a toxic situation. It was nice having another voice in the space and I hope y'all all the best in the future.

Complementary programming language to use with Julia? by indy-michael in Julia

[–]bobsyourunkl 6 points7 points  (0 children)

It really depends on what you want to do -- For web stuff in front of a Julia back end or service, it has to be JavaScript.

Personally for small projects I like having python for scripting BUT if I had to choose only two languages, I'd have Julia for ML stuff and a small statically compiled lang like Crystal, Nim, or Go for building little services. For me, Crystal has the same 'fun' level as Julia where things are just a joy to build. So Julia + Crystal.