码迷,mamicode.com
首页 >  
搜索关键字:add datafile    ( 37307个结果
利用ncurses库实现简单飞机小游戏
#include<stdlib.h> #include<ncurses,h> #define plane '*' char plane(int x,int y); int main() { int x = 5; int y = 10; char ch; initscr(); cbreak(); no ...
分类:其他好文   时间:2021-01-16 11:44:00    阅读次数:0
Linux汇编
源码及汇编码 func.c源码 #include <stdio.h> int func(int a, int b) { a = 100; b = 200; printf("Hello%d\n", a); return 0; } int main(int argc, char *argv[]) { f ...
分类:系统相关   时间:2021-01-15 12:10:52    阅读次数:0
Laravel 队列使用
Laravel 队列使用 1.修改根目录 .env 文件的 **QUEUE_CONNECTION **字段配置为 database Laravel可配置多种队列驱动,包括 "sync", "database", "beanstalkd", "sqs", "redis", "null"(具体参见app ...
分类:其他好文   时间:2021-01-15 11:45:43    阅读次数:0
H5获取手机型号
yarn add mobile-detect -S import MobileDetect from 'mobile-detect' // alert("进来了") var userAgent = navigator.userAgent;//获取userAgent信息 console.log(use ...
分类:移动开发   时间:2021-01-15 11:40:37    阅读次数:0
对model的理解
我认为机器学习中的模型应该用以下第三条解释。 a system of postulates, data, and inferences presented as a mathematical description of an entity or state of affairs 假设、数据和推论的 ...
分类:其他好文   时间:2021-01-14 11:26:56    阅读次数:0
浏览器模拟手机模式操作
代码实现如下: import os from selenium import webdriver #配置浏览器以手机模式启动 chrome_options = webdriver.ChromeOptions() #选择一种存在的模式手机设备(分辨率) chrome_options.add_exper ...
分类:移动开发   时间:2021-01-13 11:26:24    阅读次数:0
selenium反爬虫设置
from selenium import webdriveroptions = webdriver.ChromeOptions()# 设置为开发者模式,防止被各大网站识别出来使用了Selenium# 屏蔽 windows.navigator.webdriveroptions.add_experime ...
分类:其他好文   时间:2021-01-13 11:25:44    阅读次数:0
[Leetcode]1. Two Sum
题目描述 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that eac ...
分类:其他好文   时间:2021-01-13 11:07:09    阅读次数:0
589. N叉树的前序遍历
589. N叉树的前序遍历 //给定一个 N 叉树,返回其节点值的前序遍历。 // // 例如,给定一个 3叉树 : // // // // // // // // 返回其前序遍历: [1,3,5,6,2,4]。 // // // // 说明: 递归法很简单,你可以使用迭代法完成此题吗? Relat ...
分类:其他好文   时间:2021-01-13 11:05:40    阅读次数:0
C#操作Redis类
public class RedisHelper { static RedisClient client; static RedisHelper() { client = new RedisClient("127.0.0.1", 6379); } /// <summary> /// 清空数据库缓存 ...
分类:Windows程序   时间:2021-01-13 10:54:42    阅读次数:0
37307条   上一页 1 ... 52 53 54 55 56 ... 3731 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!