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
boolFalse#bc799737 = Bool; | |
boolTrue#997275b5 = Bool; | |
true#3fedd339 = True; | |
vector#1cb5c415 {t:Type} # [ t ] = Vector t; | |
error#c4b9f9bb code:int text:string = Error; | |
null#56730bcc = Null; |
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
# Fill/change env vars, run docker compose up, setup reverse proxy; complete installation process on first site visit | |
version: "3" | |
networks: | |
gitea: | |
external: false | |
volumes: | |
gitea: | |
driver: local |
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
# Was written in Python 3.11 | |
# 1 dep: pip install aiohttp | |
# required env vars: GITHUB_PAT, GITHUB_USERNAME | |
# due to strict API limits it uses simple cache file to save state | |
# probably you need many runs of the script to fetch all emails | |
import asyncio | |
import os | |
import re | |
from typing import Optional, Coroutine, Tuple |
This file has been truncated, but you can view the full file.
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
{ | |
"v": "5.9.6", | |
"fr": 15, | |
"ip": 0, | |
"op": 161, | |
"w": 343, | |
"h": 72, | |
"nm": "knopka_sborka2", | |
"ddd": 0, | |
"assets": [ |
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
https://t.me/tgcrawl |
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
# before run this script install required packages via command below | |
# pip3 install -U pytgcalls==3.0.0.dev24 | |
import asyncio | |
import pytgcalls | |
import telethon | |
# EDIT THIS | |
# more info about API keys here https://docs.telethon.dev/en/latest/basic/signing-in.html |
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
{ | |
"constructors": [ | |
{ | |
"id": "481674261", | |
"predicate": "vector", | |
"params": [], | |
"type": "Vector t" | |
}, | |
{ | |
"id": "85337187", |
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
program merge_sort; | |
const | |
n = 10; | |
var | |
mas: array [1..n] of integer; | |
i: integer; | |
procedure MergeSort(a, c: integer); |
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
using System; | |
namespace cSharp { | |
class Program { | |
static int partition(int[] A, int start, int end) { | |
int pivot = A[(start + end) / 2]; | |
int i = start; | |
int j = end; | |
while (i <= j) { |
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
program _qSort; | |
const | |
n = 10-1; | |
var | |
A: array[0..n] of integer; | |
i: integer; | |
procedure print(); |
NewerOlder