摘要:
最近在做jupyterhub页面嵌入iframe页面的工作,发现了jupyterhub页面无法嵌入iframe的情况,单独访问jupyterhub可以,但是在iframe中就是打不开。 调查发现content-security-policy里面那个self(上面第一列,第二列我自己加上去的测试)会阻 阅读全文
摘要:
自己整的一个demo能用的 #!/usr/bin/env python # -*- coding: utf-8 -*- import json from ldap3 import Server, Connection, ALL, NTLM from ldap3 import ALL_ATTRIBUT 阅读全文
摘要:
docker里面的ubantu容器没有带vim,想下个vim apt-get install vim Reading package lists... DoneBuilding dependency tree Reading state information... DoneE: Unable to 阅读全文
摘要:
导出:选用pdfkit 参考官方链接:https://wkhtmltopdf.org/usage/wkhtmltopdf.txt 1.大小 设置导出的大小可以用page-size也可以直接page-wight,page-height: Page sizes: The default page siz 阅读全文
摘要:
https://cr.console.aliyun.com/undefined/instances/mirrors 注册阿里云然后去复制里面的高速下载地址 阅读全文
摘要:
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中去 阅读全文
摘要:
设置机器名 sudo vi /etc/sysconfig/network reboot重启后生效 设置IP与机器名的映射 sudo vi /etc/hosts 按照<IP地址><主机名>的方式加入,注意这里用的是tab不是空格 然后ping hadoop检验是否成功 关闭防火墙 sudo chkco 阅读全文
摘要:
刚遇到一批bytes数值,python,有的是gbk的有的是utf-8的,于是用这种方式处理了一下,比较快 if isinstance(rs_list[i], bytes):try: rs_list[i] = rs_list[i].decode('utf-8') except Exception a 阅读全文
摘要:
1.加入随意一行 配合 df_pivoted.index.tolist()获取所有索引食用更佳 df_pivoted.index.append(pd.Index(['接收请求'])) df_pivoted.loc['接收请求', '汇总'] = 0 阅读全文
摘要:
用navicat工具select半天无果,最后灵感一出用了as select ROWID as id, c.* from table where rownum <=5; 这样就可以了。 阅读全文