tip

Updates were rejected because the tip of your current branch is behind

匿名 (未验证) 提交于 2019-12-02 23:32:01
有如下几种解决方法: 1.使用强制push的方法: $ git push -u origin master -f 这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候。 2.push前先将远程repository修改pull下来 $ git pull origin master $ git push -u origin master 3.若不想merge远程和本地修改,可以先创建新的分支: $ git branch [name] 然后push $ git push -u origin [name]

Python 数据分析:让你像写 Sql 语句一样,使用 Pandas 做数据分析

匿名 (未验证) 提交于 2019-12-02 22:51:30
import pandas as pd import numpy as np url = ('https://raw.github.com/pandas-dev/pandas/master/pandas/tests/data/tips.csv') tips = pd.read_csv(url) output = tips.head() Output: total_bill tip sex smoker day time size 0 16.99 1.01 Female No Sun Dinner 2 1 10.34 1.66 Male No Sun Dinner 3 2 21.01 3.50 Male No Sun Dinner 3 3 23.68 3.31 Male No Sun Dinner 2 4 24.59 3.61 Female No Sun Dinner 4 sql 语句: SELECT total_bill, tip, smoker, time FROM tips LIMIT 5; 。 output = tips[['total_bill', 'tip', 'smoker', 'time']].head(5) Output: total_bill tip smoker time 0 16.99 1.01 No Dinner 1 10.34 1.66 No Dinner

ARP输入 之 arp_process

余生颓废 提交于 2019-12-02 16:42:54
概述 arp_process为ARP输入包的核心处理流程; 若输入为ARP请求且查路由成功,则进行如下判断:输入到本地,则进行应答;否则,允许转发,则转发,本文代码不包含转发流程; 若输入为ARP应答或者查路由失败,则更新邻居项; 源码分析 1 static int arp_process(struct net *net, struct sock *sk, struct sk_buff *skb) 2 { 3 struct net_device *dev = skb->dev; 4 struct in_device *in_dev = __in_dev_get_rcu(dev); 5 struct arphdr *arp; 6 unsigned char *arp_ptr; 7 struct rtable *rt; 8 unsigned char *sha; 9 unsigned char *tha = NULL; 10 __be32 sip, tip; 11 u16 dev_type = dev->type; 12 int addr_type; 13 struct neighbour *n; 14 struct dst_entry *reply_dst = NULL; 15 bool is_garp = false; 16 17 /* arp_rcv below verifies

Seaborn绘图02

点点圈 提交于 2019-12-02 12:20:25
各类图代码汇总 依旧是准备工作 import matplotlib.pyplot as plt import seaborn as sns %matplotlib inline import numpy as np import pandas as pd #plt.rcParams[‘font.sans-serif’] = [‘SimHei’] #用来正常显示中文标签 plt.rcParams[‘axes.unicode_minus’] = False #用来正常显示负号 sns.set_style(‘darkgrid’,{‘font.sans-serif’:[‘SimHei’,‘Arial’]}) import warnings # 去除部分警告信息 warnings.filterwarnings(‘ignore’) 柱状图 x= [‘A’,‘B’,‘C’,‘D’] y = [164,86,126,58] sns.barplot(x,y) 改变一下x轴标题顺序 x= [‘A’,‘B’,‘C’,‘D’] y = [164,86,126,58] sns.barplot(x,y,order=[‘B’,‘C’,‘A’,‘D’]) x= [‘A’,‘B’,‘C’,‘D’] y = [164,86,126,58] sns.barplot(x,y, order=[‘B’,‘C’,‘A’,‘D’

seaborn简介

戏子无情 提交于 2019-12-02 12:13:05
一、准备工作 1.1 import matplotlib.pyplot as plt %matplotlib inline import numpy as np import pandas as pd import seaborn as sns plt.rcParams['font.sans-serif']=['SimHei'] # 用来显示正常的中文标签 plt.rcParams['axes.unicode_minus'] = False #用来正常显示负号 #sns.set_style=('darkgrid',{'font.sans-serif':['SimHei','Arial']}) import warnings #屏蔽部分警告信息 warnings.filterwarnings('ignore') 1.2导入内置数据集 seaborn.load_dataset(name,cache=True,data_home=None,**kws) name 参数是数据集名字,https://github.com/mwaskom/seaborn-data 定义数据集名 cache 参数是否提供缓存 data_home 参数是指定缓存路径,默认当前用户home下的seaborn-data目录中 sns.get_dataset_names()获得数据集名字 1.3调色板 #自定义调色板

信息管理系统——控制器

半腔热情 提交于 2019-12-02 06:26:07
一 DeptController package org.fkit.oa.identity.controller; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.fkit.oa.identity.domain.Dept; import org.fkit.oa.identity.service.IdentityService; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("/identity/dept") public class DeptController { /** 定义业务层对象 */ @Resource // by type private IdentityService identityService;

layer实现鼠标悬浮效果

天大地大妈咪最大 提交于 2019-11-30 14:45:59
var tip_index = 0; $(document).on('mouseenter', '.layer_hover', function(){ var words = $(this).data('words'); tip_index = layer.tips(words, '.layer_hover', {time: 0}); }).on('mouseleave', '.layer_hover', function(){ layer.close(tip_index); }); 来源: https://www.cnblogs.com/pansidong/p/11598399.html

MySQL优化Tip

蓝咒 提交于 2019-11-30 11:19:54
1.对查询进行优化,要尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。 2.2000条以内的记录不建议做索引 3.最佳左前缀原则,联合索引的B+Tree是按照第一个关键字进行索引排列的。 4.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描 5.SQL语句中IN包含的值不应过多 6.SELECT语句务必指明字段名称 7.将可能失效的SQL语句放在where的后面 8.不建议使用%前缀模糊查询 9.避免在where子句中对字段进行表达式操作 10.in 和 not in 也要慎用,否则会导致全表扫描,对于连续的数值,能用 between 就不要用 in 了: 11.应尽量避免在 where 子句中使用 or 来连接条件,可以使用union all来进行连接 来源: https://www.cnblogs.com/Jemb/p/11581603.html

jQuery弹出提示信息自动消失简洁版

拜拜、爱过 提交于 2019-11-30 05:49:52
// 在bootstrap中可以,可以使用如下方式实现弹出提示信息自动消失,如果没有使用bootstrap框架,可以自定义样式//tip是提示信息,type:'success'是成功信息,'danger'是失败信息,'info'是普通信息,'warning'是警告信息 function ShowTip(tip, type) { var $tip = $('#tip'); if ($tip.length == 0) { // 设置样式,也可以定义在css文件中 $tip = $('<span id="tip" style="position:absolute;top:50px;left: 50%;z-index:9999;height: 35px;padding: 0 20px;line-height: 35px;"></span>'); $('body').append($tip); } $tip.stop(true).prop('class', 'alert alert-' + type).text(tip).css('margin-left', -$tip.outerWidth() / 2).fadeIn(500).delay(2000).fadeOut(500); } function ShowMsg(msg) { ShowTip(msg, 'info'); }

HTML学习(8)超链接

南笙酒味 提交于 2019-11-29 18:11:01
<a href="url">链接文本或图片</a> 可以使用id属性来访问标记的地方,例: <a id="tip">被访问的地方</a> <a href="#tip">点击此处访问</a> 如果是要访问其他页面: <a href="http://www.xxx.com#tip" target="_blank">点击此处访问</a> 属性target="_blank"作用为使用新标签打开。 来源: https://www.cnblogs.com/1016391912pm/p/11525339.html