Skip to content

Instantly share code, notes, and snippets.

View astynax's full-sized avatar

Aleksei Pirogov astynax

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.
@astynax
astynax / regex-hw.ipynb
Last active December 21, 2015 22:19
Парсер ini-файлов - решение д/з для м/к по RegEx в Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / zipper.ipynb
Last active December 21, 2015 20:49
zipper на Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / xml.ipynb
Created August 20, 2013 13:14
XML batteries
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / regex.ipynb
Created August 19, 2013 05:45
Notebook для м/к по регуляркам
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / metaprog_py.ipynb
Created August 18, 2013 10:11
Notebook для м/к по метапрограммированию
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / spiral.ipynb
Created August 9, 2013 07:03
"Спираль" на Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / func-iter-tools-hw.ipynb
Created August 6, 2013 09:30
Решение домашнего задания по м/к о (func|iter)tools
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / func-iter-tools.ipynb
Created July 31, 2013 07:08
Python-библиотеки functools, itertools, more_itertools
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@astynax
astynax / clojure-data-examples.clj
Last active December 19, 2015 12:39
Примеры работы со структурами данных в Clojure
;; некая "сложная" структура данных для примера
(def shapes
[{:shape {:type :line
:path [{:x 10 :y 10}
{:x 100 :y 100}]}
:pen {:color "FF00FF"
:style :solid}}
{:shape {:type :dot
:path [{:x 200 :y 200}]}