Skip to content

Instantly share code, notes, and snippets.

View jpyatachkov's full-sized avatar
💭
🏡 Working from home

Kirill Kucherov jpyatachkov

💭
🏡 Working from home
  • BMSTU
  • Moscow, Russia
View GitHub Profile
const makeRequest = (url) => Promise.resolve(`response from ${url}`);
const urls = [
'https://google.com',
'https://yandex.com',
'https://yandex.ru',
'https://ya.ru',
'https://duckduckgo.com',
];
alias docker-terminal="docker exec -it --env COLUMNS=`tput cols` --env LINES=`tput lines`"
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <chrono>
#include <cstdint>
#include <fstream>
#include <iostream>
#include <stdio.h>
#include <vector>
// NBodyProblem.cpp: определяет точку входа для консольного приложения.
//#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <omp.h>
#include <fstream>
/************************************************
*
* АСД задача 1, вариант 2.
*
* Вывести разложение натурального числа n
* на простые множители. Простые множители
* должны быть упорядочены по возрастанию
* и разделены пробелами.
*
* 2 ≤ n ≤ 10e6
class Gettable
{
public:
explicit Gettable(int attribute);
Gettable &setAttribute(int attribute);
int attribute() const;
private:
int _attribute;
#include <iostream>
using namespace std;
int main()
{
char c = 0;
while (true) {
cin >> c;
git filter-branch --prune-empty --index-filter "git rm --cached -f --ignore-unmatch path/to/file" --tag-name-filter cat -- --all
# coding: utf-8
"""
Алгоритм имитации из статьи Тригонометрический -> Уолш для белого шума, сигнала с треугольной ФСПМ и сигнала с
экспоненциальной ФСПМ.
"""
import correlation as cor
import matplotlib.pyplot as plt
import numpy as np
"""
Описание базисных функций и базовых алгоритмов для формирования матриц ядра преобразований
различных спектров
"""
import collections
import itertools
import math
import numpy as np