More actions
Combined display of all available logs of Information Rating System Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 20:29, 19 August 2025 Dan talk contribs created page Internal:Inviting and Contacting Users (Created page with "<h2> Invitations to new users </h2> Social media sites usually obtain members via invitations to new users from existing users. Any such system needs to have some form of hysteresis to avoid email spamming (multiple invitations could be combined into one, for example). In the case of the rating system, let’s consider invitation opportunities/reasons: * provide access to a document or proposition from the rating system to a person along with an invitation to join. Fa...")
- 15:03, 15 August 2025 Pete talk contribs created page Internal:Brainstorming 70 (Created page with "# Modularizing Python Code in PostgreSQL: Three Approaches This document outlines three different approaches to modularize your Python delegation calculations and make them callable from PostgreSQL. ## Current State: Embedded Python (What you have now) **File**: `R__020_receivedweight_wd_alg.sql` Your current approach embeds Python functions directly in PostgreSQL stored procedures using PLpython3u, with a global dictionary (GD) pattern for code organization. **Pros...") Tag: Visual edit
- 18:59, 14 August 2025 Pete talk contribs created page File:Fixedperc receivedweight delegation alg.txt
- 18:59, 14 August 2025 Pete talk contribs uploaded File:Fixedperc receivedweight delegation alg.txt
- 18:50, 14 August 2025 Pete talk contribs created page File:Perf2.png
- 18:50, 14 August 2025 Pete talk contribs uploaded File:Perf2.png
- 18:49, 14 August 2025 Pete talk contribs created page File:Perf1.png
- 18:49, 14 August 2025 Pete talk contribs uploaded File:Perf1.png
- 14:39, 10 August 2025 Pete talk contribs uploaded a new version of File:Brainstorming 69.xlsx
- 18:20, 7 August 2025 Pete talk contribs created page File:Brainstorming 69.xlsx
- 18:20, 7 August 2025 Pete talk contribs uploaded File:Brainstorming 69.xlsx
- 21:10, 6 August 2025 Pete talk contribs created page File:Deleg4.png
- 21:10, 6 August 2025 Pete talk contribs uploaded File:Deleg4.png
- 21:07, 6 August 2025 Pete talk contribs created page File:Deleg3.png
- 21:07, 6 August 2025 Pete talk contribs uploaded File:Deleg3.png
- 21:02, 6 August 2025 Pete talk contribs created page File:Deleg2.png
- 21:02, 6 August 2025 Pete talk contribs uploaded File:Deleg2.png
- 20:51, 6 August 2025 Pete talk contribs created page File:Deleg1.png
- 20:51, 6 August 2025 Pete talk contribs uploaded File:Deleg1.png
- 20:18, 6 August 2025 Pete talk contribs created page Internal:Brainstorming 69 (Created page with "The fixed percentage weighted delegation algorithm allocates a percentage of a user's <i>total</i> weight to be given to others. Thus if Alice delegates 30% of her weight to Bob, then no matter how much weight she has, she will always be giving away 30% of it. If Bob doesn't give any weight back to her, Alice will reach 0 after a few rounds of delegation: 1 1 - 0.3 = 0.7 0.7 - 0.3*0.7 = 0.49 0.49 - 0.3*0.49 = 0.343 0.343 - 0.3(0.343) = 0.2401 . . . Clearly if we keep g...") Tag: Visual edit
- 17:24, 6 August 2025 Dan talk contribs created page Internal:Documents (Created page with "<h2> Document Design Ideas </h2> * How should we represent URL vs contents of the URL? Document and sub-document? * Rendering of documents based on type * Identification of the actual source of a document * Probably drop text_id, I’m not sure what it is for, since it looks like we have a separate field now to contain the text. One of these two probably needs to go. * We should probably collapse text and body into a single field, with data type represented by mime_type....")
- 18:40, 28 July 2025 Dan talk contribs created page Internal:Filtering and Source Analysis (Created page with "<h2> Potentially useful filters </h2> <h4> New information </h4> * Current events (consequential to the reader, topic of interest, controversial) * New discoveries in science, engineering, sociology, etc * Rating software changes * New polls * Proposals * Questions (as contrasted to polls, mainly seeking answers to a single question, more like Q&A sites) <h4> Highly trusted users (users with high total delegations on one or more tags) </h4> <h2> Organizational users (...")
- 18:37, 27 July 2025 Pete talk contribs created page File:Flexible weighted delegation brainstorming 68.xlsx
- 18:37, 27 July 2025 Pete talk contribs uploaded File:Flexible weighted delegation brainstorming 68.xlsx
- 18:18, 27 July 2025 Pete talk contribs created page Internal:Brainstorming 68 (Created page with "<h4>Flexible weighted delegation algorithm</h4> One problem with the traditional weighted delegation algorithm was that users could not delegate more than their initial weight. Therefore they could not delegate the weight given to them by others. The fixed percentage weighted delegation algorithm corrects this problem but introduces other issues that will need to be dealt with (we will do this in a subsequent write-up). The method proposed here is a direct extension of...") Tag: Visual edit
- 20:28, 20 July 2025 Pete talk contribs created page Internal:Brainstorming 67 (Created page with "In general this is the system of equations to be solved: For every <math>1 \le i \le N-1</math>, we can write the following equation: <math>\sum_{j=1}^{N} D_{ij}W_{i} = \sum_{j=1}^{N} D_{ji}W_{j}</math> where <math>i \ne j</math> and <math>\sum_{i=1}^{N} W_i = N</math> where <math>W_i</math> is the weight of voter <math>i</math> <math>D_{ij}</math> is the delegation percentage from voter <math>i</math> to voter <math>j</math> <math>N</math> is the total populatio...") Tag: Visual edit
- 11:41, 13 July 2025 Jebkerman talk contribs created page Internal:Comments on Definitions (Created page with "On this page, I will document my thoughts on proposition definitions, and my comments on the points made on this page: Internal:Proposition Definitions") Tag: Visual edit
- 20:45, 9 July 2025 Dan talk contribs created page Internal:Annotating Sources (Created page with "<h2> Sources and source link annotation </h2> External sources can be both users and entities that don't use the software. To simplify things, we will create an external source for every user, and add a field to the user table for the id of their external source record. <pre> ALTER TABLE users ADD COLUMN external_source_id INT NOT NULL; CREATE TABLE external_sources : user_created name : TEXT url: TEXT type of external source: person, ai/computation, organization (grou...")
- 20:16, 6 July 2025 Pete talk contribs created page File:Moreweight3.png
- 20:16, 6 July 2025 Pete talk contribs uploaded File:Moreweight3.png
- 20:15, 6 July 2025 Pete talk contribs created page File:Moreweight2.png
- 20:15, 6 July 2025 Pete talk contribs uploaded File:Moreweight2.png
- 20:15, 6 July 2025 Pete talk contribs created page File:Moreweight1.png
- 20:15, 6 July 2025 Pete talk contribs uploaded File:Moreweight1.png
- 16:10, 6 July 2025 Pete talk contribs created page Internal:Brainstorming 66 (Created page with "xxx") Tag: Visual edit
- 21:35, 30 June 2025 Pete talk contribs created page File:Delegations convo claude1.zip
- 21:35, 30 June 2025 Pete talk contribs uploaded File:Delegations convo claude1.zip
- 21:26, 30 June 2025 Pete talk contribs created page File:Delegations convo claude.pdf
- 21:26, 30 June 2025 Pete talk contribs uploaded File:Delegations convo claude.pdf
- 18:28, 30 June 2025 Pete talk contribs created page File:All delegations table.png
- 18:28, 30 June 2025 Pete talk contribs uploaded File:All delegations table.png
- 14:19, 30 June 2025 Pete talk contribs created page Internal:Brainstorming 65 (Created page with "<h4>Negative weight -- the legitimacy issue</h4> The main issue in negative weight assignment concerns legitimacy. Is it right to take someone's voting power away? Dan raised the idea that simply voting for an alternative is mathematically the same thing. It is. In any voting scenario, a vote to take someone's power away can be equated to a conventional "vote for someone else" strategy. Let's look at a standard election between two candidates who receive the following v...") Tag: Visual edit
- 21:55, 29 June 2025 Dan talk contribs created page Internal:Exploratory discussions (Created page with "<h2>Exploratory discussions</h2> In this flow, the discussion will typically begin with a document describing the purpose of the discussion. This document will have two purposes: 1) it invites the creation of follow-on documents, definitions, and propositions and 2) it serves as an initial “context” for these subsequent objects. Here’s a typical sequence of events: # One or more people create the initial document describing the topic to be explored. # Depending...")
- 21:50, 29 June 2025 Dan talk contribs created page Internal:Proposition Definitions (Created page with "Definition disputes When a proposition is first created, its likely that it will use words without explicitly defining their meaning using a definition object. Any definition added thereafter could conflict with the definition assumed by the readers who already voted on the proposition. This can result in a condition where later readers incorrectly assume that such voters accepted this definition when they really didn’t, and their vote doesn’t mean what it would see...") Tag: Visual edit
- 18:36, 26 June 2025 Pete talk contribs uploaded a new version of File:013 rating calculation data.txt
- 15:59, 26 June 2025 Pete talk contribs created page File:013 rating calculation data.txt
- 15:59, 26 June 2025 Pete talk contribs uploaded File:013 rating calculation data.txt
- 15:36, 26 June 2025 Pete talk contribs created page File:012 rating calculation functions.txt
- 15:36, 26 June 2025 Pete talk contribs uploaded File:012 rating calculation functions.txt
- 15:34, 26 June 2025 Pete talk contribs created page File:Claude weighted delegation.txt