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
<h3>Convert UCF to XDC</h3> | |
<?php | |
$handle = isset($_POST['handle']) && !empty($_POST['handle']) ? $_POST['handle'] : null; | |
if ($handle === null) { | |
echo ' | |
<form method="POST"> | |
<textarea name="handle" rows="20" style="width:90%; max-width: 640px"></textarea> | |
<br> |
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
#include <iostream> | |
#include "gmp.h" | |
using namespace std; | |
uint64_t SimpCalc(int Y, int X) { | |
auto f = new uint64_t[X + 1]; | |
uint64_t sum; | |
memset(f, 0, sizeof(uint64_t) * (X + 1)); | |
f[1] = 2; |
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 scrapy | |
import pymysql.cursors | |
import datetime | |
from tutorial.items import CKCItem | |
class CKCSpider(scrapy.Spider): | |
name = "ckc" | |
allowed_domains = ["ckc.zju.edu.cn"] | |
start_urls = [ |
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
var jsoncom = { | |
'company': [{ | |
'companyname': '申通快递', | |
'shortname': '申通', | |
'tel': '95543', | |
'url': 'st', | |
'code': 'shentong', | |
'hasvali': 0, | |
'comurl': 'http://www.sto.cn', | |
'isavailable': '0', |
NewerOlder