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
# http://api.yandex.com/maps/doc/geocoder/desc/concepts/About.xml | |
import argparse | |
import requests | |
from collections import OrderedDict | |
from pprint import pprint | |
YANDEX_GEOCODER_URL = 'http://geocode-maps.yandex.ru/1.x/' | |
FORMAT_CHOICES = ('json', 'xml') |
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
package alt; | |
import static java.net.HttpURLConnection.*; // http status codes | |
import java.io.*; | |
import java.net.InetSocketAddress; | |
import java.text.SimpleDateFormat; | |
import java.util.*; | |
import java.util.concurrent.Executors; | |
import java.util.logging.Logger; |
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 java.util.LinkedList; | |
public class ParenCheck { | |
static int OPENING = 1, CLOSING = -1; | |
static int PAREN = 0, BRACKET = 1, BRACE = 2, PAIRING = 3; | |
static String[] desc = { "()", "[]", "{}", "Pairing" }; | |
static int[] check(char[] s) { | |
int[] stat = new int[4]; | |
int sym, type; |
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 json | |
import os.path | |
import re | |
import sys | |
try: | |
# python 2 |
NewerOlder