Skip to content

Instantly share code, notes, and snippets.

View hydev777's full-sized avatar

Wilson Toribio hydev777

  • 12:21 (UTC -04:00)
View GitHub Profile
@speedyGonzales
speedyGonzales / main.dart
Created June 29, 2018 08:39
Signature to image transformation
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'dart:ui' as ui;
void main() => runApp(new MaterialApp(
home: new HomePage(),
debugShowCheckedModeBanner: false,
));
@ilikerobots
ilikerobots / main.dart
Last active June 21, 2022 10:45
Basic examples: Dart call() and Function.apply()
class Adder implements Function {
call(int a, int b) => a + b;
}
class Incrementer implements Function {
int _amt;
Incrementer(this._amt);
call(int a) => a + _amt;
}
@brianclements
brianclements / Commit Formatting.md
Last active July 19, 2024 13:32
Angular Commit Format Reference Sheet

Commit Message Format

This specification is inspired by and supersedes the [AngularJS commit message format][commit-message-format].

We have very precise rules over how our Git commit messages must be formatted. This format leads to easier to read commit history.

Each commit message consists of a header, a body, and a footer.