Skip to content

Instantly share code, notes, and snippets.

View vadim8kiselev's full-sized avatar

Vadim Kiselev vadim8kiselev

View GitHub Profile
#!flask/bin/python
from flask import Flask, request, send_file
from PIL import Image, ImageDraw
import os
import numpy
import requests
import face_recognition
requests.packages.urllib3.disable_warnings()
;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f051.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 23-October-2013
;* Description : STM32F051 devices vector table for MDK-ARM toolchain.
;* This module performs:
;* - Set the initial SP
;* - Set the initial PC == Reset_Handler
;* - Set the vector table entries with the exceptions ISR address
import math
import sys
from graphics import *
win = GraphWin('Kiselev: 1.1#2', 300, 300)
#win.yUp() # make right side up coordinates!
pt = Point(100, 50)
pt.draw(win)
line = Line(pt, Point(150, 100))
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Task 2</title>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.0/themes/ui-lightness/jquery-ui.css" />
<link rel='stylesheet prefetch' href='https://netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
//My_Task_A.cpp
#include "My_Task.h"
#include <math.h>
using namespace std;
double function(int x)
{
double result = 0;
var SITE = (function() {
var $form = $('#ajax-form'),
$tbody = $('tbody'),
$page = $('.page'),
$input = $('.input'),
$prev = $('.prev'),
$next = $('.next'),
pageSize = 10,
from = 0,
to = 0
package vadim;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
/**
* @author Vadim Kiselev
* @version 1.0
* @since 04/07/2017
*/
public class Main {
public static void main(String[] args) {
}
}
package com.company;
public class Main {
private static final int V = 100;
private static final double begin = 0;
private static final double end = V;
private static final int countPartitions = 15;
private static final double part = (end - begin) / (countPartitions - 1);
package main.graph.command.impl;
import main.graph.Graph;
import main.graph.command.Executor;
import main.graph.vertex.unweight.Vertex;
import java.util.*;
public class FindMaxStreamByFordFulkersonAlgorithm implements Executor {