Advertisement Β· 728 Γ— 90

Posts by Codeamin

Preview
A 10x Faster TypeScript - TypeScript Embarking on a native port of the existing TypeScript compiler and toolset to achieve a 10x performance speed-up.

Today we're thrilled to announce our effort to port the TypeScript compiler and language service to native code, gaining a 10x speed boost in build times and editor responsiveness!

devblogs.microsoft.com/typescript/t...

1 year ago 972 292 22 156
C# code that reads:
Span<float2> points = stackalloc float2[3] {
	Mathfs.AngToDir( 0 ),
	Mathfs.AngToDir( Mathfs.TAU / 3 ),
	Mathfs.AngToDir( 2 * Mathfs.TAU / 3 )
};

foreach( float2 p in points ) {
	// ...
}

C# code that reads: Span<float2> points = stackalloc float2[3] { Mathfs.AngToDir( 0 ), Mathfs.AngToDir( Mathfs.TAU / 3 ), Mathfs.AngToDir( 2 * Mathfs.TAU / 3 ) }; foreach( float2 p in points ) { // ... }

I'm such a C# shill but,

any time I hear someone say "the garbage collector slows things down too much" I feel like they're not aware of just how many tools you have to avoid heap allocations

it seems to me whatever work that entails, it's almost always less work than using an unmanaged language

5 months ago 381 21 36 1
Post image

Excited to spotlight Laravel Passport in my Laravel Spotlight series this Saturday at 3:30 PM UTC! πŸ”΄

Joining me: Hafez Divandari for a deep dive on OAuth2 made simpleβ€”from fundamentals, API/SPA auth, PATs, to the ultimate Sanctum vs Passport showdown. πŸ’₯

Don't miss itβ€”Link in comments! πŸŽ₯

5 months ago 2 1 1 0
Post image

Testing in Laravel 12.28 just got faster. πŸ§ͺ

You can now cache your routes and config once per test run, instead of rebuilding them for every test. πŸ’ͺ

A nice performance boost for apps with lots of routes or heavy config. ⚑

Works in both PHPUnit & Pest.

5 months ago 10 3 1 0

Awesome

5 months ago 2 0 0 0

I create web with laravel @laravel.com

5 months ago 1 0 0 0
Two iPhone screenshots of a recipe view in Breve app on iOS 26 and 26.1

Two iPhone screenshots of a recipe view in Breve app on iOS 26 and 26.1

I noticed that on iOS 26.1 there are some small improvements to the Liquid Glass tab bar: the selected tab color looks less saturated, making it more readable on top of colorful backgrounds, and the edge effect is stronger.

Here is @brevecoffeeapp.bsky.social on iOS 26 and 26.1:

5 months ago 25 4 1 0
Preview
ScrollView snapping in SwiftUI Explore SwiftUI APIs for customizing scroll behavior, including paging and view-aligned snapping, and learn what to watch out for to avoid unexpected results.

πŸ“œ π‘†π‘π‘Ÿπ‘œπ‘™π‘™π‘‰π‘–π‘’π‘€ π‘ π‘›π‘Žπ‘π‘π‘–π‘›π‘” 𝑖𝑛 π‘†π‘€π‘–π‘“π‘‘π‘ˆπΌ by Natalia Panferova (@natpanferova.bsky.social)

Want your scrolling to snap perfectly to pages or specific views? This guide explores SwiftUI's π‘ π‘π‘Ÿπ‘œπ‘™π‘™π‘‡π‘Žπ‘Ÿπ‘”π‘’π‘‘π΅π‘’β„Žπ‘Žπ‘£π‘–π‘œπ‘Ÿ and π‘ π‘π‘Ÿπ‘œπ‘™π‘™π‘‡π‘Žπ‘Ÿπ‘”π‘’π‘‘πΏπ‘Žπ‘¦π‘œπ‘’π‘‘ APIs for precise control.

#SwiftUI

nilcoalescing.com/blog/ScrollV...

5 months ago 5 2 0 0
Advertisement