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<Windows.h> | |
| #include<iostream> | |
| #include<cstdio> | |
| using namespace std; | |
| SERVICE_STATUS serviceStatus; | |
| SERVICE_STATUS_HANDLE statusHandle; | |
| HANDLE serviceStopEvent; | 
  
    
      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
    
  
  
    
  | // алфавит | |
| private String alphabet = "АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя,.?! "; | |
| private String ceaserEncodeProto(String str, int offset, String alphabet) { | |
| StringBuilder sb = new StringBuilder(); | |
| // шифр цезаря - алгоритм | |
| int len = alphabet.length(); | |
| for (int i = 0; i < str.length(); i++) { | |
| // инедкс буквы | |
| int alph_idx = alphabet.indexOf(str.charAt(i)); | |
| // новая позиция | 
  
    
      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
    
  
  
    
  | var React = require('react'); | |
| var Select = require('react-select'); | |
| var t = require('tcomb-form'); | |
| const Form = t.form.Form; | |
| var Cars = t.enums({ | |
| bmw: 'BMW', | |
| mercedes: 'Mercedes', | |
| peugeot: 'Peugeot', | 
  
    
      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
    
  
  
    
  | var data = { | |
| "address": { | |
| "streetAddress": "21 2nd Street", | |
| "city": "New York" | |
| }, | |
| "phoneNumber": [ | |
| { | |
| "location": "home", | |
| "code": 44 | |
| }, |