上一页 1 2 3 4 5 6 ··· 11 下一页
2020年3月3日
摘要: 最近在做jupyterhub页面嵌入iframe页面的工作,发现了jupyterhub页面无法嵌入iframe的情况,单独访问jupyterhub可以,但是在iframe中就是打不开。 调查发现content-security-policy里面那个self(上面第一列,第二列我自己加上去的测试)会阻 阅读全文
posted @ 2020-03-03 11:09 WU大雄 阅读(1233) 评论(0) 推荐(0) 编辑
2020年3月2日
摘要: 自己整的一个demo能用的 #!/usr/bin/env python # -*- coding: utf-8 -*- import json from ldap3 import Server, Connection, ALL, NTLM from ldap3 import ALL_ATTRIBUT 阅读全文
posted @ 2020-03-02 17:02 WU大雄 阅读(2119) 评论(0) 推荐(0) 编辑
2020年2月26日
摘要: docker里面的ubantu容器没有带vim,想下个vim apt-get install vim Reading package lists... DoneBuilding dependency tree Reading state information... DoneE: Unable to 阅读全文
posted @ 2020-02-26 11:37 WU大雄 阅读(3092) 评论(0) 推荐(0) 编辑
2020年2月18日
摘要: 导出:选用pdfkit 参考官方链接:https://wkhtmltopdf.org/usage/wkhtmltopdf.txt 1.大小 设置导出的大小可以用page-size也可以直接page-wight,page-height: Page sizes: The default page siz 阅读全文
posted @ 2020-02-18 17:39 WU大雄 阅读(1563) 评论(0) 推荐(0) 编辑
2020年2月16日
摘要: https://cr.console.aliyun.com/undefined/instances/mirrors 注册阿里云然后去复制里面的高速下载地址 阅读全文
posted @ 2020-02-16 00:30 WU大雄 阅读(156) 评论(0) 推荐(0) 编辑
2020年2月9日
摘要: 1.实践 进入/app/hadoop-1.1.2 ,新建文件夹input,在文件夹下 vi daysn.txt daysn wu is handsome very handsome wow so so handsome yes he is 然后保存。待会咋们把这个daysn.txt上传到hdfs中去 阅读全文
posted @ 2020-02-09 01:35 WU大雄 阅读(202) 评论(0) 推荐(0) 编辑
2020年2月8日
摘要: 设置机器名 sudo vi /etc/sysconfig/network reboot重启后生效 设置IP与机器名的映射 sudo vi /etc/hosts 按照<IP地址><主机名>的方式加入,注意这里用的是tab不是空格 然后ping hadoop检验是否成功 关闭防火墙 sudo chkco 阅读全文
posted @ 2020-02-08 23:24 WU大雄 阅读(207) 评论(0) 推荐(0) 编辑
2020年1月14日
摘要: 刚遇到一批bytes数值,python,有的是gbk的有的是utf-8的,于是用这种方式处理了一下,比较快 if isinstance(rs_list[i], bytes):try: rs_list[i] = rs_list[i].decode('utf-8') except Exception a 阅读全文
posted @ 2020-01-14 19:59 WU大雄 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.加入随意一行 配合 df_pivoted.index.tolist()获取所有索引食用更佳 df_pivoted.index.append(pd.Index(['接收请求'])) df_pivoted.loc['接收请求', '汇总'] = 0 阅读全文
posted @ 2020-01-14 10:09 WU大雄 阅读(141) 评论(0) 推荐(0) 编辑
2020年1月7日
摘要: 用navicat工具select半天无果,最后灵感一出用了as select ROWID as id, c.* from table where rownum <=5; 这样就可以了。 阅读全文
posted @ 2020-01-07 09:43 WU大雄 阅读(327) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页