This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
GIT_OPTS="" | |
OUTPUT_FILTER="cat" | |
function usage() { | |
echo "NAME" | |
echo " git-task - Start new feature branch or merge it into development branch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###[Q] Форматирование | |
Чтобы отформатировать код, выделите его мышью и нажмите на кнопку {} редактора. | |
###[Q] Работа за автора | |
Согласно правилам форума, вопросы не должны сводиться к решению либо завершению учебных заданий за учащихся. Пожалуйста, уточните, что вы сделали сами и что не получилось. | |
###[Q] Примите ответ | |
Если вам дан исчерпывающий ответ, отметьте его как верный (нажмите на галку рядом с выбранным ответом). | |
###[Q] Всеобъемлющий вопрос |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Stackoverflow.Comments.User | |
// @author Alexander Kachanov | |
// @include /^https?:\/\/(.*\.)?stackoverflow\.com/questions/.*$/ | |
// @include /^https?:\/\/(.*\.)?stackoverflow\.com/review/.*$/ | |
// @include /^https?:\/\/(.*\.)?serverfault\.com/questions/.*$/ | |
// @include /^https?:\/\/(.*\.)?serverfault\.com/review/.*$/ | |
// @include /^https?:\/\/(.*\.)?askubuntu\.com/questions/.*$/ | |
// @include /^https?:\/\/(.*\.)?askubuntu\.com/review/.*$/ | |
// @include /^https?:\/\/(.*\.)?mathoverflow\.com/questions/.*$/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <algorithm> | |
#include <string> | |
using namespace std; | |
bool mask[25002]; | |
string ar[25002]; | |
int n = 0; | |
void push(char t[255]) | |
{ | |
for(int i = 0;i < n;i++) |