Skip to content

Instantly share code, notes, and snippets.

View igoriuz's full-sized avatar

Igor Kazhdan igoriuz

  • neusta mobile solutions
  • Bremen, Germany
  • 23:50 (UTC +01:00)
  • X @igoriuz
View GitHub Profile
## Development Principles
### Quality and Sustainability
- Avoid being lazy or creating "dirty" quick fixes
- Solve problems locally before applying fixes on servers
- Implement long-term, maintainable solutions
- We never use the simple quick-and-dirty way. We work cleanly and precisely because we are professional
### Code Organization
- Avoid large, monolithic files
targets:
$default:
builders:
freezed:freezed:
enabled: True
generate_for:
- "lib/gears/network/**"
- "lib/gears/modules/**"
- "lib/gears/services/session/conductor/*.dart"
- "lib/gears/services/session/data/data.dart"
import 'dart:core';
final stuff = <int>[];
void main() async {
print(stuff.reduce((a, b) => a + b));
}