This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:typed_data'; | |
| import 'dart:ui' as ui; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/rendering.dart'; | |
| import 'package:google_maps_flutter/google_maps_flutter.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Dspdfviewer < Formula | |
| desc "Dual-Screen PDF Viewer for latex-beamer" | |
| homepage "http://dspdfviewer.danny-edel.de" | |
| url "https://github.com/dannyedel/dspdfviewer/archive/v1.13.1.tar.gz" | |
| version "1.13.1" | |
| sha256 "333588de0316cfdb5821b8484ee55690dfa3c7431b67c126bfdbe9c9cc3e1ed4" | |
| depends_on "cmake" | |
| depends_on "poppler" => "with-qt4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # PROVIDE: forever | |
| # REQUIRE: NETWORKING SERVERS DAEMON | |
| # BEFORE: LOGIN | |
| # KEYWORD: shutdown | |
| # Taken from http://habrahabr.ru/post/137857/ | |
| . /etc/rc.subr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Awesome type Tests | |
| it('0 == 0', function() { | |
| expect(0 == 0).toBe(true); | |
| }); | |
| it('\'0\' == 0', function() { | |
| expect('0' == 0).toBe(true); | |
| }); | |
| it('false == 0', function() { |