Anonymous ID: 389d06 May 16, 2020, 7:20 p.m. No.9206147   🗄️.is 🔗kun   >>6297 >>0910

>>9188237

Thanks very much. It remains an interesting feature this post Q225 telling us that 43 connections are on the map.

I remember some old breads (cbts or early qr) where an anon had another explanation – involved geometry somehow, would have to look it up to be sure.

 

I like the timestamp idea, and tried to understand what you did there. So here's what I took away so far:

Using the modulo 1200 of the HHMM timestamps of the first 227 Q posts, and through that

matching them to other posts you find 43 connections, consisting of 26 tupels, 7 tripels & 1 quadrupel of Q posts.

 

The sum checks out going by the numbers above (26 + 14 + 3), yet I have some questions:

You use ET (i.e. incl. DST), so using the notation you did, the modulo of, say,

19:07 1907 % 1200 707 ==> Q707

which is why Q61 can not be found in your pic.

I do find Q169 (13:19) and Q150 (13:04) in your pic, yet (among others) for example Q29 (02:13), Q46 (12:57) or Q50 (14:06) are missing. Why is that?

Why did you include Q228 among those first 227 Q posts?

The 3-timezone HTML in their headerlines to Q posts has ET looged, so it was pretty easy to use this one liner:

n=227; j=0; for i in grep &quot;^&lt;hr\ style=\&quot;height:1px;\ border:none;\ color:#333;&quot; extractHTML_Q.html | head -n${n} | grep -o &quot;|\ [0-9][0-9]*\-[A-Z][a-z][a-z]\-[0-9][0-9]*\ [0-9][0-9]*:[0-9][0-9]*:[0-9][0-9]*\ (E.T)\ |&quot; | awk -F&quot;|&quot; &#x27;{print $2}&#x27; | sed &#x27;s/\ (E.T)&#x27;&#x27;//&#x27;&#x27;g&#x27; | sed &#x27;s/^\ &#x27;&#x27;//&#x27;&#x27;g&#x27; | sed &#x27;s/\ $&#x27;&#x27;//&#x27;&#x27;g&#x27; | sed &#x27;s/\ /T/g&#x27;; do j=expr $j + 1; a=echo ${i} | grep -o &quot;T[0-9][0-9]:[0-9][0-9]&quot; | sed &#x27;s/T&#x27;&#x27;//&#x27;&#x27;g&#x27; | sed &#x27;s/:&#x27;&#x27;//&#x27;&#x27;g&#x27;; a=echo ${a} % 1200 | bc; [[ $(echo "${a} <= ${n}" | bc) -eq 1 ]] && echo "Q-${j} ==Q-${a}"; done

which finds 83 connections (setting n=228 yields one more). But it was only a quick check, so I'm not sure if that correctly reproduces what you tried to do.

Anonymous ID: 389d06 May 16, 2020, 7:35 p.m. No.9206297   🗄️.is 🔗kun   >>0917

>>9206147

>>9188237

Just noticed that some of the sed commands have made it into the "code" environment a little weird (double-apostrophes), but you probably get what I did there:

# grep for header line and extract ET timestamps, loop over the first n=227 found

# extract HH:MM, remove ":" and compute the modulo 1200

# if modulo is <= n, print out the connection