## Pen available [here](http://codepen.io/Nikitaw99/pen/rxPJGa?editors=1010 "Warn/Error Function").
## Ссылка на [codepen.io](http://codepen.io/Nikitaw99/pen/rxPJGa?editors=1010 "Функция Предупреждения/Вывода ошибки"). ## Ссылка к [оригиналу/английской версии](https://gist.github.com/Nikitaw99/ba6b4bdee0433728854e).
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
2016-02-19 21:36:15> Program: Starting Squirrel Updater: --download https://atom.io/api/updates?version=1.5.3 | |
2016-02-19 21:36:15> Program: Fetching update information, downloading from https://atom.io/api/updates?version=1.5.3 | |
2016-02-19 21:36:21> SingleGlobalInstance: Failed to grab lockfile, will retry: C:\Users\adm\AppData\Roaming\Slack\temp\.squirrel-lock-F630C3297EC4C89E45F8F3410214FEF28EC39B70: System.IO.IOException: Процесс не может получить доступ к файлу "C:\Users\adm\AppData\Roaming\Slack\temp\.squirrel-lock-F630C3297EC4C89E45F8F3410214FEF28EC39B70", так как этот файл используется другим процессом. | |
в System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) | |
в System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) | |
в System.IO.FileStream..ctor(String path, FileMode mode, F |
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
{ | |
"name": "Creature", | |
"isReal": false, | |
"breathes": true, | |
"isAlive": true | |
} |
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
Show hidden characters
{ | |
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme", | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true | |
} |
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
// Awesome Gource config, use by default, please. | |
gource -f --seconds-per-day 3 --auto-skip-seconds 1 --file-idle-time 0 --camera-mode track | |
// Super fast Gource config, best for big logs. | |
gource -f --seconds-per-day 1 --auto-skip-seconds 1 --file-idle-time 0 --camera-mode track |
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
[00:00:00] Build started | |
[00:00:00] git clone -q --depth=10 --branch=master https://github.com/Nikitaw99/grassy-fields-syntax.git C:\projects\grassy-fields-syntax | |
[00:00:01] git checkout -qf 3d0892f62b47a8290d5780e54a25542300a0dc3b | |
[00:00:01] Running Install scripts | |
[00:00:01] Install-Product node 5 | |
[00:00:02] Uninstalling node 4.4.4 (x86)... | |
[00:00:02] | |
[00:00:02] Installing node 5.11.0 (x86)... | |
[00:00:02] | |
[00:00:03] iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) |
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
++++++++++[>++++++++++>++++++++++>++++++++++<<<-]++++++++[>+>+>+<<<-]>>+++<<>.>.>. |
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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2004 Sam Hocevar <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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> | |
int getUserInput() { | |
std::cout << "Please input an integer: "; | |
int value; | |
std::cin >> value; | |
return value; | |
} | |
int getMathematicalOperation() { |
OlderNewer