摘要: 代码: <!Doctype html> <html lang="zh_cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>五子棋</title> <meta name="Ke 阅读全文
posted @ 2024-09-04 15:55 河北大学-徐小波 阅读(261) 评论(0) 推荐(0)
摘要: 代码: <!Doctype html> <html lang="zh_cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>贪吃蛇</title> <meta name="Ke 阅读全文
posted @ 2024-09-03 10:20 河北大学-徐小波 阅读(260) 评论(0) 推荐(0)
摘要: 代码: <!Doctype html> <html lang="zh_cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Canvas</title> <meta name= 阅读全文
posted @ 2024-09-03 10:18 河北大学-徐小波 阅读(250) 评论(0) 推荐(0)
摘要: 代码: const fastify = require("fastify")(); const md5 = require('md5'); const querystring = require('querystring'); //npm install fastify var secretKey 阅读全文
posted @ 2024-09-02 14:27 河北大学-徐小波 阅读(334) 评论(0) 推荐(0)
摘要: 代码: var restify=require('restify') var server=restify.createServer() const md5 = require('md5'); const querystring = require('querystring'); //npm ins 阅读全文
posted @ 2024-09-02 14:26 河北大学-徐小波 阅读(245) 评论(0) 推荐(0)
摘要: 代码: const Hapi = require('hapi'); const md5 = require('md5'); const server = new Hapi.Server({ port: 1101 }); //npm install hapi var secretKey = 'saac 阅读全文
posted @ 2024-09-02 14:25 河北大学-徐小波 阅读(248) 评论(0) 推荐(0)
摘要: 代码: const Koa = require('koa'); const Router = require('koa-router'); const md5 = require('md5'); //npm install koa koa-router const app = new Koa(); 阅读全文
posted @ 2024-09-02 14:24 河北大学-徐小波 阅读(252) 评论(0) 推荐(0)
摘要: 代码: const express = require('express'); const app = express(); const md5 = require('md5'); //npm install express var secretKey = 'saacac3423@21212'; v 阅读全文
posted @ 2024-09-02 14:23 河北大学-徐小波 阅读(253) 评论(0) 推荐(0)
摘要: 代码: #! D:/software/Strawberry/perl/bin/perl.exe BEGIN { push (@INC,'D:/workspace/studys/study_bbs'); } use strict; use warnings; use utf8; use Limper; 阅读全文
posted @ 2024-09-02 14:20 河北大学-徐小波 阅读(264) 评论(0) 推荐(0)
摘要: 代码: #! D:/software/Strawberry/perl/bin/perl.exe BEGIN { push (@INC,'D:/workspace/studys/study_bbs'); } use utf8; use Dancer; use Dancer::Serializer::J 阅读全文
posted @ 2024-09-02 14:19 河北大学-徐小波 阅读(250) 评论(0) 推荐(0)
摘要: 代码: #! D:/software/Strawberry/perl/bin/perl.exe BEGIN { push (@INC,'D:/workspace/studys/study_bbs'); } use Mojolicious::Lite-signatures; use utf8; use 阅读全文
posted @ 2024-09-02 14:18 河北大学-徐小波 阅读(262) 评论(0) 推荐(0)
摘要: 代码: package main /** go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn go mod init gos go mod tidy go mod vendor */ import ( "crypto/md5" 阅读全文
posted @ 2024-09-02 14:15 河北大学-徐小波 阅读(273) 评论(0) 推荐(0)
摘要: 代码: package main /** go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn go mod init gos go mod tidy go mod vendor */ import ( "crypto/md5" 阅读全文
posted @ 2024-09-02 14:14 河北大学-徐小波 阅读(263) 评论(0) 推荐(0)
摘要: 代码: package main /** go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn go mod init gos go mod tidy go mod vendor */ import ( "crypto/md5" 阅读全文
posted @ 2024-09-02 14:13 河北大学-徐小波 阅读(257) 评论(0) 推荐(0)
摘要: 代码: package main /** go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn go mod init gos go mod tidy go mod vendor */ import ( "crypto/md5" 阅读全文
posted @ 2024-09-02 14:12 河北大学-徐小波 阅读(271) 评论(0) 推荐(0)
摘要: 代码: package main /** go env -w GO111MODULE=on go env -w GOPROXY=https://goproxy.cn go mod init gos go mod tidy go mod vendor */ import ( "crypto/md5" 阅读全文
posted @ 2024-09-02 14:11 河北大学-徐小波 阅读(255) 评论(0) 推荐(0)
摘要: 代码: import web import os.path import MySQLdb import json import hashlib import random import math import os from datetime import datetime class DateEn 阅读全文
posted @ 2024-09-02 14:08 河北大学-徐小波 阅读(256) 评论(0) 推荐(0)
摘要: 代码: from wsgiref.simple_server import make_server from pyramid.config import Configurator from pyramid.view import view_config from pyramid.response i 阅读全文
posted @ 2024-09-02 14:07 河北大学-徐小波 阅读(259) 评论(0) 推荐(0)
摘要: 代码: from bottle import route, run, template from bottle import Bottle, request, response import os.path import MySQLdb import json import hashlib impo 阅读全文
posted @ 2024-09-02 14:06 河北大学-徐小波 阅读(273) 评论(0) 推荐(0)
摘要: 代码: from fastapi import FastAPI, Response, Cookie, Depends from fastapi.responses import JSONResponse from fastapi.responses import HTMLResponse impor 阅读全文
posted @ 2024-09-02 14:05 河北大学-徐小波 阅读(305) 评论(0) 推荐(0)
摘要: 代码: from flask import Flask, make_response, request import os.path import MySQLdb import json import hashlib import random import math import os from 阅读全文
posted @ 2024-09-02 14:04 河北大学-徐小波 阅读(291) 评论(0) 推荐(0)
摘要: 代码: import os.path import tornado.httpserver import tornado.web import tornado.options import tornado.ioloop from tornado.options import define, optio 阅读全文
posted @ 2024-09-02 14:02 河北大学-徐小波 阅读(265) 评论(0) 推荐(0)
摘要: 代码: import cherrypy import MySQLdb import json import hashlib import random import math import os from datetime import datetime class DateEncoder(json 阅读全文
posted @ 2024-09-02 14:01 河北大学-徐小波 阅读(290) 评论(0) 推荐(0)
摘要: MyRect.java package Main; public class MyRect { public int x = 0; public int y = 0; public MyRgb rgb = new MyRgb(); long createtime = 0; public MyRect 阅读全文
posted @ 2024-09-02 13:41 河北大学-徐小波 阅读(273) 评论(0) 推荐(0)
摘要: MyRect.java package Main; public class MyRect { public int x = 0; public int y = 0; public MyRgb rgb = new MyRgb(); long createtime = 0; public MyRect 阅读全文
posted @ 2024-09-02 13:38 河北大学-徐小波 阅读(265) 评论(0) 推荐(0)
摘要: #coding=utf-8 import os,sys,re,time import pygame import random from win32api import GetSystemMetrics from tkinter import messagebox pygame.init() pyg 阅读全文
posted @ 2024-08-29 14:46 河北大学-徐小波 阅读(284) 评论(0) 推荐(0)
摘要: #coding=utf-8 import os,sys,re,time import pygame import random from win32api import GetSystemMetrics from tkinter import messagebox pygame.init() pyg 阅读全文
posted @ 2024-08-28 10:31 河北大学-徐小波 阅读(273) 评论(0) 推荐(0)
摘要: 代码: #coding=utf-8 import os,sys,re,time import pygame import random from win32api import GetSystemMetrics import copy pygame.init() pygame.display.set 阅读全文
posted @ 2024-08-27 16:05 河北大学-徐小波 阅读(251) 评论(0) 推荐(0)
摘要: 代码: #coding=utf-8 import os,sys,re,time import pygame import random from win32api import GetSystemMetrics pygame.init() pygame.display.set_caption("五子 阅读全文
posted @ 2024-08-26 14:00 河北大学-徐小波 阅读(267) 评论(0) 推荐(0)
摘要: 代码: #coding=utf-8 import os,sys,re,time,math import pygame import random from win32api import GetSystemMetrics from math import pi pygame.init() pygam 阅读全文
posted @ 2024-08-23 13:58 河北大学-徐小波 阅读(263) 评论(0) 推荐(0)