Заголовки
Выделение
Списки
Горизонтальная линия
Новая строка
This file contains 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
/** Разрешенные импорты (для сортировки) */ | |
const ALLOWED_PATH_GROUPS = ["pages/**", "features/**", "entities/**", "shared/**"].map( | |
(pattern) => ({ | |
pattern, | |
group: "internal", | |
position: "after", | |
}), | |
); | |
/** Для запрета приватных путей */ |
This file contains 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
#onlyvega, only vega, onlyvega | |
(:, :), :-), =) | |
):, :(, :-(, =( | |
0:), o:), о:) | |
10 бушлатов из 10 | |
10 из 10 | |
2018 | |
23 февраля | |
420 | |
5 мин |
This file contains 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
template<class T, class F> | |
class Kernel { | |
public: | |
virtual void exec()=0; | |
}; | |
template<class T> | |
class PartialKernel: public Kernel<T, int> { | |
public: | |
void exec() {} |
This file contains 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
From 0159d6ae88ee142473ea00a7bc8eda59f39c4431 Mon Sep 17 00:00:00 2001 | |
From: endAurum <[email protected]> | |
Date: Wed, 23 Mar 2016 10:01:32 +0300 | |
Subject: [PATCH] Fix broken offer change on load page with hash | |
--- | |
resource/js/jquery.changeoffer.js | 7 +++++++ | |
1 file changed, 7 insertions(+) | |
diff --git a/resource/js/jquery.changeoffer.js b/resource/js/jquery.changeoffer.js |
This file contains 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
interface IAction: IDisposable { | |
void Execute(); | |
} | |
// Создать класс ActionQueue, реализующий асинхронную очередь исполнения. | |
interface IActionQueue: IDisposable { | |
// Добавляет объект в очередь исполнения | |
// Экземпляр поставленный в очередь переходит в его владение IActionQueue. | |
// Каждый объект IAction должен быть освобожден сразу после исполнения | |
void Enqueue(IAction action); |
This file contains 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
interface IBufferedField { | |
void Swap(); | |
int this[int x, int y]; | |
int ReadBack(int x, int y); | |
} |
This file contains 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
<audio controls=""> | |
<source src="http://radio.cttit.ru:8000/live" type="audio/mpeg"> | |
Your browser does not support the audio element. | |
</audio> |
This file contains 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
(function() { | |
var jq; | |
if (!window.jQuery) { | |
jq = document.createElement('script'); | |
jq.type = 'text/javascript'; | |
jq.src = '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js'; | |
return document.getElementsByTagName('head')[0].appendChild(jq); | |
} | |
})() | |
setTimeout(function() { |
This file contains 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
<div class="accordion-group"> | |
<div class="accordion-heading"> | |
<a class="accordion-toggle" data-toggle="collapse" href="#{ __ ССЫЛКО НА ИД СОДЕРЖИМОГО __ }"> | |
{ __ МЕСТО ДЛЯ ЗАГОЛОВКА __ } | |
</a> | |
</div> | |
<div id="{ __ ИД СОДЕРЖИМОГО __ }" class="accordion-body collapse in"> | |
<div class="accordion-inner"> | |
{ __ МЕСТО ДЛЯ СОДЕРЖИМОГО__ } | |
</div> |
NewerOlder