码迷,mamicode.com
首页 >  
搜索关键字:ons    ( 21970个结果
Docker 使用 aliyun 镜像加速
登录阿里云获取加速器地址 https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors 创建配置文件 sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { ...
分类:其他好文   时间:2020-07-21 13:48:40    阅读次数:62
Basic Gcd Problem
这题是真GOU了,改bug改到自闭了。 ‘ 同样都是预处理,人家加了个素数筛就能过,我没加就疯狂W,W到自闭,其实知道题简单的一批,只需要预处理一下,从n分解到1需要多少次,然后存到数组里就行了,真的是W吐了 #include <bits/stdc++.h> typedef long long ll ...
分类:其他好文   时间:2020-07-21 09:42:09    阅读次数:73
自定义存储OFFSET
//可以使用ConsumerReBalanceListener来扩展实现自定义存储 //提交方法和获取offset方法得自己实现 ...
分类:其他好文   时间:2020-07-21 01:00:04    阅读次数:71
PaperRead - Fast Software for Box Intersections
PaperRead - Fast Software for Box Intersections Zomorodian, Afra, Edelsbrunner,等. Fast Software for Box Intersections.[J]. International Journal of Co ...
分类:其他好文   时间:2020-07-20 15:40:31    阅读次数:66
网络通讯C#(TCP)简单实现通讯
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; using System.Net;using System.Net.Sock ...
分类:Windows程序   时间:2020-07-20 15:30:04    阅读次数:84
打印99乘法表和菱形
static void Main(string[] args) { //99乘法表 // for (int i = 1; i <= 9; i++) // { // for (int j = 1; j <= i; j++) // { // Console.Write(i + "*" + j + "=" ...
分类:其他好文   时间:2020-07-20 13:21:03    阅读次数:68
flask的ajax数据上传到服务器、用到了flask-restful
#视图层from flask import Flask,url_for,render_templatefrom flask_restful import Api,Resource,reqparse,inputs'''(输入) Flask_restful01 有一个验证、类似于wtf的验证 (输入验证 ...
分类:Web程序   时间:2020-07-20 13:20:03    阅读次数:72
pyautogui 远程连接鼠标无法定位(失效)
在远程的电脑上席间一个批处理文件,添加一下代码, @%windir%\System32\tscon.exe 0 /dest:console@%windir%\System32\tscon.exe 1 /dest:console@%windir%\System32\tscon.exe 2 /dest: ...
分类:其他好文   时间:2020-07-20 13:05:58    阅读次数:55
前端MVC
MVC介绍 MVC的解释千千万,唯一统一的认识就是MCV分别指model、view、controller,至于其它的咱也不知道对错。 MVC是把业务按照M、V、C的功能进行解耦: Model用来管理业务逻辑相关的数据以及对数据的处理方法 View=render(data)用来展示Model里数据的当 ...
分类:Web程序   时间:2020-07-20 10:52:45    阅读次数:76
获取Json数据某节点的值
public static string GetJsonValue(string jsonStr, string key) { string result = string.Empty; if (!string.IsNullOrEmpty(jsonStr)) { key = "\"" + key.T ...
分类:Web程序   时间:2020-07-20 10:46:46    阅读次数:89
21970条   上一页 1 ... 82 83 84 85 86 ... 2197 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!