URL: http://www.v2ex.com/api/site/stats.json
获取社区统计信息。
| from gcj_context import in_out, test_in_out | |
| def solve_test_case(data): | |
| stuff = next(data) | |
| return "my_answer_from_stuff" | |
| def main(): | |
| #with test_in_out() as (in_file, out_file): |
| from gcj_context import in_out, test_in_out | |
| def solve_test_case(data): | |
| stuff = next(data) | |
| return "my_answer_from_stuff" | |
| def main(): | |
| #with test_in_out() as (in_file, out_file): |
URL: http://www.v2ex.com/api/site/stats.json
获取社区统计信息。
| #! /usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| __docformat__ = 'reStructuredText' | |
| import sys | |
| from bs4 import BeautifulSoup, NavigableString, Tag | |
| from PyQt5.Qt import ( | |
| QApplication, QMainWindow, QMenuBar, QMenu, QTreeWidget, QTreeWidgetItem) | |
| // | |
| // UIView+CommonDrawing.h | |
| // Contacts Plus | |
| // | |
| // Created by Tony Arnold on 4/08/10. | |
| // Copyright 2010 The CocoaBots. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |
| #线上 | |
| #获取代码 | |
| git clone ... | |
| #获取更新 | |
| git pull | |
| #如果在线上修改了代码,要推回 | |
| git push | |
| #线上代码和git版本库冲突 | |
| #Your local changes to ... would be overwritten by merge | |
| git fetch --all |