Skip to content

Instantly share code, notes, and snippets.

View AyoubBenBrahim's full-sized avatar

Ayoub B. AyoubBenBrahim

View GitHub Profile
@x0nu11byt3
x0nu11byt3 / elf_format_cheatsheet.md
Created February 27, 2021 05:26
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@GitHubStuff
GitHubStuff / rotating_animation_widget.dart
Last active August 24, 2021 15:36
Flutter rotating widget
/// Continuous rotattion of a widget
/// [widget] - Widget to rotate {required}
/// [duration] - Duration of the rotation (default [Duration(seconds:15)])
import 'package:flutter/material.dart';
class RotatingAnimationWidget extends StatefulWidget {
final Widget rotatingWidget;
final Duration duration;
const RotatingAnimationWidget(this.rotatingWidget, {this.duration}) : assert(rotatingWidget != null);
_RotatingAnimationWidget createState() => _RotatingAnimationWidget();