Skip to content

Instantly share code, notes, and snippets.

View vadim8kiselev's full-sized avatar

Vadim Kiselev vadim8kiselev

View GitHub Profile
var SITE = (function() {
var $form = $('#ajax-form'),
$tbody = $('tbody'),
$page = $('.page'),
$input = $('.input'),
$prev = $('.prev'),
$next = $('.next'),
pageSize = 10,
from = 0,
to = 0
//My_Task_A.cpp
#include "My_Task.h"
#include <math.h>
using namespace std;
double function(int x)
{
double result = 0;
<!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>
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))
;******************** (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
#!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()