constraints: BoxConstraints.expand() so the child a column can have expanded
TextField(
controller: _usernameController,
decoration: InputDecoration(
# to remove | |
docker rmi $(docker images --filter "dangling=true" -q --no-trunc) | |
# build images using | |
docker build --rm | |
// 1 | |
import { peopleReducer as peopleState } from './reducers/peopleReducer.ts'; | |
import { combineReducers } from 'redux'; | |
export const rootReducer = combineReducers({ | |
peopleState, | |
}); | |
export type AppState = ReturnType<typeof rootReducer>; |
import * as React from 'react' | |
import * as Redux from 'redux' | |
import { MyReduxState } from './my-root-reducer.ts' | |
export interface OwnProps { | |
propFromParent: number | |
} | |
interface StateProps { |
import React from 'react'; | |
import { | |
DialogActionsDefault, | |
DialogContent, | |
DialogTitle, | |
} from '../../components/ModalDialog'; | |
import { Formik, Form } from 'formik'; | |
import { Grid } from '@material-ui/core'; | |
import Dialog from '@material-ui/core/Dialog'; | |
import * as Yup from 'yup'; |
# Microphone Realtime background noise reduction script | |
# author Luigi Maselli - https://grigio.org licence: AS-IS | |
# credits: http://askubuntu.com/questions/18958/realtime-noise-removal-with-pulseaudio | |
# run as: sudo && pulseaudio -k | |
# wget -qO - https://gist.github.com/adrianolsk/bfa32f3227dc674eff72a2008f6c0316 | sudo bash && pulseaudio -k | |
sudo cp /etc/pulse/default.pa /etc/pulse/default.pa.bak | |
sudo cat <<EOT >> /etc/pulse/default.pa | |
load-module module-echo-cancel source_name=noechosource sink_name=noechosink |
NORMAL="\\033[0;39m" | |
RED="\\033[1;31m" | |
BLUE="\\033[1;34m" | |
GREEN="\\033[1;32m" | |
while true; do | |
echo -e "$BLUE------------------------------------------" | |
echo -e "$BLUE Escolha uma opção: $NORMAL" | |
echo "" |
<html> | |
<body> | |
<h2>Privacy Policy</h2> | |
<p>[Individual or Company Name] built the [App Name] app as a [open source | free | freemium | ad-supported | commercial] app. This SERVICE is provided by [Individual or company name] [at no cost] and is intended | |
for use as is.</p> | |
<p>This page is used to inform website visitors regarding [my|our] policies with the collection, use, and | |
disclosure of Personal Information if anyone decided to use [my|our] Service.</p> | |
<p>If you choose to use [my|our] Service, then you agree to the collection and use of information in | |
relation with this policy. The Personal Information that [I|we] collect are used for providing and | |
improving the Service. [I|We] will not use or share your information with anyone except as described |
#!/usr/bin/env bash | |
# https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable" | |
sudo apt-get update | |
sudo apt-get install docker-ce | |
# https://docs.docker.com/compose/install/ |