Skip to content

Instantly share code, notes, and snippets.

@Sunbreak
Sunbreak / Example.md
Last active April 21, 2024 15:35
RenderProxyBox

RenderProxyBox

@timtraversy
timtraversy / local_storage.dart
Last active September 23, 2021 14:14
Using localStorage with Flutter for web
@JS()
library storage;
import 'package:js/js.dart';
external Storage get localStorage;
@JS()
class Storage {
int length;
@pierrejoubert73
pierrejoubert73 / markdown-details-collapsible.md
Last active June 19, 2024 00:04
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@patrickhammond
patrickhammond / android_instructions.md
Last active June 6, 2024 05:19
Easily setup an Android development environment on a Mac

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"