Here

Django

醉酒当歌 提交于 2020-12-14 07:16:21
一、原生form https://www.cnblogs.com/yuanchenqi/articles/7614921.html 案例: 步骤: 1.models.py ... makemigrations migrate from django.db import models # Create your models here. class Book(models.Model): title = models.CharField(max_length=32 ) price = models.DecimalField(max_digits=8,decimal_places=2) # 999999.99 date = models.DateField() publish = models.ForeignKey( " Publish " ,on_delete= models.CASCADE) authors = models.ManyToManyField( " Author " ) def __str__ (self): return self.title class Publish(models.Model): name = models.CharField(max_length=32 ) def __str__ (self): return self.name class

Listen error 错误和 limit of inotify watches was reached

为君一笑 提交于 2020-12-13 10:58:11
今天在生产环境中报错rails c中报了一个错误: FATAL: Listen error: unable to monitor directories for changes. Visit https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers for info on how to fix this.   报错后想看一下错误日志显示如下: tailf: log/xxxxxx.log: cannot add inotify watch (limit of inotify watches was reached).   其实这个错误直接访问提示网站告诉的挺详细的。 解决方案: If you are running Debian, RedHat, or another similar Linux distribution, run the following in a terminal: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p If you are running ArchLinux, run the following command

[Selenium+Java] Implicit Wait & Explicit Wait in Selenium

青春壹個敷衍的年華 提交于 2020-12-12 21:21:38
https://www.guru99.com/handling-dynamic-selenium-webdriver.html here are two types of HTML tables published on the web- Static tables : Data is static i.e. Number of rows and columns are fixed. Dynamic tables : Data is dynamic i.e. Number of rows and columns are NOT fixed. Below is an example of a dynamic table of Sales. Based on input date filters, number of rows will get altered. So, it is dynamic in nature. Handling static table is easy, but dynamic table is a little bit difficult as rows and columns are not constant. In this tutorial, you will learn- Using X-Path to Locate Web Table

笨方法学python练习与总结

妖精的绣舞 提交于 2020-12-12 13:31:03
  这是一篇根据书本《笨方法学python3》而来的博客,希望自己能在每天抽一点时间来学习python,使自己能够前后端都能得到进步。脚踏实地,一步一步!   在开始之前,希望自己的英语能够在不断地积累与代码练习中的得到提高,以及告诫自己,无论什么事,取是能力,舍是境界。 第一个程序 练习代码: print("Hello World!") #print("Hello Again") #print("I like typing this.") #print("This is fun.") #print("Yay! Printing.") #print("i`d much rather you 'not' .") #print('I "said" do not touch this.')    练习目的:使用python的打印方法,关于print这个方法其实有很深远的说法,待补充。 问题:由于作者希望读者能够摆脱ide的依赖,使用最原始的文本编辑器去进行python练习,所以在一开始无法运行自己编写的python程序。 解决:我们需要在我们自己写的python文件目录下执行 python3.x xxx.py才能将我们的程序运行起来。比如 lpthw/ex1.py 在编者的mac系统下就需要cd lpthw才可执行命令,运行python文件。 注释与#号 练习代码: # A

HTML标签语义化你再不看就OUT了

。_饼干妹妹 提交于 2020-12-10 19:36:18
持续输出内容,等你来撩~ 什么是语义元素? 语义是指对一个词或者句子含义的正确解释。很多html标签也具有语义的意义,也就是说元素本身传达了关于标签所包含内容类型的一些信息。例如,当浏览器解析到 <h1></h1> 标签时,它将该标签解释为包含这一块内容的最重要的标题。h1标签的语义就是用它来标识特定网页或部分最重要的标题。 为什么要语义化? **代码结构:**使页面没有css的情况下,也能够呈现出很好的内容结构 有利于SEO: 爬虫依赖标签来确定关键字的权重,因此可以和搜索引擎建立良好的沟通,帮助爬虫抓取更多的有效信息 **提升用户体验:**例如title、alt可以用于解释名称或者解释图片信息,以及label标签的灵活运用。 便于团队开发和维护: 语义化使得代码更具有可读性,让其他开发人员更加理解你的html结构,减少差异化。 方便其他设备解析: 如屏幕阅读器、盲人阅读器、移动设备等,以有意义的方式来渲染网页。 HTML5常用的语义元素 HTML5提供了新的语义元素来定义网页的不同部分,它们被称为“切片元素”,如图所示 大约有100多个 HTML语义元素 可供选择,以下是常用的语义元素 结构体 文本 一致 header 、h1、h2、h3、nav、footer、article、section p、ul、ol、li、blockquote a、strong、em、q、abbr

解决Ubuntu14.04安装Chrome浏览器打不开的问题

断了今生、忘了曾经 提交于 2020-12-10 06:32:21
1、安装Chrome浏览器 wget http: // www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https: // dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - apt -get update apt-get install google-chrome-stable 2、启动Chrome浏览器 google-chrome 这时会报错: [31560:31560:0207/085601.085852:ERROR:zygote_host_impl_linux.cc(90)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180. google-chrome --no-sandbox 仍会报错: root@node00:~# [0207/085735.495265:ERROR:nacl_helper_linux.cc(310)] NaCl helper process running without a sandbox! Most likely you need

冷启动问题的一点尝试LCE

核能气质少年 提交于 2020-12-09 06:36:31
各位大佬好,最近我又抑郁了。比上不足,我比上不足,Life is harder. For Recommendation in Deep learning QQ Group 277356808 For Visual in deep learning QQ Group 629530787 I'm here waiting for you 不接受这个网页的私聊/私信!!! 说了多少次不接受网页的私信与私聊还是有人这样私信,我看了也不回的,您继续就好了。评论一下会死?加群详聊会见光死?老子又不是和你相亲。 有些公号的文章骂我,翻译paper谁不会,老子其实不是秀,我翻译下至少当时“假装理解”了,是不是真的懂不知道,但过后还可以自己再看下啊,不然又要重头看,那样太累了。另外至少我翻译时不会想很多杂乱的破事,至少我可以静下来,别乱指责别人,总有你不了解的事。 写在前面—— 当你迷茫、困惑时,不妨想想来时的路,那么推荐到底是为了解决什么问题呢?在信息流APP中,有视频,文章,gif,小视频等内容,推荐的任务就是将这些分发给每个用户,如果item很少(比如1000以下),这时候其实用不上推荐,过不了两天用户都走了,用户为啥走,这时的主要原因是内容少或者内容很差(没有吸引力,这时候不能怪推荐算法),那么留住用户或者装逼的说法,留存率啥的,第一条关键因素不就是好的内容相当够吗?当item数量上来后

03-Django基础概念和MVT架构

旧街凉风 提交于 2020-12-07 03:30:36
一、Django基础 掌握Django的 MVT 架构的使用 掌握Git管理源代码 主要内容 了解Django的 MVT 架构的使用流程 使用Django完成案例 : 书籍信息管理 MVC介绍    MVC: 全拼为Model-View-Controller。      Model: 简称为M,主要封装对数据库层的访问,内嵌ORM框架,实现面向对象编程来操作数据库。      View: 简称V,用于封装结果,内嵌了模板引擎,实现动态展示数据。      Controller: 简称C,用于接收GET或POST请求,处理业务逻辑,与Model和View交互,返回结果。 备注:当前主流的开发语言如Java、PHP、Python....中都有MVC设计模式。 MTV介绍   MTV:全拼为Model-View-Template     Model:简称M,与MVC中的M功能相同,负责与数据库交互,处理数据,内嵌了ORM框架。     View:简称V,与MVC中的C功能相同,接收HttpRequest,业务处理逻辑,返回HttpResponse。     Template:简称T,与MVC中的V功能相同,负责封装构造返回的html,内嵌了模板引擎。 备注:MTV和MVC的差异在于MTV中的View是处理业务逻辑的,然而MVC中的V是处理内置模板引擎的

英语影视台词---绿皮书(1)

微笑、不失礼 提交于 2020-12-06 23:07:03
英语影视台词---绿皮书(1) 一、总结 一句话总结: Green Book 1、纽约你好 我是鲍比·莱德尔 很高兴来到这里? Hello New York! I'm Bobby Rydell. And I'm glad to be here. 2、感谢大家今晚的光临 来到科帕的周六晚场? Thank you all for coming to see us tonight. It's Saturday night at the Copa! 3、希望大家今晚玩得尽兴? We think you're gonna have a great time tonight. 4、我们会尽力给您带来美好的一晚? We're gonna do our best to make sure of that. 5、再次感谢朱尔斯·波戴尔先生给我们上台的机会? As always a very special thanks to Mr. Jules Podell for having us out. 6、开始吧? Let's get started. 7、亲爱的你好? Hello sweetheart. 8、大衣在这? Here is my coat. 9、然后这顶帽子? And you see this here hat? 10、你一定要好好保管? I want you to guard it

django安装使用教程

早过忘川 提交于 2020-12-06 18:39:20
Django Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Thanks for checking it out. All documentation is in the " docs " directory and online at https://docs.djangoproject.com/en/stable/ . If you're just getting started, here's how we recommend you read the docs: First, read docs/intro/install.txt for instructions on installing Django. Next, work through the tutorials in order ( docs/intro/tutorial01.txt , docs/intro/tutorial02.txt , etc.). If you want to set up an actual deployment server, read docs/howto/deployment/index.txt for