{:building_id_1c=>"000000001", :flat_within_entrance=>5},
{:building_id_1c=>"000000047", :flat_within_entrance=>26},
{:building_id_1c=>"000000046", :flat_within_entrance=>1},
{:building_id_1c=>"000000048", :flat_within_entrance=>48},
{:building_id_1c=>"000000049", :flat_within_entrance=>30},
{:building_id_1c=>"000000094", :flat_within_entrance=>2},
{:building_id_1c=>"000000093", :flat_within_entrance=>8},
{:building_id_1c=>"000000095", :flat_within_entrance=>6},
{:building_id_1c=>"000000091", :flat_within_entrance=>5},
mysql> SELECT WayFile FROM catalog1c_Realty_ObjectPropertyFile
-> LEFT JOIN catalog1c_Realty_ObjectProperty
-> ON catalog1c_Realty_ObjectPropertyFile.MasterFile = catalog1c_Realty_ObjectProperty.id
-> WHERE catalog1c_Realty_ObjectProperty.id1c = 'О00011555'
-> ;
+---------------------+
| WayFile |
+---------------------+
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
# id Квартиры, Цены | |
{:id_1c=>"О00001130", :prices=>[15000]}, | |
{:id_1c=>"О00004155", :prices=>[16000]}, | |
{:id_1c=>"О00001180", :prices=>[35000]}, | |
{:id_1c=>"О00001238", :prices=>[12000]}, | |
{:id_1c=>"О00000600", :prices=>[30000]}, | |
{:id_1c=>"О00000338", :prices=>[14000]}, | |
{:id_1c=>"О00000888", :prices=>[16000]}, | |
{:id_1c=>"25782", :prices=>[17000]}, | |
{:id_1c=>"25796", :prices=>[20000]}, |
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
Глория: | |
- Глория 4 | |
на улице Советской: | |
Автомобильная 19: | |
Амалия: | |
Артиллерийская: | |
- Артиллерийская, 34 | |
Атлант: | |
Венский квартал: | |
Дом на Борзова: |
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
#!/usr/bin/env ruby | |
require 'colorize' | |
def show_process(errors) | |
if errors.length == 0 | |
print '.'.green | |
else | |
print '.'.red | |
end | |
end |
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
73 => swagger_ui/dist/images/expand.gif | |
445 => swagger_ui/dist/images/favicon-16x16.png | |
455 => swagger_ui/dist/images/logo_small.png | |
69 => swagger_ui/dist/images/collapse.gif | |
9257 => swagger_ui/dist/images/throbber.gif | |
5115 => swagger_ui/dist/images/explorer_icons.png | |
670 => swagger_ui/dist/images/wordnik_api.png | |
1141 => swagger_ui/dist/images/favicon-32x32.png | |
631 => swagger_ui/dist/images/pet_store_api.png | |
11784 => front/client/assets/images/image-logo.png |
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
#!/bin/bash | |
echo " | |
" | |
header="recursive search \"$1\" в \"$PWD\", exclude dirs ./node_modules and ./git" | |
header_row=$(sed 's/./-/g' <<< $header) |
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
// Вспомогательный элемент - рендерит список опций для выбора | |
function InvSelectOptions(props) { | |
let set_of_options = [] | |
set_of_options = props.values.map((value, index) => ( | |
<option key={`${value}_${index}`} selected={value == props.value} value={value}> | |
{value} | |
</option> | |
)) |
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
#!/bin/bash | |
app_name="myapp" | |
if [ -f env ] | |
then | |
env=`cat env` | |
fi | |
echo 'stop sidekiq ...' | |
sidekiq_pids=`ps -ef | grep sidekiq | grep $app_name | awk '{print $2}'` | |
if [[ ! -z "$sidekiq_pids" ]]; then | |
for pid in $sidekiq_pids |