Skip to content

Instantly share code, notes, and snippets.

View Nikitaw99's full-sized avatar

Nikitaw99 Nikitaw99

  • Russia
View GitHub Profile
@Nikitaw99
Nikitaw99 / SquirellSetup.log
Created February 19, 2016 22:37
SquirellSetup.log
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
@Nikitaw99
Nikitaw99 / creature.json
Last active April 19, 2016 14:34
My first json!
{
"name": "Creature",
"isReal": false,
"breathes": true,
"isAlive": true
}
@Nikitaw99
Nikitaw99 / Preferences.sublime-settings
Created April 22, 2016 19:49
My personal Sublime 3 settings.
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"tab_size": 2,
"translate_tabs_to_spaces": true
}
@Nikitaw99
Nikitaw99 / gource.txt
Created April 23, 2016 07:49
I love these gource configs.
// 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
[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'))
@Nikitaw99
Nikitaw99 / brainfckd.b
Created July 18, 2016 18:24
brainfck'd
++++++++++[>++++++++++>++++++++++>++++++++++<<<-]++++++++[>+>+>+<<<-]>>+++<<>.>.>.
@Nikitaw99
Nikitaw99 / LICENSE.txt
Last active January 5, 2022 23:07
simple command prompt theme in simple html and css
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
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
#include <iostream>
int getUserInput() {
std::cout << "Please input an integer: ";
int value;
std::cin >> value;
return value;
}
int getMathematicalOperation() {