Skip to content

Instantly share code, notes, and snippets.

View juanagu's full-sized avatar
🎯
Focusing

Juani juanagu

🎯
Focusing
  • Staff Software Engineer
  • Argentina
View GitHub Profile
@juanagu
juanagu / main.dart
Created September 14, 2022 21:20
How to put two IconButtons in the same Column (AppBar and Body)?
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
@juanagu
juanagu / myscript.sh
Created December 19, 2020 08:23 — forked from bradtraversy/myscript.sh
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"
@juanagu
juanagu / StyleCop.Settings
Last active October 29, 2018 18:58
stylecop settings without documentation
<StyleCopSettings Version="105">
<GlobalSettings>
<BooleanProperty Name="ViolationsAsErrors">True</BooleanProperty>
</GlobalSettings>
<Analyzers>
<Analyzer AnalyzerId="StyleCop.CSharp.DocumentationRules">
<Rules>
<Rule Name="ElementsMustBeDocumented">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
@juanagu
juanagu / controller_partial_view.js
Created May 18, 2016 14:30
Architecture for Appcelerator with Alloy
/**
* @author jagu
* @
*/
/** ------------------------
Fields
------------------------**/
// Arguments passed into this controller can be accessed via the `$.args` object directly or:
var args = $.args;