Skip to content

Instantly share code, notes, and snippets.

View orestesgaolin's full-sized avatar
🍪
hello worlds

Dominik Roszkowski orestesgaolin

🍪
hello worlds
View GitHub Profile
[user]
name =
email =
signingkey =
[commit]
gpgsign = true
[gpg]
program = C:\\Program Files (x86)\\GNU\\GnuPG\\gpg2.exe
[filter "lfs"]
required = true
// ==UserScript==
// @name Redirect MS documentation to English from Polish
// @namespace https://docs.microsoft.com/
// @description Redirect MS documentation to English from Polish
// @include https://docs.microsoft.com/pl-pl/*
// @version 0.2
// @author Dominik Roszkowski
// @match https://docs.microsoft.com/pl-pl/*
// @grant none
// ==/UserScript==
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'dart:math' as math;
class SliverGridPage extends StatefulWidget {
@override
_SliverGridPageState createState() => _SliverGridPageState();
}
class _SliverGridPageState extends State<SliverGridPage> {
flutter drive --target=test_driver/app.dart --verbose
[ +29 ms] executing: [/Users/dominik/Library/flutter/] git log -n 1 --pretty=format:%H
[ +40 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 20e59316b8b8474554b38493b8ca888794b0234a
[ ] executing: [/Users/dominik/Library/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +14 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v1.7.8+hotfix.4-0-g20e59316b
[ +18 ms] executing: [/Users/dominik/Library/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +12 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/stable
20:16:00.639424 +0200 MacPass Current system appearance, (HLTB: 1), (SLS: 0)
20:16:00.644292 +0200 MacPass Post-registration system appearance: (HLTB: 1)
błąd 20:16:00.805950 +0200 MacPass flock failed to lock maps file: errno = 35
błąd 20:16:00.807057 +0200 MacPass flock failed to lock maps file: errno = 35
20:16:04.020708 +0200 MacPass [WARNING] could not find container for id: <private>
20:16:04.025325 +0200 MacPass Read options: 0 -- URL: <private> -- purposeID: 9BA42A3E-6DC3-411A-A3AB-EC7A2BA12470 -- claimID: 63AB8DD2-3579-4F56-84D2-D5DC4BD6113A
20:16:04.067422 +0200 MacPass Task <BBF5571F-07D0-433F-A654-656FD957E2F9>.<1> resuming, QOS(0x21)
20:16:04.077749 +0200 MacPass Looking for external plugins at /Users/dominik/Library/Application Support/MacPass.
20:16:04.077942 +0200 MacPass Looking for internal plugins
20:16:04.078045 +0200 MacPass No internal plugins found!
wartość domyślna 21:10:50.593995 +0200 MacPass Current system appearance, (HLTB: 1), (SLS: 0)
wartość domyślna 21:10:50.598714 +0200 MacPass Post-registration system appearance: (HLTB: 1)
wartość domyślna 21:10:50.651143 +0200 MacPass NSApp cache appearance:
-NSRequiresAquaSystemAppearance: 0
-appearance: (null)
-effectiveAppearance: <NSCompositeAppearance: 0x600002cb63a0
(
"<NSAquaAppearance: 0x600001aa05c0>",
"<NSSystemAppearance: 0x600001abae40>"
)>
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
@orestesgaolin
orestesgaolin / .zshrc
Created December 5, 2019 08:02
.zshrc for fvm version in prompt
# place it somewhere in your .zshrc file e.g. just after setting the theme
# this is how I set powerlevel9k theme
# source /usr/local/opt/powerlevel9k/powerlevel9k.zsh-theme
# ZSH_THEME="powerlevel9k/powerlevel9k"
prompt_flutter() {
local flutter_version
flutter_version=$(command fvm flutter --version 2>/dev/null)
# Remove "Flutter " (including the whitespace) from the beginning
@orestesgaolin
orestesgaolin / always_scrollbar.dart
Created January 17, 2020 23:13 — forked from slightfoot/always_scrollbar.dart
Always Visible Scrollbar for Flutter - 4th March 2019
import 'package:flutter/gestures.dart' show DragStartBehavior;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: Colors.indigo,
@orestesgaolin
orestesgaolin / tasks.json
Last active February 18, 2020 21:58
Custom shell task in VS Code
{
"version": "2.0.0",
"tasks": [
{
"label": "Download translations from Localizely",
"type": "shell",
"command": "./scripts/localizely.sh",
"problemMatcher": []
}
]