This file contains 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 'package:flutter/services.dart'; | |
import 'package:flutter_test/flutter_test.dart'; | |
void mockPackageInfo() { | |
const channel = MethodChannel('plugins.flutter.io/package_info'); | |
handler(MethodCall methodCall) async { | |
if (methodCall.method == 'getAll') { | |
return <String, dynamic>{ | |
'appName': 'myapp', |
This file contains 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
/// lib/utilities/assets.dart | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/scheduler.dart'; | |
/// Usage: | |
/// | |
/// The image file is located at lib/assets/images/path/to/image.png. | |
/// | |
/// 1. Image has no dark mode variant. |
This file contains 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
# app/models/friendship.rb | |
class Friendship < ApplicationRecord | |
belongs_to :user | |
belongs_to :friend, class_name: 'User' | |
end |
This file contains 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
defaults write -g CGFontRenderingFontSmoothingDisabled -bool false | |
defaults -currentHost write -g AppleFontSmoothing -int 3 |
This file contains 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
require 'active_support/concern' | |
require 'active_support/callbacks' | |
module ActiveSupport | |
module Testing | |
module SetupAndTeardown | |
module ForClassicTestUnit | |
# This redefinition is unfortunate but test/unit shows us no alternative. | |
# Doubly unfortunate: hax to support Mocha's hax. | |
def run(result) |
This file contains 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
// ==UserScript== | |
// @name Google Analytics - Include Today | |
// @author Storm Consultancy & jibiel | |
// @description Include today in Google Analytics' default date range | |
// @include https://www.google.com/analytics/web/* | |
// @version 1.1 | |
// ==/UserScript== | |
// Function to add days to a date, use negative number to subtract | |
function addDays(myDate,days) { |
This file contains 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
# Taken from http://stackoverflow.com/questions/5256021/submitting-github-pull-request-for-only-latest-commit | |
git remote add upstream git://github.com/rsl/stringex | |
git fetch upstream | |
git checkout -b upstream upstream/master | |
git cherry-pick *sha1* | |
git push origin upstream | |
# Then you'll see your upstream branch on github, switch to it and submit the pull request with just the changes you want. |
This file contains 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
# The priority is based upon order of creation: | |
# first created -> highest priority. | |
# Sample of regular route: | |
match 'products/:id' => 'catalog#view' | |
# Keep in mind you can assign values other than :controller and :action | |
# Sample of named route: | |
match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase | |
# This route can be invoked with purchase_url(:id => product.id) |