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 lxml.html | |
import re | |
import sys | |
import urllib.request | |
URL = 'http://pda.baza-voprosov.ru/random/types123/limit1000' | |
def main(): | |
response = urllib.request.urlopen(URL) |
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
{ | |
"build_systems": { | |
"cmake": { | |
"path": ["M:\\dev\\cmake\\bin"], | |
"executable": "M:\\dev\\cmake\\bin\\cmake.exe" | |
} | |
}, | |
"compilers": { | |
"gcc-3.4.5-x86": { |
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
Macro { | |
area="Shell"; | |
key="PgUp"; | |
flags="DisableOutput"; | |
description="Scroll console buffer up if panels hidden"; | |
action = function() | |
if not APanel.Visible and not PPanel.Visible then | |
Keys('CtrlAltPgUp') | |
else | |
Keys('PgUp') |
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
@echo off | |
set wget=wget | |
set sevenzip=7z | |
set fid=file_id.diz | |
set version_pattern="Far Manager v2.0 build [0-9]+ x86" | |
goto main | |
:delete |