Computing desk | ||
---|---|---|
< November 18 | << Oct | November | Dec >> | November 20 > |
Welcome to the Wikipedia Computing Reference Desk Archives |
---|
The page you are currently viewing is a transcluded archive page. While you can leave answers for any questions shown below, please ask new questions on one of the current reference desk pages. |
This morning I came across some disruptive editing involving a user copying and pasting content to "new" titles of existing articles that appear to the naked eye as having the same title. I am assuming that (some) of the characters are different on an encoded level. What are the differences? I'd appreciate some tips on how I could examine them to see the differences for myself in the future. Below are the blue links to our actual articles, and the red links to the identical-seeming page titles that were created:
Thanks--Fuhghettaboutit (talk) 01:33, 19 November 2015 (UTC)
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# paste the two strings you want to show into these two variables:
s="The Game (rapper)"
t="Тhе Gаmе (rарреr)"
import unicodedata
for c,d in zip(s,t):
print ("{:s} {:s} U+{:04x} U+{:04x} {:s} {:30s} {:30s}".format(c,
d,
ord(c),
ord(d),
"!" if c!=d else " ",
unicodedata.name(c),
unicodedata.name(d),
))
T Т U+0054 U+0422 ! LATIN CAPITAL LETTER T CYRILLIC CAPITAL LETTER TE h h U+0068 U+0068 LATIN SMALL LETTER H LATIN SMALL LETTER H e е U+0065 U+0435 ! LATIN SMALL LETTER E CYRILLIC SMALL LETTER IE U+0020 U+0020 SPACE SPACE G G U+0047 U+0047 LATIN CAPITAL LETTER G LATIN CAPITAL LETTER G a а U+0061 U+0430 ! LATIN SMALL LETTER A CYRILLIC SMALL LETTER A m m U+006d U+006d LATIN SMALL LETTER M LATIN SMALL LETTER M e е U+0065 U+0435 ! LATIN SMALL LETTER E CYRILLIC SMALL LETTER IE U+0020 U+0020 SPACE SPACE ( ( U+0028 U+0028 LEFT PARENTHESIS LEFT PARENTHESIS r r U+0072 U+0072 LATIN SMALL LETTER R LATIN SMALL LETTER R a а U+0061 U+0430 ! LATIN SMALL LETTER A CYRILLIC SMALL LETTER A p р U+0070 U+0440 ! LATIN SMALL LETTER P CYRILLIC SMALL LETTER ER p р U+0070 U+0440 ! LATIN SMALL LETTER P CYRILLIC SMALL LETTER ER e е U+0065 U+0435 ! LATIN SMALL LETTER E CYRILLIC SMALL LETTER IE r r U+0072 U+0072 LATIN SMALL LETTER R LATIN SMALL LETTER R ) ) U+0029 U+0029 RIGHT PARENTHESIS RIGHT PARENTHESIS
Could anyone give an intuitive explanation for the reason why FOLLOW sets doesn't contain epsilon?It might be better if you can also provide an example.JUSTIN JOHNS (talk) 09:10, 19 November 2015 (UTC)
Does the LL parser tells anything about 'why epsilon is not included in FOLLOW sets'?I think no.JUSTIN JOHNS (talk) 06:30, 23 November 2015 (UTC)
I would like to know whether a string can be accepted if the input gets exhausted but there are productions still to derive.Also I would like to know can such an issue occur in parsing?JUSTIN JOHNS (talk) 10:12, 19 November 2015 (UTC)
I've always regarded it to be common knowledge that swelling of old lithium-ion batteries is a normal effect resulting from degradation as they age. This effect has been consistently exhibited in all the old batteries I've discarded over the past ten years, and using the "spin test" to determine that a battery has passed its prime also appears to be common knowledge among acquaintances. However, a Google search today only gives results that say swollen batteries are a dangerous situation resulting either from misuse or malfunction, and that they should be discarded immediately, with no mention of it being part of the normal ageing process. What gives? --Paul_012 (talk) 16:11, 19 November 2015 (UTC)
Spin test: a battery that is a cylinder...
- | | -
...on its side will not spin well, but a battery that is slightly barrel shaped...
- ( ) -
...will spin very well.
What the spin test does is to identify batteries that are only slightly swollen -- not enough to see with your eyes.
A tiny bit of swelling is not exactly "normal" but it also isn't all that uncommon and it isn't worth worrying about.
What a tiny bit of swelling usually means is that your system either has a tiny bit of overcharging or a tiny bit of overheating.
References:
--Guy Macon (talk) 19:31, 19 November 2015 (UTC)