hankg, to programming

My further experiments with KVM have been great. VM Performance, especially Windows VMs, seems way better than VirtualBox. There are some UX quirks with setting up shared folders in general. I still haven't gotten them working on Windows VMs. But with half my VMs converted and all working concurrently I think I may be switching over in production soon. #programming #VirtualBox #KVM

pyconau, to python
@pyconau@mastodon.pycon.org.au avatar

🚀 PyCon AU 2024 is on the horizon! Get ready to submit your talks for Australia's top Python conference. Whether you're a seasoned speaker or a first-timer, we want to hear your unique voice. Check out our guide on crafting a compelling proposal and submit by July 21st.

Join us: pycon.org.au/program

#PyConAU #PyConAU24 #PyCon #Python #Tech #Programming #Coding #PythonProgramming

ant_games, to indiegames Ukrainian
@ant_games@mastodon.gamedev.place avatar

I spent a whole day programming this boat to react when the player jumps on it but it still works badly

video/mp4

darkghosthunter, to linux
@darkghosthunter@mastodon.social avatar
xorn, to programming
@xorn@mastodon.social avatar

The great thing about writing software is that after you spend 3 days figuring out a simple solution to a complex problem you're left with no evidence as to what you did with the rest of your week.

"You wrote 15 lines of code?"

"No, I wrote 4500 lines of code. Those 15 were the ones worth keeping."

leanpub, to programming
@leanpub@mastodon.social avatar

The Ruby On Rails Interview Bible 2023: A Comprehensive Guide with 500+ Essential Questions and Answers! https://leanpub.com/therubyonrailsinterviewbible #ebooks #programming #career #jobs

jesus, to javascript
@jesus@mastodon.gamedev.place avatar
LGUG2Z, to rust
@LGUG2Z@hachyderm.io avatar
TheIdOfAlan, to Mac
@TheIdOfAlan@hachyderm.io avatar

Watch out if you use iTerm2 on a mac. The latest version (3.5.x) integrates OpenAI/ChatGPT. It looks like you have to set keys to use it, but I don't want it even in the mix so I'm sticking with the 3.4.x release.

#mac #programming #cli

nicola, to dotnet
@nicola@fosstodon.org avatar

Today, I learned how to handle custom claims in an Open ID Connect-authenticated ASP.NET Core app.

https://nicolaiarocci.com/how-to-handle-custom-claims-in-an-oidc-authenticated-aspnet-core-app/

pixel, to SwiftUI
@pixel@social.pixels.pizza avatar
ErikJonker, to ai
@ErikJonker@mastodon.social avatar

Any european competiton to OpenAI is welcome , good to see Mistral coming with a new model for programming, Codestral.
https://mistral.ai/news/codestral/

#AI #Mistral #Programming #coding #EU #LLM #codestral

hankg, to programming

Last night I experimented with KVM and VirtManager. With the exception of not being able to figure out resizeable drive images without the CLI I think I'm most of the way to being able to replace VirtualBox as my emulation environment.

stevensanderson, to datascience
@stevensanderson@mstdn.social avatar

🚀 TidyDensity's New AIC Functions! 🚀

The TidyDensity package now includes new functions to calculate the Akaike Information Criterion (AIC) for various distributions, streamlining model quality assessment. Use functions like util_negative_binomial_aic() to automate AIC calculations, ensuring precise model evaluation.

Happy coding!

Post: https://www.spsanderson.com/steveondata/posts/2024-05-31/

joachim, to programming
@joachim@drupal.community avatar

I've just seen a pattern in where a method could return two lists of things. Instead of doing that, it takes as a parameter a callable, and passes the two lists to the callable. Instead of:

[$a, $b] = getLists($param);
// Act on both lists.

we have:

$callable = function($a, $b) {
// Act on both lists
}
actOnLists($param, $callable);

Is that a pattern?

codewiz, to rust
@codewiz@mstdn.io avatar

Got #DeepSeek Coder 33B running on my desktop's #AMDGPU card with #ollama.

First off, I tested its ability to generate and understand #Rust code. Unfortunately, it falls into the same confusion of the smaller 6.7B model.

https://gist.github.com/codewiz/c6bd627ec38c9bc0f615f4a32da0490e
#ollama #llm #deepseek

codewiz,
@codewiz@mstdn.io avatar

Google's Gemini Pro performs even worse than the opensource models running on my modest Linux desktop:

https://g.co/gemini/share/cdec7f5a6c5c

Missing from the chat log, is the last response in the image below 🤦‍♂️

I don't have Gemini Advanced / Ultra. Is it a bit smarter than this?

#google #gemini #llm #ai #programming #rust

codewiz,
@codewiz@mstdn.io avatar

Today I tried running Codestral, a 22B parameter LLM tuned for coding by Mistral AI.

With my Rust mock interview questions, it performed better than all other offline models I tried so far.

https://paste.benpro.fr/?4eb8f2e15841672d#DGnLh3dCp7UdzvWoJgev58EPmre19ij31KSbbq8c85Gm

danvolchek, to privacy
@danvolchek@mastodon.social avatar

I'm trying out ProtonMail!

The price is super reasonable, and I'm happy to pay rather than be surveiled.

Migrating my emails from gmail and configuring my custom domain was easy.

I missed having separate sections for unread and read emails, so I wrote a tampermonkey script to add that! It's available at https://codeberg.org/danvolchek/browser-scripts 😎

Next up is importing my calendar!

I'm excited to see this goes 😄 Thanks @protonprivacy !

#protonmail #privacy #data #tampermonkey #programming #software #email

LukasBrausch, to opensource
@LukasBrausch@mastodontech.de avatar

What's the best alternative to ?

SergKoren, to programming
@SergKoren@writing.exchange avatar

When you isolate a function that causes problems and can’t deduce the problem, rewrite the function differently. At least you’ll have different problems.

#programming #swift

ericsedge, to programming
@ericsedge@bitbang.social avatar

I’ll livestream again this Saturday morning at 9 am Eastern. The question is what topic?

I could go over more of my #HyperCard Adventure game. Perhaps describe the funky game file format and query code for retrieving information.

Or I could jump into some #Commodore 64 #programming in #BASIC.

Or answer questions about HyperCard authoring?

What say you?

pixel, to programming
@pixel@social.pixels.pizza avatar
faassen, to programming
@faassen@fosstodon.org avatar

A new blog post.

Tool maven versus language maven. Do modern development environments enable you to be both? How does this affect languages?

https://blog.startifact.com/posts/the-tooling-shift/

stevensanderson, (edited ) to datascience
@stevensanderson@mstdn.social avatar

I'm thrilled to announce some fantastic new features and improvements in the latest update of the TidyDensity package! 📈

What's New?
39 New functions for estimating parameters, calculating distribution statistics and AIC

Minor Improvements

  • Optimized Parameter Estimation
  • Improved Data Handling

📰 News: https://lnkd.in/ea7mX_Xg

preslavrachev, to Java
@preslavrachev@mastodon.social avatar

Java’s records are a bit like Go’s interfaces. You think you’d be using them for everything, while in reality, they’re good for like 2-3 cases. Indeed, in those 2-3 cases, they’re really saving the day, but using them everywhere “just because” will result in an incomprehensible mess.


  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • khanakhh
  • mdbf
  • ethstaker
  • magazineikmin
  • cubers
  • rosin
  • thenastyranch
  • Youngstown
  • InstantRegret
  • slotface
  • osvaldo12
  • kavyap
  • DreamBathrooms
  • JUstTest
  • Durango
  • everett
  • tacticalgear
  • modclub
  • normalnudes
  • ngwrru68w68
  • cisconetworking
  • tester
  • GTA5RPClips
  • Leos
  • anitta
  • provamag3
  • lostlight
  • All magazines