This is intended as a quick Java test naming convention.
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
f1 = open('spain.txt') | |
f2 = open('transcribition_from_es.txt') | |
f3 = open('translate_ru.txt') | |
for line1, line2, line3 in zip(f1, f2, f3): | |
print(line1.strip()) | |
print(line2.strip()) | |
print(line3.strip()) |
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
import string | |
from pprint import pprint | |
import gspread | |
from gspread import Cell, Client, Spreadsheet, Worksheet | |
from gspread.utils import rowcol_to_a1 | |
import requests | |
SPREADSHEET_URL = "https://docs.google.com/spreadsheets/d/.../" |
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
VERSION BUILD=10021450 | |
URL GOTO=https://mail.yandex.ru/?uid=42987#tabs/relevant | |
FRAME F=1 | |
TAG POS=1 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=2 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=3 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=4 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=5 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=6 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: | |
TAG POS=7 TYPE=SPAN ATTR=CLASS:checkbox&&TXT: |
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
plugins { | |
id 'org.hidetake.ssh' version '2.9.0' | |
id 'org.jetbrains.kotlin.jvm' version '1.3.11' | |
id 'org.springframework.boot' version '2.1.2.RELEASE' | |
id 'io.spring.dependency-management' version "1.0.6.RELEASE" | |
} | |
group 'App Group' | |
version '1.0.0' |
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
clone https://github.com/aragozin/optaplanner-bench.git | |
git checkout jmc_workbench_0 | |
mvn package | |
mvn -P ui exec:java | |
Disable some JVM optimizations | |
MAVEN_OPTS=-Xmx512m -XX:+NeverActAsServerClassMachine -XX:CICompilerCount=1 -XX:-TieredCompilation -XX:-DoEscapeAnalysis | |
mvn -P mrbench exec:java |
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
openapi: 3.0.1 | |
info: | |
title: kafka-docflow-correct-out-complect-received | |
version: 1.0 | |
paths: {} | |
components: | |
schemas: |
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
openapi: 3.0.1 | |
info: | |
title: intro.uuid-message-processing | |
description: Service viewer | |
version: 1.0.0 | |
servers: | |
- url: / |
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
alias gd="git diff" | |
alias gc="git clone" | |
alias ga="git add" | |
alias gbd="git branch -D" | |
alias gst="git status" | |
alias gca="git commit -a -m" | |
alias gpt="git push --tags" | |
alias gp="git push" | |
alias gpr="git pull-request" | |
alias grh="git reset --hard" |
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
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required |
NewerOlder