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).
- 14:10, 6 September 2025 Pete talk contribs created page Internal:Brainstorming 72 (Created page with "dd") Tag: Visual edit
- 14:53, 3 September 2025 Pete talk contribs created page File:Delegation algorithms summary3.png
- 14:53, 3 September 2025 Pete talk contribs uploaded File:Delegation algorithms summary3.png
- 17:27, 1 September 2025 Pete talk contribs created page File:Delegation algorithms summary2.png
- 17:27, 1 September 2025 Pete talk contribs uploaded File:Delegation algorithms summary2.png
- 16:40, 1 September 2025 Pete talk contribs created page File:Delegation algorithms summary.png
- 16:40, 1 September 2025 Pete talk contribs uploaded File:Delegation algorithms summary.png
- 19:21, 31 August 2025 Pete talk contribs created page Internal:Brainstorming 71 (Created page with "The algorithms named fixedpercweightdel and receivedweightdel (their username in the users table) have been commented out in R__008_rating_calculation_data.sql and do not appear in the "Rating Bot" list in Settings anymore. They have also been removed from the table in the Add Delegation dialog where they were named Fixedperc and Recwt respectively. Removal was done by commenting out the appropriate lines in discussion-shared-ui.tsx. These algorithms were replaced by...") Tag: Visual edit
- 12:54, 25 August 2025 Jebkerman talk contribs created page Internal:Communication Path Extensions and Analysis (Created page with "== Extensions == === Simple End-to-Start Extension === tbd === Extension in the Middle === tbd == Analysis == === Comparing Communication Paths for Congruence === tbd === Checking for Sub-path === tbd") Tag: Visual edit
- 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