https://www.reddit.com/comments/63hth/ask_reddit_which_oss_codebases_out_there_are_so/c02pxbp Online Lua 5.3 source code browser Recommended reading o ...
分类:
其他好文 时间:
2016-05-26 21:55:31
阅读次数:
220
提交地址:http://cojs.tk/cogs/problem/problem.php?pid=558 558. 奇怪的函数 ★☆ 输入文件:xx.in 输出文件:xx.out 简单对比时间限制:1 s 内存限制:32 MB 问题描述 使得x^x达到或超过n位数字的最小正整数x是多少? 输入数据 ...
分类:
其他好文 时间:
2016-05-26 21:46:48
阅读次数:
253
Problem Description
Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user’s result file, t...
分类:
其他好文 时间:
2016-05-26 06:22:46
阅读次数:
292
两个方面 系统性能可扩展 algorithm scale up - 计算密集应用,使用multithread;io密集应用,async io (reactive,for example,js node,c++ ace,java netty mina) scale out - share no sta ...
分类:
其他好文 时间:
2016-05-25 20:42:37
阅读次数:
221
importjava.util.Scanner;publicclassDemo1{ publicstaticvoidmain(String[]args){ Scannerinput=newScanner(System.in); System.out.println("请输入一个数"); intnum=input.nextInt(); Stringstr=""; inti; for(i=2;i<num;i++){ if(num%i==0){ str+=i+"*";//st..
分类:
其他好文 时间:
2016-05-25 15:19:12
阅读次数:
130
一.Nginx + https + 免费SSL证书配置指南 生成证书 $ cd /usr/local/nginx/conf$ openssl genrsa -des3 -out server.key 1024$ openssl req -new -key server.key -out server ...
分类:
Web程序 时间:
2016-05-25 11:17:52
阅读次数:
233
本文转载自:张占岭 原文链接:http://www.cnblogs.com/lori/p/5364213.html 谈谈transactionId和out_trade_no 前一篇微信JSApi支付~坑和如何填坑文章反映不错,所以又写了个后篇,呵呵。 每个第三方在线支付系统中都会有至少两类订单号,其 ...
分类:
微信 时间:
2016-05-25 11:00:27
阅读次数:
629
俗话说的好:技多不压身!这句话真是一点都没错,尤其是在21世纪的今天,作为老师的你,如果不会使用下面所要说的这款神器,恐怕你就像玩游戏一样,要被get out!那到底是什么呢?它就是现在正在全国初高中教学中广泛使用的教学辅助工具——几何画板! 几何画板是一个通用的数学、物理教学环境,提供丰富而方便的 ...
分类:
其他好文 时间:
2016-05-25 10:38:52
阅读次数:
142
一、JSP程序段<%
Stringstr="Helloworld";
out.println(str);
%>在首行和尾行之间可以填写任意的Java代码需要注意的一点:在程序段中定义的变量是局部变量,不同请求之间都会有一份独立的变量定义。其中使用了JSP的一个内置对象:out对象。主要用来向客户端输出各种格..
分类:
Web程序 时间:
2016-05-25 07:06:13
阅读次数:
180
/*Datedate=newDate();//获取当前的系统时间System.out.println("年份:"+date.getYear());*//*Calendarcalendar=Calendar.getInstance();//获取当前的系统时间。System.out.println("年:"+calendar.get(Calendar.YEAR));System.out.println("月:"+(calendar.get(Calendar.MO..
分类:
编程语言 时间:
2016-05-24 22:48:38
阅读次数:
222