I hereby claim:
- I am kiurchv on github.
- I am kiurchv (https://keybase.io/kiurchv) on keybase.
- I have a public key ASBMnMxAlwkcV7_C0Srb3vtrvS4admr2HjkSKvQLEpwbowo
To claim this, I am signing this object:
| { | |
| "basics": { | |
| "name": "Myroslav Kiurchev", | |
| "label": "", | |
| "image": "https://github.com/kiurchv.png", | |
| "email": "kiurchv@gmail.com", | |
| "summary": "I am a polyglot software engineer, with a passion for solving complex problems and a deep grasp of the mechanics behind them.\n\nThroughout my career, I have worked across various domains, taking on roles ranging from a regular engineer to a team's technical lead.\n\nI have experience with many programming languages and technologies, but I am always open to new things. My commercial experience is mainly in the web-related field, but I also love to tinker with low-level tasks – either in my day-to-day tasks or in the myriad of my pet projects.\n\nIt's crucial for me to address real-world challenges, especially those that bring tangible value to society or the industry. For me, every detail of the work process matters, and I prefer a comprehensive approach to problem-solving, taking responsibility for every step - from analyzing the problem to deliver |
| const landingMachine = Machine({ | |
| id: "Landing", | |
| initial: "Welcome", | |
| // TODO: Describe context | |
| context: {}, | |
| states: { | |
| Welcome: { | |
| on: { | |
| FORWARD: "ProductInfo" | |
| } |
| Feature: Get specific capitation contract | |
| Scenario: Get toCreateRequestContent field | |
| Given there are 2 legal entities exist | |
| And there are 2 employees are associated with legal entities accordingly | |
| And a capitation contract with the following fields are associated with first legal entity as nhsLegalEntity and second legal entity as contractorLegalEntity and first employee as nhsSigner and second employee as contractorOwner: | |
| | field | value | | |
| | databaseId | "8b9482fe-6cb6-4855-a923-7ccd4d9b7aef" |
| Scenario: Get toCreateRequestContent field | |
| Given capitation contract with the following fields exist: | |
| | field | value | | |
| | databaseId | "8b9482fe-6cb6-4855-a923-7ccd4d9b7aef" | | |
| | contractNumber | "0000-9EAX-XT7X-3115" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| cat > delimiter.rtf <<EOF | |
| {\\rtf1\\ansi\\ansicpg1251\\cocoartf1344\\cocoasubrtf360 | |
| {\\fonttbl\\f0\\fswiss\\fcharset0 Helvetica;} | |
| {\\colortbl;\\red255\\green255\\blue255;} | |
| \\paperw11900\\paperh16840\\margl1440\\margr1440\\vieww10800\\viewh8400\\viewkind0 | |
| \\pard\\tx566\\tx1133\\tx1700\\tx2267\\tx2834\\tx3401\\tx3968\\tx4535\\tx5102\\tx5669\\tx6236\\tx6803\\pardirnatural | |
| \\f0\\fs24 \\cf0 \\ | |
| } |
| class Patronymic | |
| EXCEPTIONS = { | |
| "Микола" => ["Миколайович", "Миколаївна"], | |
| "Григорій" => ["Григорович", "Григорівна"], | |
| "Хома" => ["Хомич", "Хомівна"], | |
| "Ілля" => ["Ілліч", "Іллівна"], | |
| "Яків" => ["Якович", "Яківна"], | |
| "Сава" => ["Савович", "Савівна"] | |
| } |
| ul { | |
| list-style: none; | |
| } | |
| ul li { | |
| display: inline; | |
| } | |
| ul li:before { | |
| content: '\2606'; | |
| } | |
| ul[data-rating="1"] li:nth-child(1):before { |
| <?php | |
| /** | |
| * ORM implementation. | |
| * | |
| * BaseModel realizes all logic for managing database connections and | |
| * work with entities which stored in database as plain PHP objects. | |
| * | |
| * This implementation supports object relations: | |
| * | |
| * * one to one |
| Number::pluralize = (f1, f2, f3) -> | |
| if this % 10 == 1 && this % 100 != 11 | |
| "#{this} #{f1}" | |
| else if this % 10 >= 2 && this % 10 <= 4 && (this % 100 < 10 || this % 100 >= 20) | |
| "#{this} #{f2}" | |
| else | |
| "#{this} #{f3}" |