Skip to content

Instantly share code, notes, and snippets.

View ischurov's full-sized avatar

Ilya V. Schurov ischurov

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / celluloid_streamlit_demo.py
Created April 4, 2021 18:04
How to use celluloid with streamlit
import streamlit as st
import matplotlib.pyplot as plt
import numpy as np
import streamlit.components.v1 as components
from celluloid import Camera
# Based on this recipe:
# https://discuss.streamlit.io/t/matplotlib-animation-in-streamlit-through-html-js/5587
with st.echo(code_location='below'):
import scrapy
# запускать из командной строки с помощью команды
# scrapy runspider scrapper.py -O results.csv
class WikipediaSpider(scrapy.Spider):
name = 'wikispider'
start_urls = ['https://ru.wikipedia.org/wiki/Премия_Кнута']
def parse(self, response, depth=0):
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# Work by Ivan Pozdniakov
# See details: http://math-info.hse.ru/s20/g
2 < 3
2 > 3
2 == 3
some_comparison <- 2 != 3
1:10 > 5
1:10 >= 5
@ischurov
ischurov / lecture01.ipynb
Created January 12, 2021 17:35
lecture01.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / SVG animation bug example.ipynb
Last active November 4, 2020 20:33
SVG animation bug example.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / euler.ipynb
Created November 2, 2020 10:10
euler.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ischurov
ischurov / minimalistic-pipes-in-python.ipynb
Created July 8, 2020 21:11
minimalistic-pipes-in-python.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.