Skip to content

Instantly share code, notes, and snippets.

View chyiiiiiiiiiiii's full-sized avatar
💙

Yii Chen chyiiiiiiiiiiii

💙
View GitHub Profile
@emschwartz
emschwartz / README.md
Last active February 3, 2026 09:04
The Most Popular Blogs of Hacker News in 2025

This is an OPML version of the HN Popularity Contest results for 2025, for importing into RSS feed readers.

Plug: if you want to find content related to your interests from thousands of obscure blogs and noisy sources like HN Newest, check out Scour. It's a free, personalized content feed I work on where you define your interests in your own words and it ranks content based on how closely related it is to those topics.

@TahaTesser
TahaTesser / Flutter Network.md
Last active December 25, 2025 10:01
A collection of active Flutter YouTube content creators, newsletters and blogs, personalities, and platforms. If you've suggestions for active content creators, please comment below.
@chooyan-eng
chooyan-eng / main.dart
Created January 10, 2025 03:19
A demo of shuffling UI using my animated_to package
import 'package:animated_to/animated_to.dart';
import 'package:flutter/material.dart';
void main() => runApp(const MainApp());
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
@rodydavis
rodydavis / builder.dart
Last active October 6, 2024 13:32
SQLite3 Sync UI
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:sqlite3/common.dart';
import '../src/database/types.dart';
class SqlBuilder extends StatefulWidget {
const SqlBuilder({
super.key,