https://icons.duckduckgo.com/ip2/{hostname}.ico
https://www.google.com/s2/favicons?domain_url={hostname}
https://favicon.yandex.net/favicon/{hostname1}/{hostname2}/
https://f1.allesedv.com/16/{hostname}
http://grab-favicons.herokuapp.com/api/v1/grab-favicons/?url={hostname}
https://besticon-demo.herokuapp.com/icon?url={hostname}&size=80..120..200
http://favicongrabber.com/service-api-reference
По мотивам https://vk.com/id232967147 / https://vk.com/mgnoveniag
- Создаём пост с любой картинкой.
- Ждём полгода/год. Открываем газету, выбираем важные события современности.
- Редактируем у себя на комплюктере исходную картинку, описывая важные события современности.
- Открываем ту старую фотографию из поста ВКонтакте, нажимаем "Редактировать".
- Открываем инструменты разработчика в своём браузере и узнаём значение переменной
cur.filterSaveOptions.upload_url
. - Пишем программу на HTML. Создаём файлик upload.html:
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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
#!/bin/bash | |
# Install build dependencies | |
yum install -y gcc libpng libjpeg libpng-devel libjpeg-devel ghostscript libtiff libtiff-devel freetype freetype-devel | |
# Get GraphicsMagick source | |
wget ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.9.tar.gz | |
tar zxvf GraphicsMagick-1.3.9.tar.gz | |
# Configure and compile |
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 argparse | |
import copy | |
import math | |
import pickle | |
import random | |
from itertools import combinations | |