Load site modules...
lade...
random avatar

ythos - Network

Posts Subscribe

Howard asks: has anyone managed to programmatically connect to the #npu on their Surface Laptop?Note that most of the examples online of...

https://dotnet.social/@ythos/113...

Howard asks: has anyone managed to programmatically connect to the on their Surface Laptop?

Note that most of the examples online of people claiming to do this in fact *fail* to connect and actually use the fallback mechanisms.

bsky.app/profile/hvr.endj.in/p

26.11.2024 09:11Howard asks: has anyone managed to programmatically connect to the #npu on their Surface Laptop?Note that most of the examples online of...
https://dotnet.social/@ythos/113...

Anyone in #dotnet land know how to persuade the dotnet/runtime build to emit code coverage?Changing directory to the target test project (in...

https://dotnet.social/@ythos/113...

Anyone in land know how to persuade the dotnet/runtime build to emit code coverage?

Changing directory to the target test project (in this case System.Text.Json.Tests) and running

dotnet build /t:Test /p:Coverage=true /p:BuildTargetFramework=net10.0

did not seem to work; it spat out the coverage report, but there's no data (and it doesn't even include content at all for the JsonMarshal.* methods that are in the assembly, but not in the STJ namespace)

4.10.2024 10:31Anyone in #dotnet land know how to persuade the dotnet/runtime build to emit code coverage?Changing directory to the target test project (in...
https://dotnet.social/@ythos/113...

Curses. I was going to submit a session on the perf improvements we get from .NET 9 for #dotnet conf, but the CFP closed 10 hours ago!If...

https://dotnet.social/@ythos/113...

Curses. I was going to submit a session on the perf improvements we get from .NET 9 for conf, but the CFP closed 10 hours ago!

If anyone would be interested in such a session, maybe I'll organise a short online seminar or something?

Ping me a DM or reply here, or matthew.adams@endjin.com if you think that would be interesting.

14.9.2024 17:08Curses. I was going to submit a session on the perf improvements we get from .NET 9 for #dotnet conf, but the CFP closed 10 hours ago!If...
https://dotnet.social/@ythos/113...

We've just shipped Preview 10 of Corvus.JsonSchema, our low-allocation, high performance code generator and validator for #json and...

https://dotnet.social/@ythos/113...

We've just shipped Preview 10 of Corvus.JsonSchema, our low-allocation, high performance code generator and validator for and on and .

This preview is preparing for the .NET 9.0 wave, and takes a dependency on the RC1 preview System.Text.Json libraries. Don't worry, it still supports netstandard2.0 and net8.0!

If you run on .NET 8 we get a 13% perf improvement on our "typical usage" benchmark.

.NET 9 has a whopping 32% perf uplift.

nuget.org/packages/Corvus.Json

14.9.2024 16:42We've just shipped Preview 10 of Corvus.JsonSchema, our low-allocation, high performance code generator and validator for #json and...
https://dotnet.social/@ythos/113...

As I'm back in Paris this week - was anyone else at the #commodore #amiga DevCon in #Paris in Feb 1990?

https://dotnet.social/@ythos/113...

As I'm back in Paris this week - was anyone else at the DevCon in in Feb 1990?

31.8.2024 12:10As I'm back in Paris this week - was anyone else at the #commodore #amiga DevCon in #Paris in Feb 1990?
https://dotnet.social/@ythos/113...

Any #dotnet folk have any idea how you can get intellisense out of your sourcegenerator generated code?

https://dotnet.social/@ythos/112...

Any folk have any idea how you can get intellisense out of your sourcegenerator generated code?

16.8.2024 17:43Any #dotnet folk have any idea how you can get intellisense out of your sourcegenerator generated code?
https://dotnet.social/@ythos/112...

Hello #dotnet devs. I'm dynamically compiling some code, that I know uses the Regex SourceGenerator.This is OK, because I can use...

https://dotnet.social/@ythos/112...

Hello devs. I'm dynamically compiling some code, that I know uses the Regex SourceGenerator.

This is OK, because I can use CSharpGeneratorDriver to apply the necessary changes to the Compilation.

Only I need to instantiate the IIncrementalGenerator from System.Text.RegularExpressions.Generator (the corresponding analyzer assembly) and I have absolutely no idea how to locate and load that assembly. E.g. there are no references to analyzers in the preserved compilation context.

15.7.2024 18:29Hello #dotnet devs. I'm dynamically compiling some code, that I know uses the Regex SourceGenerator.This is OK, because I can use...
https://dotnet.social/@ythos/112...

An interesting post from Howard #endjin using #rx to observe file system changes....

https://dotnet.social/@ythos/112...

An interesting post from Howard using to observe file system changes. endjin.com/blog/2024/05/observ

@idg10 does a deep dive into the Quiescent operator in our free ebook on RX.

introtorx.com/chapters/key-typ

23.5.2024 06:10An interesting post from Howard #endjin using #rx to observe file system changes....
https://dotnet.social/@ythos/112...

We've just published a series of 17 (!) posts on common patterns in JSON Schema; lots of these have been culled from questions asked in...

https://dotnet.social/@ythos/112...

We've just published a series of 17 (!) posts on common patterns in JSON Schema; lots of these have been culled from questions asked in the JSON-Schema Slack channel.

They are written from the perspective of .NET developers who are used to JSON serialization as a code-first exercise, and want to migrate towards schema-first (with generated code examples from Corvus.JsonSchema).

endjin.com/blog/2024/05/json-s

15.5.2024 18:08We've just published a series of 17 (!) posts on common patterns in JSON Schema; lots of these have been culled from questions asked in...
https://dotnet.social/@ythos/112...

Some new features in Corvus.JsonSchema - our low-allocation, high-performance #JsonSchema serialization & validation library for...

https://dotnet.social/@ythos/112...

Some new features in Corvus.JsonSchema - our low-allocation, high-performance serialization & validation library for .

V3.0.10 brings support for arrays of rank >= 1, including C#12 collection expression initializers, and the ability to set values deep within an array of rank > 1.

We detect fixed-size numeric arrays of any rank, and allow you to convert to- and from-Span<T> for use in vectorized APIs such as System.Numerics.TensorPrimitives.

github.com/corvus-dotnet/corvu

8.5.2024 12:47Some new features in Corvus.JsonSchema - our low-allocation, high-performance #JsonSchema serialization & validation library for...
https://dotnet.social/@ythos/112...

I'm really excited to be able to tell you that Corvus.JsonSchema - our low-allocation, high-performance #jsonschema based serialization...

https://dotnet.social/@ythos/112...

I'm really excited to be able to tell you that Corvus.JsonSchema - our low-allocation, high-performance based serialization and validation library for - has been selected as a Google Summer of Code project for 2024.

We are looking forward to getting Source Generator support, to make it even easier for people to take advantage of the library!

summerofcode.withgoogle.com/pr

github.com/corvus-dotnet/corvu

1.5.2024 19:56I'm really excited to be able to tell you that Corvus.JsonSchema - our low-allocation, high-performance #jsonschema based serialization...
https://dotnet.social/@ythos/112...

V3.0.3 of Corvus.JsonSchema for low-allocation, high performance #jsonSchema serialization and validation on #dotnet is out now!Get it while...

https://dotnet.social/@ythos/112...

V3.0.3 of Corvus.JsonSchema for low-allocation, high performance serialization and validation on is out now!

Get it while it's still warm from the oven.

nuget.org/packages/Corvus.Json

This version now recognizes prefixItems with unevaluatedItems: false as strongly-typed tuples and emits code that gives you Item1 (..2...3) accessors and implicit conversions to and from dotnet native ValueTuples of the correct type.

1.5.2024 17:09V3.0.3 of Corvus.JsonSchema for low-allocation, high performance #jsonSchema serialization and validation on #dotnet is out now!Get it while...
https://dotnet.social/@ythos/112...

The new version of Corvus.JsonSchema is now published up on #nuget.The big news is that we now target all (supported) versions of #dotnet...

https://dotnet.social/@ythos/112...

The new version of Corvus.JsonSchema is now published up on .

The big news is that we now target all (supported) versions of including .NET Framework, with netstandard2.0 packages, in addition to the existing optimised 8.0+ packages.

github.com/corvus-dotnet/corvu

26.4.2024 13:59The new version of Corvus.JsonSchema is now published up on #nuget.The big news is that we now target all (supported) versions of #dotnet...
https://dotnet.social/@ythos/112...

Another post from @idg10 in the series on #jsonschema validation and #json serializarion in #dotnet with System.Text.Json and...

https://dotnet.social/@ythos/112...

Another post from @idg10 in the series on validation and serializarion in with System.Text.Json and Corvus.JsonSchema. More fascinating insights into - and how we support pattern matching.

endjin.com/blog/2024/04/dotnet

24.4.2024 12:42Another post from @idg10 in the series on #jsonschema validation and #json serializarion in #dotnet with System.Text.Json and...
https://dotnet.social/@ythos/112...

It has passed like rain on the mountain, like a wind in the meadow;The days have gone down in the West behind the hills into shadow.Who...

https://dotnet.social/@ythos/112...

It has passed like rain on the mountain, like a wind in the meadow;
The days have gone down in the West behind the hills into shadow.
Who shall gather the smoke of the blown capacitor,
Or behold the flowing electrons from the PSU returning?

mouser.com/PCN/Littelfuse_PCN_

20.4.2024 09:13It has passed like rain on the mountain, like a wind in the meadow;The days have gone down in the West behind the hills into shadow.Who...
https://dotnet.social/@ythos/112...

It was great to see my #endjin co-founder Howard at the IOC launch of the #olympic #ai agenda today.He is a member of the IOC AI expert...

https://dotnet.social/@ythos/112...

It was great to see my co-founder Howard at the IOC launch of the agenda today.

He is a member of the IOC AI expert working group that has been informing and advising this programme, aiming to guide the IOC’s efforts to maximise the opportunities and manage the risks of the transformative power of artificial intelligence, to support athletes and drive the development of sport and the Olympic Games.
olympics.com/ioc/news/ioc-take

19.4.2024 17:27It was great to see my #endjin co-founder Howard at the IOC launch of the #olympic #ai agenda today.He is a member of the IOC AI expert...
https://dotnet.social/@ythos/112...

Great to see everyone at #salute24 today. Especially @sughammer and @rae and @badsquiddogames whose Peeegs and a Viking have come to be part...

https://dotnet.social/@ythos/112...

Great to see everyone at today. Especially @sughammer and @rae and @badsquiddogames whose Peeegs and a Viking have come to be part of our small metal family. And many others whose handles on here I don't know.

13.4.2024 16:39Great to see everyone at #salute24 today. Especially @sughammer and @rae and @badsquiddogames whose Peeegs and a Viking have come to be part...
https://dotnet.social/@ythos/112...

HTMX FTW. Interactive charts without all the client side pain. Howard writes about his experience modernizing our internal line of business...

https://dotnet.social/@ythos/112...

HTMX FTW. Interactive charts without all the client side pain. Howard writes about his experience modernizing our internal line of business apps. endjin.com/blog/2024/04/aspnet

11.4.2024 07:25HTMX FTW. Interactive charts without all the client side pain. Howard writes about his experience modernizing our internal line of business...
https://dotnet.social/@ythos/112...

I've written a short piece on the challenges we face in meeting the "real world" demands for #data and #AI, even before we get...

https://dotnet.social/@ythos/112...

I've written a short piece on the challenges we face in meeting the "real world" demands for and , even before we get into the deeper technical and ethical issues. endjin.com/blog/2024/03/data-a

27.3.2024 13:31I've written a short piece on the challenges we face in meeting the "real world" demands for #data and #AI, even before we get...
https://dotnet.social/@ythos/112...

A short video from @idg10 about the heart of #rxdotnet - what are the fundamental underpinnings of #rx...

https://dotnet.social/@ythos/112...

A short video from @idg10 about the heart of - what are the fundamental underpinnings of ?

youtube.com/watch?v=9B4LRxUKpd

25.3.2024 10:25A short video from @idg10 about the heart of #rxdotnet - what are the fundamental underpinnings of #rx...
https://dotnet.social/@ythos/112...
Subscribe
To add news/posts to your profile here, you must add a link to a RSS-Feed to your webfinger. One example how you can do this is to join Fediverse City.
         
Webfan Website Badge
Nutzungsbedingungen   Datenschutzerklärung  Impressum
Webfan | @Web pages | Fediverse Members

⬆️

⬇️