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
For mysql from 5.6 to 8.0 | |
`sudo dnf install moby-engine --allowerasing` |
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
/** | |
* Class readTimeEstimate | |
* Подсчет времени чтения статьи | |
*/ | |
class readTimeEstimate | |
{ | |
/** | |
* Средняя скорость чтения слов в минуту | |
*/ | |
const WORDS_PER_MINUTE = 200; |
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
// Пример фильтра по слою | |
TypedValue[] filterlist = new TypedValue[1] { | |
new TypedValue((int)DxfCode.LayerName, "Layer1") | |
}; | |
SelectionFilter filter = new SelectionFilter(filterlist); | |
PromptSelectionResult selResult = editor.SelectAll(filter); | |
ObjectId[] ids = selResult.Value.GetObjectIds(); |
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
conky.config = { | |
------------------------------------- | |
-- Generic Settings | |
------------------------------------- | |
background=true, | |
update_interval=1, | |
double_buffer=true, | |
no_buffers=true, | |
imlib_cache_size=10, |