码迷,mamicode.com
首页 >  
搜索关键字:in section __text    ( 55715个结果
Solution -「CF 392C」Yet Another Number Sequence
Description Link. 求 \(\sum_{i=1}^{n}\text{fibonacci}_{i}\times i^{k}=\sum_{i=1}^{n}(F_{i-1}+\text{fibonacci}_{i-2})\times i^{k}\),\(1\le n\le10^{17},1 ...
分类:其他好文   时间:2021-04-06 14:07:28    阅读次数:0
HTML总结篇
一.HTML基本结构标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <me ...
分类:Web程序   时间:2021-04-05 12:44:40    阅读次数:0
django基础~重写登录验证函数
1 重写 authenticate 函数 目的是取代自带的登录校验方式 from django.contrib.auth.backends import ModelBackend, UserModel from . import models class CustomBackend(ModelBac ...
分类:其他好文   时间:2021-04-05 12:37:18    阅读次数:0
使用 Sublime Text 3 编辑 Markdown、浏览器实时预览
Sublime Text 3 https://www.sublimetext.com/ Preferences --> Settings File Path: C:\Users\wuyong\AppData\Roaming\Sublime Text 3\Packages\User\Preferenc ...
分类:其他好文   时间:2021-04-05 12:36:42    阅读次数:0
MapReduce概述
1.1 MapReduce定义 MapReduce 是一个分布式运算程序的编程框架,是用户开发“基于 Hadoop 的数据分析 应用”的核心框架。 MapReduce 核心功能是将用户编写的业务逻辑代码和自带默认组件整合成一个完整的分布式运算程序,并发运行在一个 Hadoop 集群上。 1.2 Ma ...
分类:其他好文   时间:2021-04-05 12:32:51    阅读次数:0
Django创建视图
Django的视图 简单的视图 我们将在 myapp 创建一个简单的视图显示: "welcome to yiibai !" 查看如下的视图 ? from django.http import HttpResponse def hello(request): text = """<h1>welcome ...
分类:其他好文   时间:2021-04-05 12:18:07    阅读次数:0
swiper轮播 + animate动画 , 加载到轮播后播放当前轮播页动画
遇到的问题: 1.只有第一个动画播放了,后面的不播放动画 原因 : 还没完全加载到轮播,动画就已经播放完了 解决方案 : 加一秒动画延迟 引入文件 <-- css --><link rel="stylesheet" type="text/css" href="/static/readme/anima ...
分类:其他好文   时间:2021-04-05 12:02:59    阅读次数:0
table 导出简单的excel
注意table 标签的id test0() { let exportFileContent = document.getElementById('mtable').outerHTML; let blob = new Blob([exportFileContent], { type: 'text/pl ...
分类:其他好文   时间:2021-04-05 11:50:59    阅读次数:0
oracle查看执行最慢与查询次数最多的sql语句
一、查询执行最慢的sql select * from (select sa.SQL_TEXT, sa.SQL_FULLTEXT, sa.EXECUTIONS "执行次数", round(sa.ELAPSED_TIME / 1000000, 2) "总执行时间", round(sa.ELAPSED_T ...
分类:数据库   时间:2021-04-02 13:30:19    阅读次数:0
(办公)轻松学 React-Router 4(20210401)
命令创建项目:create-react-app hello-model-router 安装router:yarn add react-app-router-dom 按照例子来理解: 3.1. React router介绍 路由: path什么路径,component跳转到那个组件上. import  ...
分类:其他好文   时间:2021-04-02 13:10:28    阅读次数:0
55715条   上一页 1 ... 38 39 40 41 42 ... 5572 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!