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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
class AsciiArtImage | |
{ | |
static int[][] makeZebraImg(int width, int height) | |
{ |
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 threading | |
import requests as r | |
import re | |
__author__ = 'pahaz' | |
def download(_from, _to, lock, f): | |
for i in range(_from, _to): | |
s = r.session() |
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 os | |
__author__ = 'pahaz' | |
from dulwich.server import Backend, UploadPackHandler, ReceivePackHandler | |
from dulwich.repo import Repo | |
from dulwich import log_utils | |
from dulwich.server import ( | |
TCPGitServer, | |
) |
NewerOlder