Skip to content

Instantly share code, notes, and snippets.

View nixel2007's full-sized avatar
👋

Nikita Fedkin nixel2007

👋
View GitHub Profile
1c-soft.1c-executor-plugin
1c-syntax.language-1c-bsl
adpyke.vscode-sql-formatter
akamud.vscode-theme-onedark
AlanWalk.markdown-toc
alefragnani.Bookmarks
alefragnani.pascal
alefragnani.pascal-formatter
alexcvzz.vscode-sqlite
alexkrechik.cucumberautocomplete
{
"swagger": "2.0",
"info": {
"description": "Authorization service",
"version": "сервис авторизации",
"title": "AuthorizationService",
"termsOfService": ""
},
"host": "",
"basePath": "/auth",
#!/bin/bash
docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD $DOCKER_USERNAME
if [ $DOCKER_SYSTEM_PRUNE = 'true' ] ; then
docker system prune -af
fi
last_arg='.'
if [ $NO_CACHE = 'true' ] ; then
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"serverId": {
"type": "string",
"description": "Unique ID of SonarQube connection"
},
"projectKey": {
"type": "string",
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"servers": {
"type": "array",
"items": {
"oneOf": [
{
"type": "object",
@nixel2007
nixel2007 / vbparams.json
Last active March 28, 2017 09:19
VBParams JSON Schema
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "Root schema.",
"description": "An explanation about the purpose of this instance.",
"properties": {
"КаталогФич": {
"type": "string",
"title": "КаталогФич schema.",
"description": "An explanation about the purpose of this instance."
@nixel2007
nixel2007 / gist:19e56da56fe146dddaffc163e6f33241
Created April 1, 2016 10:10
Ссылки по лекции
Вот ссылка на видеозапись:
https://drive.google.com/open?id=0BzrHpvxfLxBibXkxQnQzdGhySU0
TDD - https://ru.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0_%D1%87%D0%B5%D1%80%D0%B5%D0%B7_%D1%82%D0%B5%D1%81%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5
Example mapping - https://cucumber.io/blog/2015/12/08/example-mapping-introduction
BDD:
* wiki - https://en.wikipedia.org/wiki/Behavior-driven_development
* cucumber и gherkin - https://cucumber.io/
* примеры и советы по написанию на gherkin - http://docs.behat.org/en/v3.0/guides/1.gherkin.html
Silverbulleters, LLC - http://silverbulleters.org/
@nixel2007
nixel2007 / init.coffee
Created January 22, 2016 07:33
save as utf-8-bom in atom
atom.workspace.observeTextEditors (editor) ->
editor.onDidSave ->
if editor.getPath().slice(-3) is '.os'
if editor.getEncoding() is 'utf8' and editor.getText().charCodeAt(0) isnt 65279
editor.setText String.fromCharCode(65279) + editor.getText()
editor.save()