电影是根据真实故事改编的,主人公原型是 Joy Mangano ,讲述了上世纪八十年代一名草根单亲妈妈通过自身努力,凭借发明的神奇拖把发家致富,最终成就了一个商业帝国。用一句话来概括的话,诠释了女人当自强,一部家庭主妇逆天改命的美国梦类型的翻身剧,但是又区别于传统的心灵鸡汤正能量电影,电影里面用了非常大的篇幅在渲染各种悲伤的情感。Joy每一次的奋进,看似努力而为,其实都是被现实所逼无可奈何的举措。
影片可以分为三段,第一段讲述 Joy 是如何在生活的泥沼中苦苦挣扎;第二段在生活的重担上,Joy 爆发了,先天的创造天赋加成,利用一次经历激发灵感发明了神奇拖把,豁出一切,破釜沉舟,绝地反击;第三段失败破产之后的 Joy 单枪匹马杀到民风彪悍的 Texas 加工厂,设计逼骗子妥协成功拿回属于自己的东西,成功登顶霸道女总裁。
Long Luo Created @2016-03-11 22:45:13 ~ 2016-03-12 01:49:08 at Shenzhen Version 0.1Long Luo Version 0.2 @2016-04-19 01:25:16Modified By Long Luo version 1.0 at 2018年9月27日22点38分 at Hangzhou.
Error:Execution failed for task ':samples-simplevideowidget:processDebugResources'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'E:\Android\SDK\build-tools\23.0.1\aapt.exe'' finished with non-zero exit value 1
org.gradle.process.internal.DefaultExecHandle] Changing state to: FAILED org.gradle.process.internal.DefaultExecHandle] Process 'command 'E:\Android\SDK\build-tools\23.0.1\aapt.exe'' finished with exit value 1 (state: FAILED) org.gradle.api.Project] Unknown source file : ERROR: In <declare-styleable> ListItemLinearLayout, unable to find attribute singleLine
从上述Log信息,我们可知出错点是ERROR: In <declare-styleable> ListItemLinearLayout, unable to find attribute singleLine,那么肯定是attrs文件的ListItemLinearLayoutstyleable出错了。
Commands:
clean Removed generated files and cache.
config Get or set configurations.
deploy Deploy your website.
generate Generate static files.
help Get help on a command. 查看帮助信息
init Create a new Hexo folder. init [文件夹名]: 创建一个hexo项目,不指定文件夹名,则在当前目录创建
list List the information of the site
migrate Migrate your site from other system to Hexo.
new Create a new post.
publish Moves a draft post from _drafts to _posts folder.
render Render files with renderer plugins.
server Start the server.
version Display version information. 查看hexo的版本
Global Options:
--config Specify config file instead of using _config.yml config-path:指定配置文件,代替默认的_config.yml
--cwd Specify the CWD cwd-path:自定义当前工作目录
--debug Display all verbose messages in the terminal 调试模式,输出所有日志信息
--draft Display draft posts
--safe Disable all plugins and scripts 安全模式,禁用所有的插件和脚本
--silent Hide output on console 无日志输出模式
Hexo常用命令也可以使用以下缩写:
1 2 3 4
hexo n == hexo new hexo g == hexo generate hexo s == hexo server hexo d == hexo deploy
清除生成内容
1
$ hexo clean
执行此操作会删除 public 文件夹中的内容。 以上就是经常使用的命令。
一键三连:
1 2
hexo clean && hexo g -d hexo clean && hexo g && hexo s --debug