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 | |
echo "ℹ️ Running pre-commit hook" | |
# go to git root | |
pushd `git rev-parse --show-toplevel` > /dev/null | |
STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".go$") | |
if [[ "$STAGED_FILES" = "" ]]; then |
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 | |
# git config --global user.name "Firstname Lastname" | |
# git config --global user.email "[email protected]" | |
git config --global user.useconfigonly true | |
git config --global pull.ff only | |
git config --global push.default simple | |
git config --global rerere.enabled true | |
git config --global rerere.autoupdate true | |
git config --global diff.algorithm histogram | |
git config --global merge.conflictstyle zdiff3 |
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
setopt prompt_subst | |
() { | |
local PR_USER PR_USER_OP PR_PROMPT PR_HOST | |
# Check the UID | |
if [[ $UID -ne 0 ]]; then # normal user | |
PR_USER='%F{green}%n%f' | |
PR_USER_OP='%F{green}%#%f' |
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 'package:flutter/material.dart'; | |
import 'package:provider/provider.dart'; | |
class Counter extends ChangeNotifier { | |
Counter(int initialValue) : _value = initialValue; | |
int _value; | |
set value(int newValue) { | |
_value = newValue; | |
notifyListeners(); |
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
abstract class BuildMode { | |
static final BuildModeType buildMode = () { | |
if (const bool.fromEnvironment('dart.vm.product')) { | |
return BuildModeType.release; | |
} | |
var result = BuildModeType.profile; | |
assert(() { | |
result = BuildModeType.debug; | |
return true; | |
}()); |
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 | |
adb shell setprop log.tag.Fabric DEBUG | |
adb shell setprop log.tag.CrashlyticsCore DEBUG | |
adb logcat -s flutter Fabric CrashlyticsCore FirebaseApp libcrashlytics FlutterCrashlytics |
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
# STEP 1 | |
# To change non-root commit | |
git rebase -i f154548^ | |
# Alternatively, to change the root commit | |
git rebase -i --root | |
# STEP 2 | |
# edit the commit you want to change by changing the line | |
pick f154548 This is a commit message |
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 | |
# Project size evaluator for Flutter Create contest 2019. | |
# More info: https://flutter.io/create | |
MAX_SIZE=5120 | |
SIZE=`find . -name "*.dart" | xargs cat | wc -c` | |
if [ $SIZE -gt $MAX_SIZE ]; |
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
[✓] Flutter (Channel master, v0.10.2-pre.25, on Linux, locale en_US.UTF-8) | |
• Flutter version 0.10.2-pre.25 at /home/antti/tools/flutter | |
• Framework revision 0edbe726a1 (3 hours ago), 2018-10-22 10:29:00 -0700 | |
• Engine revision 58cdd53f90 | |
• Dart version 2.1.0-dev.7.1.flutter-b99bcfd309 | |
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.3) | |
• Android SDK at /home/antti/Android/Sdk | |
• Android NDK location not configured (optional; useful for native profiling support) | |
• Platform android-28, build-tools 28.0.3 |
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
// NOTE: The preferred way is to install lcov and use command `lcov --summary path/to/lcov.info` | |
// Use this script only if you can't install lcov on your platform. | |
// Usage: dart coverage.dart path/to/lcov.info | |
import 'dart:io'; | |
void main(List<String> args) async { | |
final lcovFile = args[0]; | |
final lines = await File(lcovFile).readAsLines(); |
NewerOlder