- Бесов О.В. Лекции по математическому анализу. Часть 1
- Беклемишев Д.В. Аналитическая геометрия и линейная алгебра
- Иродов И.Е. Основные законы механики
- Кириченко Н.А. Термодинамика, статистическая и молекулярная физика
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
Add-Type -AssemblyName System.Windows.Forms | |
while ($true) | |
{ | |
$Pos = [System.Windows.Forms.Cursor]::Position | |
$x = $pos.X + 1 | |
$y = $pos.Y + 1 | |
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y) | |
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($Pos.X, $Pos.Y) | |
Start-Sleep -Seconds 10 |
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
Add-Type -AssemblyName System.Windows.Forms | |
while ($true) | |
{ | |
$Pos = [System.Windows.Forms.Cursor]::Position | |
$x = ($pos.X % 500) + 1 | |
$y = ($pos.Y % 500) + 1 | |
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y) | |
Start-Sleep -Seconds 10 | |
} |
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
import numpy as np | |
import matplotlib.pyplot as plt | |
plt.rcParams['figure.facecolor'] = '1.0' | |
plt.rcParams['figure.constrained_layout.use'] = True | |
x = np.linspace(0, 100) | |
y = x**3 | |
res = np.polyfit(x, y, deg=5) | |
f = np.poly1d(res) |
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
// Processing code by Etienne JACOB | |
// motion blur template by beesandbombs | |
int[][] result; | |
float t, c; | |
float ease(float p) { | |
return 3*p*p - 2*p*p*p; | |
} |
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 | |
clang++ -fsanitize=address -fsanitize=undefined -g -std=c++17 "$1" -o "${1%.*}" |
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
import argparse | |
import shutil | |
import os.path | |
import sys | |
import requests | |
from urllib3.util.retry import Retry | |
from requests.adapters import HTTPAdapter | |
from selenium import webdriver |
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
import Control.Monad | |
import Data.Function | |
data Combination = Combination Int Int Int Int | |
deriving Show | |
f (Combination x1 x2 x3 x4) = x1 + x2 + x3 - x4 >= 5 | |
comb :: Maybe [Combination] | |
comb = sequence $ toComb <$> replicateM 4 [1..6] where |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#include <limits> | |
#include <cmath> | |
#include <vector> | |
#include <algorithm> | |
#include <cstdint> | |
#if __cplusplus >= 201703 | |
#define IF_CONSTEXPR if constexpr | |
#else | |
#define IF_CONSTEXPR if |
NewerOlder