portal

Python核心技术与实战 笔记

梦想的初衷 提交于 2019-12-26 16:37:22
基础篇 Jupyter Notebook 优点 整合所有的资源 交互性编程体验 零成本重现结果 实践站点 Jupyter 官方 Google Research 提供的 Colab 环境 安装 运行 列表与元组 列表和元组,都是 一个可以放置任意数据类型的有序集合 。 l = [1, 2, 'hello', 'world'] # 列表中同时含有 int 和 string 类型的元素 l [1, 2, 'hello', 'world'] tup = ('jason', 22) # 元组中同时含有 int 和 string 类型的元素 tup ('jason', 22) 列表是动态的,长度大小不固定,可以随意地增加、删减或者改变元素 (mutable) 元组是静态的,场地大小固定,无法增加删除或者改变 (immutable) 都支持负数索引; 都支持切片操作; 都可以随意嵌套; 两者可以通过 list() 和 tuple() 函数相互转换; 列表和元组存储方式的差异 由于列表是动态的,所以它需要存储指针,来指向对应的元素。增加/删除的时间复杂度均为 O(1)。 l = [] l.__sizeof__() // 空列表的存储空间为 40 字节 40 l.append(1) l.__sizeof__() 72 // 加入了元素 1 之后,列表为其分配了可以存储 4 个元素的空间 (72 -

Python核心技术与实战 笔记

柔情痞子 提交于 2019-12-26 16:36:48
基础篇 Jupyter Notebook 优点 整合所有的资源 交互性编程体验 零成本重现结果 实践站点 Jupyter 官方 Google Research 提供的 Colab 环境 安装 运行 列表与元组 列表和元组,都是 一个可以放置任意数据类型的有序集合。 l = [1, 2, 'hello', 'world'] # 列表中同时含有 int 和 string 类型的元素 l [1, 2, 'hello', 'world'] tup = ('jason', 22) # 元组中同时含有 int 和 string 类型的元素 tup ('jason', 22) 列表是动态的,长度大小不固定,可以随意地增加、删减或者改变元素 (mutable) 元组是静态的,场地大小固定,无法增加删除或者改变 (immutable) 都支持负数索引; 都支持切片操作; 都可以随意嵌套; 两者可以通过 list() 和 tuple() 函数相互转换; 列表和元组存储方式的差异 由于列表是动态的,所以它需要存储指针,来指向对应的元素。增加/删除的时间复杂度均为 O(1)。 l = [] l.__sizeof__() // 空列表的存储空间为 40 字节 40 l.append(1) l.__sizeof__() 72 // 加入了元素 1 之后,列表为其分配了可以存储 4 个元素的空间 (72 -

Wi-Fi pineapple Evil Portal如何使用

余生长醉 提交于 2019-12-24 16:09:08
大菠萝Evil Portal插件 项目中最近要整一个无线网络的攻击演示场景,用于针对伪AP的检测,于是接触了大菠萝这个无线安全审计神器,刚开始用的时候一头雾水,不过渐渐的发现这个神器真的超级好玩,可以做很多无线渗透的攻击。接下来介绍一下Evil Portal插件的使用 攻击演示场景 使用pineapple 创建一个校园免费Wi-Fi,收集学生的账号密码信息。 开始整活儿 首先你要有一个WIFI pineapple,就是下面这玩意儿,白白净净的,感觉人畜无害。这玩意儿某鱼上可以搞的到 然后开机连Wi-Fi登陆配密码啥的就不讲了,网上很多的入门博客。 接下来一步,如下图所示 然后进入Modules 模块选择下载好的Evil Portal 插件,先创建一个入口,然后点击进去, 就会出现三个默认的界面,你可以更改这些界面,当然你也可以ssh 找到相应的插件自己改 点击一下Activate,让这个入口生效。 最后点击start 和Enable 强制门户认证,然后刷新一下这个界面。 用手机连接一下这个你创造的热点,就会自动弹出你设置的入口网站界面了 有帮助的话,记得点个赞喽。3Q 来源: CSDN 作者: TigerOrTiger 链接: https://blog.csdn.net/wuyou1995/article/details/103673161

AD sync with Liferay

心不动则不痛 提交于 2019-12-22 23:47:27
问题 We have a portal hosted at our side on Liferay and a Active Directory is in sync through LDAP with Liferay. The problem which we are facing is that when the user gets deleted from the AD it neither gets deactivated nor deleted from Liferay. I want the user to be deactivated not deleted from Liferay when deleted from the AD. Although Liferay strongly discourages to deactivate/delete the user when the user is deleted from the AD as there may be dependencies on other user, sites or organisations

what is the difference between portal and myportal in websphere portal server

余生长醉 提交于 2019-12-22 10:27:53
问题 I'm using websphere portal server and what is the difference between /wps/portal and /wps/myportal in websphere portal server 回答1: /wps/portal is for anonymous context and is used for public resources, whereas /wps/myportal is used for authenticated and authorized resources. 来源: https://stackoverflow.com/questions/17213844/what-is-the-difference-between-portal-and-myportal-in-websphere-portal-server

What does a portlet bridge do?

南楼画角 提交于 2019-12-22 09:15:14
问题 In an interview today I mentioned that I had done some jsf work in a portlet. The interviewer asked for specifics on what the portlet-bridge does. I never looked into it all that much, just used it because I was told it would make jsf work in the portlet. All I could really say was that it allowed the requests to come from the portal to jsf in a way jsf would understand, and made it play nice. What exactly does the portlet-bridge do? 回答1: From the spec linked by Jeremy Walton above. 2.1 What

EF Code First Migrations数据库迁移

岁酱吖の 提交于 2019-12-20 23:42:27
1、EF Code First创建数据库   新建控制台应用程序Portal,通过程序包管理器控制台添加EntityFramework。   在程序包管理器控制台中执行以下语句,安装EntityFramework。 PM> Install-Package EntityFramework   安装成功后,界面提示如下图:   在新建的Portal控制台应用程序中添加两个实体类,代码结构如下:   其中,类文件PortalContext.cs的代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Entity; using System.Data.Entity.Infrastructure; using Portal.Entities; using Portal.Mapping; namespace Portal { public class PortalContext : DbContext { static PortalContext() { Database.SetInitializer(new DropCreateDatabaseIfModelChanges<PortalContext>()); } public

EF Code First Migrations数据库迁移

纵饮孤独 提交于 2019-12-20 10:15:45
1、EF Code First创建数据库   新建控制台应用程序Portal,通过程序包管理器控制台添加EntityFramework。   在程序包管理器控制台中执行以下语句,安装EntityFramework。 PM> Install-Package EntityFramework   安装成功后,界面提示如下图:   在新建的Portal控制台应用程序中添加两个实体类,代码结构如下:   其中,类文件PortalContext.cs的代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Entity; using System.Data.Entity.Infrastructure; using Portal.Entities; using Portal.Mapping; namespace Portal { public class PortalContext : DbContext { static PortalContext() { Database.SetInitializer(new DropCreateDatabaseIfModelChanges<PortalContext>()); } public

安装ctrip-apollo多环境部署总结

六眼飞鱼酱① 提交于 2019-12-15 13:36:34
1、下载( https://github.com/ctripcorp/apollo/releases)apollo三个压缩文件 2、在本机安装mysql5.7 安装步骤略。 3、创建数据库 开发环境(dev):apolloconfigdb 测试呼叫(fat):apolloconfigdb2 portal:apolloportaldb 注意:一个portal管理多个环境,只需要部署一个portal程序,一个portal库。config与admin,每个环境需要个配一套。 4、修改的配置文件 4.1 portal配置 cd /data/apollo-portal/config vim apollo-env.properties 保存 vim application-github.properties 保存 4.2 config配置 第一个config cd /data/apollo-configservice/config/ vim application-github.properties 第二个config cd /data/apollo-configservice/config/ vim application-github.properties 4.3 admin配置 第一个admin cd /data/apollo-adminservice/config vim

Flyout or Menu Dropdown in Portal 8 themes

蓝咒 提交于 2019-12-13 21:02:24
问题 I was wondering if anyone has been successful in creating and using a flyout or drop-down menu navigation for WebSphere Portal Server v8? We are using a custom theme. What we would like to do is keep the main pages across the top navigation bar and have it so that when you hover/click over that page/tab a menu (flyout or drop-down) displays the sub pages and their sub pages and so on. Any suggestions and pointers are welcome. Thanks in advance. 回答1: This example generate ul-li two level menu,