Given counts per item:
- P = positive, U = neutral, N = negative
- T = P + U + N
Default assumption: neutral = “meh / no push”, so it dilutes by being included in T.
Vote mapping (utility):
| #declare FrameNumber = clock; // clock ranges from 0 to 1 | |
| camera { | |
| location <FrameNumber * 10, FrameNumber * 10, -20> | |
| look_at <0, 0, 0> | |
| angle 60 // Adjust the field of view, larger means wider field of view. | |
| } | |
| // Light source | |
| light_source { |
| // Copyright 2015 The Go Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style | |
| // license that can be found in the LICENSE file. | |
| package main | |
| // This program produced false race reports when run under the C/C++ | |
| // ThreadSanitizer, as it did not understand the synchronization in | |
| // the Go code. |
| ##### ../misc/cgo/testsanitizers | |
| --- FAIL: TestShared (0.03s) | |
| --- FAIL: TestShared/tsan_shared (2.19s) | |
| cshared_test.go:71: `/tmp/TestShared464897178/tsan_shared` exited with exit status 66 | |
| ================== | |
| WARNING: ThreadSanitizer: data race (pid=146300) | |
| Write of size 8 at 0x7fc3bfc95c10 by thread T1: | |
| #0 pthread_attr_getstacksize <null> (tsan_shared+0x00000041d5c2) | |
| #1 x_cgo_init <null> (libtsan_shared.so+0x000000098a15) |
| <center> | |
| {{ if .IsNamedParams }} | |
| {{- $site := .Get "site" -}} | |
| {{- $name := .Get "name" -}} | |
| {{- $domains := split $site "," -}} | |
| {{- $domains := apply $domains "printf" "site:%s" "." -}} | |
| {{- $domains := delimit $domains " || " -}} | |
| {{- $domains := printf " ( %s )" $domains -}} |
Werfqwerqwe