- A one, two, a one two three fourHalf a bee, philosophically,must, ipso facto, half not be.But half the bee has got to be,vis a vis its entity. D'you see?But can a bee be said to beor not to be an entire bee,
This file contains 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 <QCoreApplication> | |
#include "highgui.h" | |
#include "cv.h" | |
#include <vector> | |
#include <stdio.h> | |
#include <iostream> | |
using namespace std ; | |
using namespace cv ; | |
vector< vector<int> > f1 , f2 ; //直方图 |
This file contains 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
host url: http://3.lcusersystem.sinaapp.com/ |
This file contains 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 exam; | |
import java.util.Scanner; | |
import java.util.concurrent.*; | |
import java.lang.Thread; | |
class CryptionThread extends Thread { | |
public long srcnum; | |
CryptionThread(long scrnum) | |
{ | |
srcnum = scrnum; |
This file contains 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
/* 声明一个rmi接口 | |
package exam; | |
import java.rmi.*; | |
public interface primeinterface extends Remote { | |
public boolean isPrime(int num) throws RemoteException; | |
} | |
/* 实现这个接口的RMI对象 |
This file contains 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
importjava.net.Socket; | |
importjava.io.IOException; | |
importjava.io.InputStreamReader; | |
importjava.io.BufferedReader; | |
importjava.io.PrintWriter; | |
publicclassClientTest{ | |
privateSocketsocket; | |
BufferedReaderin; | |
PrintWriterout; | |
publicClientTest(){ |
This file contains 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 sys | |
import gevent | |
from gevent.monkey import patch_all; patch_all() | |
from gevent import server, event, socket | |
from multiprocessing import Process, current_process, cpu_count | |
""" | |
Simple multiprocess StreamServer that proxies messages between clients. | |
Avoids using a multiprocessing.Event since it blocks on a semaphore. |
This file contains 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 <ctime> | |
extern "C" | |
{ | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <signal.h> |
This file contains 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
{ | |
"ClanID": 120260760485, | |
"Tag": "#P0VCVURL", | |
"Name": "E7VMK7UK", | |
"Description": "AS16-NOVEMBER-08 RESISTANCE", | |
"Emblem": 1644183893, | |
"Type": "InveteOnly", | |
"Trophies": 13210, | |
"TrophiesNecessary": 0, | |
"WarsWin": 21, |
This file contains 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> | |
using namespace std; | |
class Base | |
{ | |
public: | |
int Jiao() | |
{ | |
return JiaoImpl(); | |
} |
OlderNewer