This file contains 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 os | |
from glob import glob | |
import re | |
import numpy as np | |
import cv2 | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
# get properly sorted images | |
data_path = r'E:\bg-sugar' |
This file contains 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 python | |
from exchangelib import DELEGATE, IMPERSONATION, Account, Credentials, ServiceAccount, \ | |
EWSDateTime, EWSTimeZone, Configuration, NTLM, CalendarItem, Message, \ | |
Mailbox, Attendee, Q, ExtendedProperty, FileAttachment, ItemAttachment, \ | |
HTMLBody, Build, Version | |
import os | |
import datetime | |
import time |
This file contains 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
<Grid HorizontalAlignment="Right"> | |
<Grid.ColumnDefinitions> | |
<ColumnDefinition Width="Auto"></ColumnDefinition> | |
<ColumnDefinition Width="Auto"></ColumnDefinition> | |
<ColumnDefinition Width="Auto"></ColumnDefinition> | |
</Grid.ColumnDefinitions> | |
<Button Margin="0,0,10,0" Click="Button_Click" Grid.Column="0" HorizontalAlignment="Stretch">Редагувати</Button> | |
<Button Margin="0,0,10,0" Click="Button_Click_1" Grid.Column="1" HorizontalAlignment="Stretch">Додати</Button> | |
<Button Margin="0,0,10,0" Click="Button_Click_2" Grid.Column="2" HorizontalAlignment="Stretch">Видалити</Button> | |
</Grid> |
This file contains 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
<Window x:Class="SQLEditor.MainWindow" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
Title="MainWindow" Height="350" Width="525"> | |
<TabControl Name="tab" SelectionChanged="TabControl_SelectionChanged"> | |
<TabItem Header="Філії"> | |
<DockPanel LastChildFill="True"> | |
<StackPanel DockPanel.Dock="Bottom" VerticalAlignment="Bottom"> | |
<StackPanel Orientation="Horizontal" Margin="5" > |