constraints: BoxConstraints.expand() so the child a column can have expanded
TextField(
controller: _usernameController,
decoration: InputDecoration(
import { Modal } from 'react-bootstrap' | |
import ModalDialog from 'react-bootstrap/lib/ModalDialog' | |
class DraggableModalDialog extends React.Component { | |
render() { | |
return <Draggable handle=".modal-title"><ModalDialog {...this.props} /></Draggable> | |
} | |
} | |
// enforceForce=false causes recursion exception otherwise.... |
C:\cygwin64\bin\mintty.exe /usr/bin/zsh -
. Make it the defaut shell.start C:\cygwin64\bin\mintty.exe /usr/bin/zsh -
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
This is a SCRIPT-8 cassette.
1) Create a branch with the tag | |
git branch {tagname}-branch {tagname} | |
git checkout {tagname}-branch | |
2) Include the fix manually if it's just a change .... | |
git add . | |
git ci -m "Fix included" | |
or cherry-pick the commit, whatever is easier | |
git cherry-pick {num_commit} | |
const Git = require('nodegit'); | |
let shouldProceed = true; | |
let dataArray = []; | |
const authorEmail = "[email protected]"; | |
const lastCommitSHA = 'sdfsdfs'; // hardcoded latest git commit ID | |
const commitTillSHA = 'sdfsfdsfsdf'; // hardcoded commit id till we want the report for | |
Git.Repository.open('/home/myname/Documents/projects/mygitrepo') // your local repository path | |
.then((repository) => { |
set title 'Line' | |
set xlabel 'x' | |
set ylabel 'y' | |
set grid | |
set key below center horizontal noreverse enhanced autotitle box dashtype solid | |
set tics out nomirror | |
set border 3 front linetype black linewidth 1.0 dashtype solid |