有没有办法弄清楚当前页面的主机名的顶级域名是什么?我遇到的问题是脚本可能在.com域中,也可能在像.co.uk这样的国际域中
所以: jobs.telegraph.co.uk - top domain is:telegraph.co.uk jobs.nytimes.com - top domain is nytimes.com
问题是location.hostname和document.domain提供了整个域。
一种方法是拥有所有TLD的列表(太多了,不能随身携带),并基于此进行解析。另一条路线是如果最后两个字符在最后一个".“之后,那么国际化-因此最后两个是TLD,但这并不适用于所
假设我们有两个ARGB颜色: c1和c2。
背景c1上的50% (alpha) c2和背景c1上的50% c2之间有什么区别吗?
使用公式out = alpha * new + (1 - alpha) * old (来自),两者的结果是相同的:
50% blue on 100% red = 0.5 * blue + (1 - 0.5) red = 0.5 * blue + 0.5 red
100% red on 50% blue = 0.5 * red + (1 - 0.5) blue = 0.5 * red + 0.5 blue
thus, 50% blue on 100% red = 10
有人能证实我读得对吗?因为我对文字很陌生。
vcolor= Oo > Cc ? color.red : up > down? color.green:color.red
这实际上是判断颜色的if语句吗?
所以我的理解是
if its Oo > Cc
vcolor = red
else if up > down
vcolor = green
最后一个color.red是什么意思?如果这就是它的意思,为什么要在if语句上使用它呢?
提前感谢
我有一个包含多个列的列表,我需要根据两列对行进行分组和求和。我可以不使用Pandas数据文件来做这个吗?
我在这样的列表中有一个数据集:
User Days Project
Dave 3 Red
Dave 4 Red
Dave 2 Blue
Sue 4 Red
Sue 1 Red
Sue 3 Yellow
具体来说:[[Dave, 3, Red], [Dave, 4, Red], [Dave, 2, Blue], [Sue, 4, Red], [Sue, 1, Red], [Sue, 3, Yellow]]
我
考虑到这些条目..。
red yellow green
yellow green red
green red yellow
other red yellow
other green red
我可以将红色、黄色、绿色按任何顺序(前3行)匹配:
^(^red|^yellow|^green) (red|yellow|green) (red$|yellow$|green$)$
请注意,我需要找到确切的这个词,没有其他。但是当我有更多的词时,这个表达就会增长很多。
例如(用4个字)
^(^red|^yellow|^green|^black) (red|yellow|green|black) (red
我有一个包含学生详细信息的表,其中的一个列将包含json数组中学生最喜欢的颜色。
-----------------------------------------------------
id name colors
-----------------------------------------------------
1 John {'red','blue'}
2 Cena
有谁能帮到下面的例子吗,非常感谢
id color date
1 red 01/01
1 red 01/02
1 yellow 01/03
1 red 02/01
2 red 01/01
2 blue 01/02
2 blue 02/02
3 red 01/01
4 red 02/01
理想的产出应该是:
id pattern
1 (red, yellow) to (red)
2 (red, blue) to (blue)
3 (red
我已经读了很多关于线程安全的文章,并且对一个对象的多个实例是否会影响线程安全感到困惑。下面是一个详细说明的例子:
假设我们有一个名为RGBColor的类,用户将设置红色、绿色和蓝色的值,然后返回颜色。
Public Class RGBColor {
private int red;
private int green;
private int blue;
Public RGBColor(int red, int green, int blue){
this.red = red;
this.green = green;
t
我有如下所示的桌子:
Id Name Colours
1 Apple Red
2 Apple Green
3 Tomato Red
4 Tomato Red
5 Tomato Red
6 Banna Yellow
我需要按名称对水果进行分组,并检查它们是一种颜色还是有多种颜色,所以结果应该是:
Apple Various
Tomato Red
Banana Yellow
有什么想法吗?