alvinashcraft, to webdev
@alvinashcraft@hachyderm.io avatar

Dew Drop – May 12, 2023 ()

Top links today:

  • Marten v6 is out and the road to Wolverine 1.0
  • Budding love for compose animation
  • ASP.NET Core basics: Build a complete CRUD app with VS Code
  • MAUI App Accelerator v1.2.4 released
  • Surround selection experiment in Visual Studio

https://www.alvinashcraft.com/2023/05/12/dew-drop-may-12-2023-3942/

TimPurdum, to programming

devs, have you ever had to use these conversion operators before? Crazy stuff.

khalidabuhakmeh, to programming
@khalidabuhakmeh@mastodon.social avatar

Did you know you can tell to not trigger the “local variable is never used” warning in your projects just my renaming the variable to “unused”, “dummy”, or “_”.

Renaming a variable to “unused”

khalidabuhakmeh, to programming
@khalidabuhakmeh@mastodon.social avatar

Nullability in is a Sisyphean task. Fix one nullability warning, and five more warnings pop up.

It’s good to catch these things early before your project analysis gets overwhelmed by the warnings.

joaofbantunes, to programming
@joaofbantunes@mastodon.social avatar

Look at what arrived in the mail 🙂
"C# For Babies", by some great folks from

maxim, to gamedev
@maxim@mastodon.gamedev.place avatar

How do I hook up the scripts to test various things...

An object on scene with the EditorOnly tag and an interface ISetup. The game manager scans the objects with this tag and looks for the component ISetup

FlashOWare, to programming

Episode 08 of is coming up!

We complete the local using directive counter of our tool and start to globalize top-level usings with .

https://www.youtube.com/watch?v=vJHDnuefqk0

pblasucci, to programming
@pblasucci@hachyderm.io avatar

It’s verrrrry early days for me, but…

I think I quite like (at least, as far as language and tooling… jury’s still out on the larger ecosystem). It sits comfortably in-between and , and without any of the eye-roll-inducing quirks of .

Mayhaps I’ll keep with it for a while… maybe I’ll even do a blog post 😮 (but probably not😅).

omniprof, to programming

Do you develop in ? There could be a time, maybe even now, when you must work with code written in Java. Let me recommend my book, Transitioning to Java, the Java beginner’s book for experts, from Packt. Retweet, Boost, Like, Favorite or share this message with anyone who needs to learn Java fast. https://packt.link/huHxQ

khalidabuhakmeh, to programming
@khalidabuhakmeh@mastodon.social avatar

I'm really proud of the for babies book I created at with @maartenballiauw and Arina Kovrizhkina.

We're gearing up to make physical copies of this book, but you can get a digital copy now, for free.

https://lp.jetbrains.com/csharp-for-babies/

recursivegeek, to programming

New C# 12 preview features https://devblogs.microsoft.com/dotnet/check-out-csharp-12-preview/ including primary constructors for non-record classes and structs, using aliases for any type, and default values for lambda expression parameters

khalidabuhakmeh, to programming
@khalidabuhakmeh@mastodon.social avatar

You'd think being run by a single mega-corporation would lead to brand consistency. Nope.

C# logo
C# logo
C# logo

phillydotnet, to programming

Tackle those C# errors with ease 😎 and say hello to simple error handling and logging with SquidEyes.Fundamentals. While you're at it, why not dip your toes into Web 3.0? Join us at the next meetup. 🙌

https://www.meetup.com/philly-net/events/293263260/

aristurtle, to programming
scimon, to random
@scimon@glasgow.social avatar

I mentioned the other day about finding #Perl developers. We're still looking. If you fancy working for one of the oldest Tech news sites in the world why not take a look?

(Maybe if we get enough people we might get some kind of ActivityPub integration in place. It's not high on the ToDo list just yet).

https://www.theregister.com/Design/page/perldev.html

mjgardner,
@mjgardner@social.sdf.org avatar

@UkiahSmith @scimon Almost everything I’ve ever done has started with learning on the job.* A ’s greatest skill is the ability to rapidly adapt and learn new skills. I wish bullet-point understood that.

  • I taught myself in the 1980s, later had high school classes in BASIC and , Pascal and in college in the 90s, and when I went back to finish my degree about ten years ago.
maartenballiauw, to programming
@maartenballiauw@mastodon.online avatar

The recording of our live stream with Stefan Pölz and @khalidabuhakmeh yesterday is up!

📺 How to test unit tests with mutation testing

Check it out 👉 https://jb.gg/x6ygs6

maartenballiauw, to programming
@maartenballiauw@mastodon.online avatar

The Call for Speakers for .NET Day Online 2023 is open!

Looking forward to seeing your talk submissions 👀

https://jb.gg/anxo4v

swimburger, to programming

Want to write about .NET for the Twilio blog? Our call for content is open for submissions. Learn more about the process and $ here
https://twilio.com/en-us/voices

khalidabuhakmeh, (edited ) to programming
@khalidabuhakmeh@mastodon.social avatar

With primary constructors added to classes and structs in C# 12 and 8, I am not sure why records exist anymore (other than equality implementations).

Anyone else have thoughts?

maartenballiauw, to programming
@maartenballiauw@mastodon.online avatar

Here's May's Annotated with the latest on WASM by guest author Laurent Kempe – and more:

🧑 Role-Based access in
📝 Normalize and compare URLs with
🌴 Use Reactive UI in apps

https://jb.gg/5qp5t6

fell, (edited ) to programming
@fell@ma.fellr.net avatar
alvinashcraft, to programming
@alvinashcraft@hachyderm.io avatar

Dew Drop – May 2, 2023 ()

Today's top links:

  • Microsoft Graph Developer Proxy 0.7 w/ extended configuration options and improved simulation throttling
  • Add Neumorphism look to your mobile .NET apps with C# and XAML
  • Reviving a Microsoft Zune in 2023
  • Announcing Copilot Chat
  • Web API development in Visual Studio 2022

https://www.alvinashcraft.com/2023/05/02/dew-drop-may-2-2023-3934/

swimburger, to programming

How to convert audio to different formats using C# and FFmpeg

https://www.twilio.com/blog/convert-audio-to-different-formats-with-csharp-and-ffmpeg

grahamboree, to programming
@grahamboree@mastodon.gamedev.place avatar

I just replaced nine Linq function calls with equivalent simple loops and cut the runtime of an asset processing tool from 2m40s to 1m5s.

That's 95 seconds of nothing but Linq overhead.

The code does the exact same work in the exact same way, the only difference is whether it uses Linq or not.

The most expensive call by far was "ToArray()", taking nearly 75% of the profile time.

That's beyond insane. If this doesn't make you scared of Linq, I don't know what will.

analog_feelings, to fediverse

:blobfoxowonotice: Attention users of Mastodon!!

I am working on a native WinUI client for modern Windows, and I obviously need some help.

Any help is appreciated!

Please spread this post around, I can't work on this all by myself!

https://github.com/AestheticalZ/Bluechirp

  • 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