Anonymous Quiz
    7%
    git cherry-pick
      
    11%
    git rebase -i
      
    15%
    git reset --soft HEAD~1
      
    68%
    git commit --amend
      
    Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  👍4
  Anonymous Quiz
    30%
    git rebase -i
      
    60%
    git merge --squash
      
    9%
    git cherry-pick
      
    2%
    git bisect
      
    💊8
  Anonymous Quiz
    22%
    git merge
      
    7%
    git revert
      
    60%
    git cherry-pick
      
    11%
    git rebase
      
    Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  🔥7👍4
  Anonymous Quiz
    9%
    xargs sed -i 's/foo/bar/g'
      
    16%
    awk '{gsub(/foo/, "bar"); print}'
      
    43%
    find . -type f -exec sed -i 's/foo/bar/g' {} +
      
    33%
    sed 's/foo/bar/g' *
      
    👍6
  Anonymous Quiz
    63%
    command 2> error.log
      
    6%
    command | tee error.log
      
    12%
    command &> error.log
      
    19%
    command > error.log
      
    Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  👍4🔥2
  Anonymous Quiz
    40%
    rm $(find . -type f -empty)
      
    39%
    find . -type f -empty -delete
      
    7%
    xargs -0 rm < find . -type f -empty
      
    15%
    find . -name '*.empty' -exec rm {} +
      
    🔥1💊1
  Anonymous Quiz
    9%
    git cherry-pick
      
    74%
    git commit --amend
      
    5%
    git rebase -i
      
    12%
    git reset --soft HEAD~1
      
    😁3👀3
  Anonymous Quiz
    12%
    git branch -r
      
    10%
    git show-branch
      
    5%
    git reflog
      
    73%
    git branch --contains <commit>
      
    Anonymous Quiz
    59%
    git merge --squash
      
    10%
    git cherry-pick
      
    2%
    git bisect
      
    29%
    git rebase -i
      
    Anonymous Quiz
    71%
    git cherry-pick
      
    14%
    git merge
      
    12%
    git rebase
      
    3%
    git revert
      
    ❤1
  Проактивная (proactive) — анализирует метрики и логи для выявления потенциальных проблем до их возникновения.
Прогнозирующая (predictive) — использует машинное обучение или статистику для предсказания будущих проблем. Отличия заключаются в целях и методах обработки данных: от реагирования до предсказания.
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  🔥10👍3
  Anonymous Quiz
    5%
    xargs sed -i 's/foo/bar/g'
      
    13%
    awk '{gsub(/foo/, "bar"); print}'
      
    20%
    sed 's/foo/bar/g' *
      
    62%
    find . -type f -exec sed -i 's/foo/bar/g' {} +
      
    Anonymous Quiz
    72%
    command 2> error.log
      
    8%
    command &> error.log
      
    5%
    command | tee error.log
      
    15%
    command > error.log
      
    👍3
  Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  👍6🔥3
  Anonymous Quiz
    31%
    rm $(find . -type f -empty)
      
    5%
    xargs -0 rm < find . -type f -empty
      
    19%
    find . -name '*.empty' -exec rm {} +
      
    45%
    find . -type f -empty -delete
      
    👍1🤯1
  Anonymous Quiz
    24%
    grep -v -e ".*" file
      
    1%
    sort file
      
    48%
    sort file | uniq
      
    26%
    uniq file
      
    🤯1
  Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
    VIEW IN TELEGRAM
  👍15
  Anonymous Quiz
    7%
    head -50 file
      
    34%
    cat file | tail -n 50
      
    58%
    tail -50 file
      
    1%
    more +50 file
      
    💊8😁4