aspe:keyoxide.org:6Y7KI4OG4YF5X3X5ASKPTXTRJ4
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
{} |
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
{ | |
"1": { | |
"answer": 4, | |
"body": "С какими радиостанциями может проводить радиосвязи любительская станция, если она НЕ участвует в проведении аварийно-спасательных работ?", | |
"choices": [ | |
"С любительскими радиостанциями и радиостанциями гражданского «Си - Би» диапазона (27 МГц)", | |
"С любительскими радиостанциями и радиостанциями стандартов LPD (433 МГц, 10мВт) и PMR (446 МГц, 0,5 Вт)", | |
"С любительскими радиостанциями, радиостанциями гражданского «Си - Би» диапазона (27 МГц), а также с радиостанциями стандартов LPD (433 МГц, 10мВт) и PMR (446 МГц, 0,5 Вт)", | |
"Только с любительскими радиостанциями" | |
], |
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
{ | |
"almalinux8": { | |
"openssl": "8004509db49ab7da57561d5d70d7499c3a0382a8" | |
}, | |
"almalinux8.*": "ref-rhel8", | |
"amazon-linux-ami.*": { | |
"libc-2.17.so": "8bdbe5043577fc2ea218fafd7edf175d219698fb", | |
"libssl.so.1.0.2k": "183215ea0da6ee9c80a1e3a3319ec2905d1bf6e0", | |
"libssl.so.10": "183215ea0da6ee9c80a1e3a3319ec2905d1bf6e0", | |
"libssl3.so": "7693fec8196f8adb894c80edf5ac0822128fc7bf" |
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
{} |
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
{ | |
"almalinux8": { | |
"ANSI_X3.110.so": "4782a4b4f1a622fbe46736b7d1945f27e23217c7", | |
"ARMSCII-8.so": "3fd29894394acf66cc0ea1c648e497b20961c92a", | |
"ASMO_449.so": "0d7a8c6c34878b5e6218fc2df84da2d358361a03", | |
"BIG5.so": "a60a92d213d535f8b1a3acdc378d8ae7cdc7d9ad", | |
"BIG5HKSCS.so": "22bd66be36b36912e874fed01f6643dbf8d0e392", | |
"BRF.so": "cad57fdc720fc86d3d80302b1c050c5a8fb43de0", | |
"CP10007.so": "d7a7380d0355d81f04f12d550a7b2f85cee50538", | |
"CP1125.so": "04e8169a8e8617dd28f4a11dfd364cfe403f79e0", |
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
to | |
se | |
je | |
a | |
že | |
na | |
jsem | |
co | |
v | |
si |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
import os | |
import requests | |
import pickle | |
from lxml.html import document_fromstring |
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
def is_request_valid(request): | |
is_token_valid = request.form['token'] == os.environ['SLACK_VERIFICATION_TOKEN'] | |
is_team_id_valid = request.form['team_id'] == os.environ['SLACK_TEAM_ID'] | |
slack_signing_secret = os.environ['SLACK_SIGNING_SECRET'] | |
timestamp = request.headers['X-Slack-Request-Timestamp'].encode() | |
is_timestamp_valid = abs(time.time() - int(timestamp)) > 60 * 5 | |
sig_basestring = 'v0:' + timestamp + ':' + request.get_data() |
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
#!/usr/bin/env python | |
import http.server | |
import socketserver | |
import boto3 | |
from botocore.client import Config | |
class Handler(http.server.SimpleHTTPRequestHandler): |
NewerOlder