Would you say it's good for a sequel, good outright, or even achieved the rare feat of being better than the first?
Would you say it's good for a sequel, good outright, or even achieved the rare feat of being better than the first?
write me a vim config line to set the filetype to yaml.ansible for files with the yml or yaml extension in directories that contain the word ansible
result:
autocmd BufRead,BufNewFile */ansible/*.{yml,yaml} set filetype=yaml.ansible
Not perfect, but really close.
write me a vim config line to set the filetype to yaml.ansible for files with the yml or yaml extension in directories that contain the word ansible
result:
autocmd BufRead,BufNewFile */ansible/*.{yml,yaml} set filetype=yaml.ansible
Not perfect, but really close.
what are the graphicsmagick flags to resize an image
result:
gm convert input.jpg -resize 800x600 output.jpg
Perfect.
what are the graphicsmagick flags to resize an image
result:
gm convert input.jpg -resize 800x600 output.jpg
Perfect.
give me a git log command formatted with one commit per line, only including the date in yyyy-mm-dd format, the short commit hash, author name, and author email (in that order)
result:
git log --pretty=format:"%ad %h %an %ae" --date=short
Perfect.
give me a git log command formatted with one commit per line, only including the date in yyyy-mm-dd format, the short commit hash, author name, and author email (in that order)
result:
git log --pretty=format:"%ad %h %an %ae" --date=short
Perfect.