This file contains 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
curl -s 'http://budget.gov.ru/opendata/list.json' \ | |
| jq '.meta[]|.link' -r \ | |
| xargs curl -s \ | |
| jq '.data[] | .source' -r \ | |
| cut -d' ' -f1 \ | |
| uniq \ | |
| grep -E '.*\.csv$' \ | |
| while read url ; do | |
echo -n "$url:\t" | |
curl -s "$url" \ |
This file contains 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
# coding: utf-8 | |
# Программа не учитвает ситуации, когда внутри слова есть тэг (Log<b>Jam</b>) | |
# ибо не охота дальше усложнять. | |
# PEP8 — федеральный закон, Python Zen — конституция, где readability does count | |
import argparse | |
import webbrowser | |
import multiprocessing | |
import re | |
import sys | |
import SocketServer |
This file contains 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
<link rel="import" href="../paper-toast/paper-toast.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
This file contains 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
tizhbulatov% VERBOSE=1 make | |
/tmp/cmake-Sro7/cmake-2.8.12.1/Bootstrap.cmk/cmake -H/tmp/cmake-Sro7/cmake-2.8.12.1 -B/tmp/cmake-Sro7/cmake-2.8.12.1 --check-build-system CMakeFiles/Makefile.cmake 0 | |
/tmp/cmake-Sro7/cmake-2.8.12.1/Bootstrap.cmk/cmake -E cmake_progress_start /tmp/cmake-Sro7/cmake-2.8.12.1/CMakeFiles /tmp/cmake-Sro7/cmake-2.8.12.1/CMakeFiles/progress.marks | |
/usr/bin/make -f CMakeFiles/Makefile2 all | |
/usr/bin/make -f Utilities/KWIML/test/CMakeFiles/cmIML_test.dir/build.make Utilities/KWIML/test/CMakeFiles/cmIML_test.dir/depend | |
/usr/bin/make -f Source/kwsys/CMakeFiles/cmsys.dir/build.make Source/kwsys/CMakeFiles/cmsys.dir/depend | |
cd /tmp/cmake-Sro7/cmake-2.8.12.1 && /tmp/cmake-Sro7/cmake-2.8.12.1/Bootstrap.cmk/cmake -E cmake_depends "Unix Makefiles" /tmp/cmake-Sro7/cmake-2.8.12.1 /tmp/cmake-Sro7/cmake-2.8.12.1/Utilities/KWIML/test /tmp/cmake-Sro7/cmake-2.8.12.1 /tmp/cmake-Sro7/cmake-2.8.12.1/Utilities/KWIML/test /tmp/cmake-Sro7/cmake-2.8.12.1/Utilities/KWIML/test/CMakeFiles/cmIML_test.dir/DependInfo.cmake |