воскресенье, 20 ноября 2011 г.

Free and simple issue tracker using Google Docs

To work on a small project does not need to use complex systems to bugtracking.

Keeping it simple (stupid ;).

Within minutes I’d set up a basic spreadsheet that covered off all the key things you’d want to know if you were tracking bugs.

Here is what I got : Simple issue tracker template.

Google Docs is a free online system that is designed for collaboration works.
Using your  Google Account, you can quickly create and publish issue to either an invite  to everyone who has the link.

Total cost? Zero, apart from my time which was approximately 10 minutes.

You want even more easy to use? Use the form.
Create a form in a Google Docs spreadsheet and send it out to anyone with an email address. They won't need to sign in, and they can respond directly from the email message or from an automatically generated web page. Creating the form is easy: start with a spreadsheet to get the form, or start by creating the form and you'll get the spreadsheet automatically. Responses are automatically added to your spreadsheet.

More Google Docs issue tacker templates.

суббота, 29 октября 2011 г.

git stash branch

Иногда начинаешь работу в master branch и только затем понимаешь масштабность требуемых изменений и что лучше бы сразу создать отдельную ветку.

Поэтому, если вы еще не наделали сгоряча коммитов и прочих дел, то можно так.

Припрятать изменения:
  git stash
Создать новую ветку
  git branch my-cool-branch
Перейти на нее
  git checkout my-cool-branch
Достать изменения
  git stash apply

или всё это можно одной командой
  git stash branch my-cool-branch

Теперь вы в новой ветке со своими изменениями, а master branch в безопасности.

понедельник, 10 октября 2011 г.

Перекодирование видео для мобильных Samsung

Вот как я перекодирую видео для проигрывания на Samsung 3011

ffmpeg -i input.avi -s sqcif -acodec aac \
   -strict experimental -vcodec mpeg4 -b 192k -ar 32000 -ac 1 \
   output-3011.mp4

а вот для Samsung 3530

ffmpeg -i mult1.avi -s qvga -acodec aac \
   -strict experimental -vcodec mpeg4  -b 256k -ar 48000 -ac 1 \
   mult-mobile-3530.mp4

воскресенье, 2 октября 2011 г.

Best of jamendo.com : zero-project "Earth"

Жанр electronic

Jamendo - это интернет-сообщество для бесплатного, легального и неограниченного прослушивания музыки, изданной под лицензией Creative Commons.

суббота, 1 октября 2011 г.

unzip, cp1251, utf8

При распаковке zip архивов, созданных под кривой виндовс системой, с русскими именами каталогов и файлов получается настолько битая кодировка, что спасает только шаманство:

convmv -f cp1252 -t cp850 --notest --nosmart *
convmv -f cp866  -t utf-8 --notest --nosmart *