Skip to content

Instantly share code, notes, and snippets.

View sdcb's full-sized avatar
👋
Console.WriteLine("Hello World");

ZHOU Jie sdcb

👋
Console.WriteLine("Hello World");
View GitHub Profile
@mattleibow
mattleibow / README.md
Last active June 30, 2026 15:44
SkiaSharp 4.0 blog assets: .NET 10 single-file app rendering two looping animated WebPs (variable-font weight morph + color-font palette cycle) with SkiaSharp 4.148.0

SkiaSharp 4.0 — animated font screenshots

A self-contained .NET 10 file-based app that renders two looping animated WebPs for the "SkiaSharp 4.0 is here" blog post, using the 4.148.0 NuGet packages. Each image showcases a new v4 capability, and the act of encoding them exercises a third (the animated WebP encoder).

Output Shows v4 features
skiasharp-variable.webp The word SkiaSharp in Inter Variable, its wght axis morphing 100 → 900 → 100 Variable-font axes via SKTypeface.Clone(font variations) + animated WebP
skiasharp-color.webp v4 in the Nabla COLR/CPAL color font, cycling all 7 palettes Color-font palettes via SKTypeface.Clone(paletteIndex) + animated WebP
@ivantw08
ivantw08 / angular material
Last active November 25, 2021 22:28
A module with all Angular module.
//Simply to import to app.module.ts and start to use all angular
// by this way is easier to maintenance you app.module
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {MatCheckboxModule} from '@angular/material';
import {MatButtonModule} from '@angular/material';
import {MatInputModule} from '@angular/material/input';
import {MatAutocompleteModule} from '@angular/material/autocomplete';
import {MatDatepickerModule} from '@angular/material/datepicker';
import {MatFormFieldModule} from '@angular/material/form-field';