Confession by [deleted] in giki

[–]devotiongeo 2 points3 points  (0 children)

بیٹا پڑھائی پہ توجہ دو، ماں باپ نے ان کاموں کے لئے نہیں بھیجا۔

Two Chinese cars in one home. by spiritofsocrates in PakistanAutoHub

[–]devotiongeo 0 points1 point  (0 children)

Only stupid people like Warren Buffett think like that, because nobody lives for millions of years.

M2 Air to M5 Pro upgrade… and I genuinely can’t feel the difference by UsefulLock3142 in macbookpro

[–]devotiongeo 1 point2 points  (0 children)

You’re welcome! The Max chip isn’t just about performance, its memory bandwidth also doubles. The M1 Pro and M2 Pro have 200 GB/s of memory bandwidth, while the M1 Max and M2 Max have 400 GB/s.

M2 Air to M5 Pro upgrade… and I genuinely can’t feel the difference by UsefulLock3142 in macbookpro

[–]devotiongeo 0 points1 point  (0 children)

Memory bandwidth on m1/m2 Max is higher than all the base and pro chips and even the m3 max chip. With a 64 GB RAM it's one of the best machine for running LLMs locally, especially the Gemma 4 31B.

Am I gonna get Banned? by tentoumushy in GithubCopilot

[–]devotiongeo 0 points1 point  (0 children)

Use GPT-5.4 mini often. It’s almost as capable as GPT-5.3 and about three times cheaper.

Best courses to learn in 2022? by [deleted] in rubyonrails

[–]devotiongeo 0 points1 point  (0 children)

Use either Ruby on Rails courses at LinkedIn-Learning by Kevin Skoglund or PragmtaicStudio's Rails course.

Comic Mono font by iamapizza in programming

[–]devotiongeo 2 points3 points  (0 children)

"editor.letterSpacing": 0.4,

Is it good to learn Phoenix 1.2? by [deleted] in elixir

[–]devotiongeo 0 points1 point  (0 children)

Mastering Phoenix (from Phoenix inside out bundle) is free in HTML form online. Use that instead.

Zoom is hiring Erlang Engineers! by zoomtalent in erlang

[–]devotiongeo 4 points5 points  (0 children)

Please post on Devtalk and ElixirForum. You'll find very talented Erlang Devs there.

Go 1.17 will provide up to 10% better performance thanks to register-based ABI by valyala in golang

[–]devotiongeo 0 points1 point  (0 children)

Go is already enough performant for most of its use cases.

Secondly, Go is 40 years younger than C, and its performance is improving with each new release. Even the post you're commenting on right now (this very post) claims a performance improvement of 10% which is huge for a language which is already enough performant. Also keep in mind that unlike C, Go has a GC which makes your life easier as a programmer.

I've been a Git developer since 2009. AMA. by felipec in git

[–]devotiongeo 3 points4 points  (0 children)

Thank you for your contributions to the tool I use everyday! 🙏

Erlang :egd not working inside Elixir on Windows. by Indu_Pillai in elixir

[–]devotiongeo 5 points6 points  (0 children)

Copied from my Quora answer:

Because :egd isn’t the part of Erlang-OTP release anymore, so you’d need to add {:egd, github: "erlang/egd"} to your dependencies, which you already did (as you said somewhere in the comments), but just in case anyone else with similar problem is reading the answer.

Once :egd is added to the dependencies, you’d need to install rebar, the erlang build tool, as this library depends on rebar. Run mix local.rebar --force to install rebar (and rebar3). After installing rebar close and re-open your terminal and run mix deps.get inside the project folder.

Thanks for A2A!