SlideShare una empresa de Scribd logo
1 de 98
Descargar para leer sin conexión
Hacker News
          vs.
       Slashdot
    Reputation Systems in
Crowdsourced Technology News

 Robert Lehmann, Christoph Matthies
      (@rlehmann)    (@chrisma0)
                                      Nov 2012
1000




2000




3000




       2011   2012
Slashdot
●
●
●

●
    ○
●
●
●
    ○
Slashdot users




alexa.com, Nov 25th 2012
$ $
+1, Insightful



Unfair
●

●

●

●

●
+1, Insightful
“
    ■

    ■
+1, Insightful



Unfair
+1 / -1



Unfair
○
                                                         ○
                                                         ○
                                                         ○


                             -10         -1          0       12   25




Defaults in Slash CMS (slashcode/sql/mysql/defaults.sql)
Hacker News
●
●
    ○
●
●
●
●




“
    If you apply for YC and get
    rejected, pg [Paul Graham] may
    follow-up with an explanation just
    because you have a high score.
Hacker News users




alexa.com, Nov 25th 2012
“
         Anything that good hackers would find interesting.
          That includes more than hacking and startups.
If you had to reduce it to a sentence, the answer might be:
          anything that gratifies one's intellectual curiosity.
Upvotes
Upvotes
no duplicate votes
  once you have voted
kinda bookmarks




not only endorsements
scale
rewards
report inappropriate content
reply flag


             (spam or offtopic, for stories too)
new story type: polls
change top color
         (yay! o/)
downvotes for comments only
comment score below zero


(def comment-color (c)
  (if (> c!score 0) black (grayrange c!score)))
Community Nature
Four design goals for distributed moderation systems
Four design goals for distributed moderation systems
Four design goals for distributed moderation systems
Four design goals for distributed moderation systems
Four design goals for distributed moderation systems
Effectiveness of metamoderation on Slashdot



 % of
 moderations
 reversed




                Metamoderation's agreement with fairness
                            of moderation
Other considerations
Other considerations
Other considerations
Other considerations
Other considerations
political discussion



●                  ●
●                  ●
    ○

●
    ○
●
    ○

●
buried treasures
Is this a
problem?
% of
moderations
reversed




              Metamoderation's agreement with
                  fairness of moderation
How? Attention Deficit
●
    ○


                                    29%   30%
                              25%
                         9%
How? Attention Deficit
●
    ○


●
    ○
    ○
How? Attention Deficit
●                        X II   ⅕
    ○


●                        X II

    ○
    ○

                         X II   ⅕
●
    ○
How? Information Cascade Effect
Information Cascade Effect
                as applicable to Slashdot




                    +3, Insightful


         explicitly visible comment scores
Remember, though though
      Remember,

All these effects don't have to be negative.

e.g. Information Cascade Effect can strengthen
good comments and further demote bad ones.
Lampe’s Solution [1]                   visible

                                                 hidden


          Adjust the damn comment filter.
before




         most recent
after




                   recently written         recently moderated
The four design goals in Lampe’s proposal
Lampe’s Solution
     as applied to Hacker News
Power to the people M2




             *
Encourage constant greatness




            *
protection mechanisms
cheating, the secret sauce
 (def vote-for (user i (o dir 'up))
 ● karma bombing prevention
   (unless (or ((votes user) i!id)
                (and (~live i) (isnt user i!by)))
      ○ prevent cabal against individual users
     (withs (ip    (logins* user)
 ● downvote ratio
             vote (list (seconds) ip user dir i!score))
       (unless (or (and (or (ignored user) (check-key user 'novote))
      ○ cannot cast too many downvotes
                         (isnt user i!by))
                    (and (is dir 'down)
 ● sockpuppet protection (~editor user)
                         (or (check-key user 'nodowns)
                             (> (downvote-ratio user) downvote-ratio-limit*)
                             ; prevention of karma-bombing
                             (just-downvoted user i!by)))
                    (and (~legit-user user)
                         (isnt user i!by)
                         (find [is (cadr _) ip] i!votes))
                    (and (isnt i!type 'pollopt)
                         (biased-voter i vote)))
         (++ i!score (case dir up 1 down -1))
and now a word from CmdrTaco
rigorous checks for legit posts
  ● HTTP Proxy
  ● maximum number of posts per day
  ● "trollishness"
     ○ half-lived amount of downvotes
                                      if ($constants->{comments_portscan}
  ● compresses too well (with Zlib)       && ( $constants->{comments_portscan} == 2
                                              || $constants->{comments_portscan} == 1 &&
     ○ ASCII art                  $user->{is_anon} )
                                      ) {
                                          my $is_trusted = $slashdb->checkAL2($user->{srcids},
       "nobody should be using that many wide
                                  'trusted');
       characters in the Standard English alphabet"
                                          if (!$is_trusted) {
                                              my $is_proxy = $slashdb->checkForOpenProxy
                                  ($user->{hostip});
                                              if ($is_proxy) {
                                                  $$error_message = getError('open proxy', {
  Anonymous Cowards punished harder.                  unencoded_ip
                                                      port
                                                                       => $ENV{REMOTE_ADDR},
                                                                   => $is_proxy,
                                                  });
                                                  $form_success = 0;
                                                  return;
                                              }
                                          }
                                      }
and now a word from CmdrTaco
rigorous filters for legit posts
  ● 7 whitespaces in the subject
     lots of space in the subject ... lots of space in the head.
  ● more than one character
     one character. Hmmm. Gee, might this be a troll?
  ● words longer than 80 letters           if ($constants->{comments_portscan}
                                               && ( $constants->{comments_portscan} == 2
     that's an awful long string of letters there! || $constants->{comments_portscan} == 1 &&
                                       $user->{is_anon} )
  ● 50% caps                               ) {
                                               my $is_trusted = $slashdb->checkAL2($user->{srcids},
                                       'trusted');
     PLEASE DON'T USE SO MANY CAPS.            if (!$is_trusted) {
     USING CAPS IS LIKE YELLING!                   my $is_proxy = $slashdb->checkForOpenProxy
                                       ($user->{hostip});

  ● "feces", "goatse.cx"                           if ($is_proxy) {
                                                       $$error_message = getError('open proxy', {
                                                           unencoded_ip     => $ENV{REMOTE_ADDR},
     too smelly to submit                                  port         => $is_proxy,
                                                       });
                                                       $form_success = 0;
                                                       return;
                                                   }
                                               }
                                           }
banhammer
Use -f to forcibly slap
     warning if a user has more than 10 Karma




● Karma: Terrible (-10) ● Karma: Terrible (-10)
● default comment         ● revoke all
  score of -1               moderation points
● set all comment
  scores to Offtopic (-1)
nuke
blast                      blast
    kill submission            +ban the site
               +
              ban user
hellbanning
                  ●

                  ●

                  ●

                  ●




“
a hellbanned user is likely to get bored or
frustrated and leave [...]
the silent treatment is the cruelest
punishment of them all. [1]
                             — Jeff Atwood
Backup slides
General cheating (this always works)


             ●
             ●
             ●
             ●
             ●
             ●
Gaming the System
●



●

●



●

●




●



●

●
“
unless ($opts{'f'}) {
    die <<ERR if $user->{karma} > 10;
User $_ has a karma of $user->{karma}. Slap aborted. Use -f to forcibly slap.
ERR
}

print "Bitch Slapping #$_...n";
print "Karma Reducedn";
print "Default Score Reducedn";
$slashdb->setUser($_, {
        -karma           => $constants->{badkarma},
        -defaultpoints => -1,
});

print "ALL live comments moderated downnn";
$slashdb->sqlDo("UPDATE comments SET points=-1,reason=1 WHERE uid=$_");


                   Exhibit A — source of bitchslap (Slashdot)
Moderation adjectives
Tweaking options on Slashdot
Basic Social Media
Submit-Publish
Slashdot submission overview
Hacker News submission overview
Comment overview on Slashdot
Hacker News comment overview
Distribution of comment scores on Slashdot

Más contenido relacionado

La actualidad más candente

The Ruby/mongoDB ecosystem
The Ruby/mongoDB ecosystemThe Ruby/mongoDB ecosystem
The Ruby/mongoDB ecosystem
Harold Giménez
 
Just css results dogmeat template validator
Just css results dogmeat template validatorJust css results dogmeat template validator
Just css results dogmeat template validator
Gaejang Guk
 
Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)
brian d foy
 
CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)
brian d foy
 

La actualidad más candente (17)

The Ruby/mongoDB ecosystem
The Ruby/mongoDB ecosystemThe Ruby/mongoDB ecosystem
The Ruby/mongoDB ecosystem
 
Object Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHPObject Calisthenics Adapted for PHP
Object Calisthenics Adapted for PHP
 
How to Become a Tree Hugger: Random Forests and Predictive Modeling for Devel...
How to Become a Tree Hugger: Random Forests and Predictive Modeling for Devel...How to Become a Tree Hugger: Random Forests and Predictive Modeling for Devel...
How to Become a Tree Hugger: Random Forests and Predictive Modeling for Devel...
 
Achieving Parsing Sanity In Erlang
Achieving Parsing Sanity In ErlangAchieving Parsing Sanity In Erlang
Achieving Parsing Sanity In Erlang
 
Business Rules with Brick
Business Rules with BrickBusiness Rules with Brick
Business Rules with Brick
 
apidays LIVE New York - WT* is JWT? by Maciej Treder
apidays LIVE New York -  WT* is JWT? by Maciej Trederapidays LIVE New York -  WT* is JWT? by Maciej Treder
apidays LIVE New York - WT* is JWT? by Maciej Treder
 
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
Analysis of Fatal Utah Avalanches with Python. From Scraping, Analysis, to In...
 
Just css results dogmeat template validator
Just css results dogmeat template validatorJust css results dogmeat template validator
Just css results dogmeat template validator
 
Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)Benchmarking Perl (Chicago UniForum 2006)
Benchmarking Perl (Chicago UniForum 2006)
 
Ccc
CccCcc
Ccc
 
Wx::Perl::Smart
Wx::Perl::SmartWx::Perl::Smart
Wx::Perl::Smart
 
RAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAMRAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAM
 
CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)CGI::Prototype (NPW 2006)
CGI::Prototype (NPW 2006)
 
Berlinsides 2015
Berlinsides 2015Berlinsides 2015
Berlinsides 2015
 
Coding Horrors
Coding HorrorsCoding Horrors
Coding Horrors
 
Domain-Specific Languages in der Praxis
Domain-Specific Languages in der PraxisDomain-Specific Languages in der Praxis
Domain-Specific Languages in der Praxis
 
Dart - en ny platform til webudvikling af Rico Wind, Google
Dart - en ny platform til webudvikling af Rico Wind, GoogleDart - en ny platform til webudvikling af Rico Wind, Google
Dart - en ny platform til webudvikling af Rico Wind, Google
 

Similar a Hacker News vs. Slashdot—Reputation Systems in Crowdsourced Technology News

OWASP PHPIDS talk slides
OWASP PHPIDS talk slidesOWASP PHPIDS talk slides
OWASP PHPIDS talk slides
guestd34230
 
A Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented PhpA Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented Php
Michael Girouard
 
Building Better Applications with Data::Manager
Building Better Applications with Data::ManagerBuilding Better Applications with Data::Manager
Building Better Applications with Data::Manager
Jay Shirley
 
Rapid Development with Ruby/JRuby and Rails
Rapid Development with Ruby/JRuby and RailsRapid Development with Ruby/JRuby and Rails
Rapid Development with Ruby/JRuby and Rails
elliando dias
 

Similar a Hacker News vs. Slashdot—Reputation Systems in Crowdsourced Technology News (20)

Alexander Makarov "Let’s talk about code"
Alexander Makarov "Let’s talk about code"Alexander Makarov "Let’s talk about code"
Alexander Makarov "Let’s talk about code"
 
Zend Certification PHP 5 Sample Questions
Zend Certification PHP 5 Sample QuestionsZend Certification PHP 5 Sample Questions
Zend Certification PHP 5 Sample Questions
 
OWASP PHPIDS talk slides
OWASP PHPIDS talk slidesOWASP PHPIDS talk slides
OWASP PHPIDS talk slides
 
A Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented PhpA Gentle Introduction To Object Oriented Php
A Gentle Introduction To Object Oriented Php
 
Experimental dtrace
Experimental dtraceExperimental dtrace
Experimental dtrace
 
Clean code & design patterns
Clean code & design patternsClean code & design patterns
Clean code & design patterns
 
Object::Franger: Wear a Raincoat in your Code
Object::Franger: Wear a Raincoat in your CodeObject::Franger: Wear a Raincoat in your Code
Object::Franger: Wear a Raincoat in your Code
 
Building Better Applications with Data::Manager
Building Better Applications with Data::ManagerBuilding Better Applications with Data::Manager
Building Better Applications with Data::Manager
 
Top 10 php classic traps confoo
Top 10 php classic traps confooTop 10 php classic traps confoo
Top 10 php classic traps confoo
 
Building Testable PHP Applications
Building Testable PHP ApplicationsBuilding Testable PHP Applications
Building Testable PHP Applications
 
Clojure class
Clojure classClojure class
Clojure class
 
Rapid Development with Ruby/JRuby and Rails
Rapid Development with Ruby/JRuby and RailsRapid Development with Ruby/JRuby and Rails
Rapid Development with Ruby/JRuby and Rails
 
SOLID Ruby SOLID Rails
SOLID Ruby SOLID RailsSOLID Ruby SOLID Rails
SOLID Ruby SOLID Rails
 
Dynomite at Erlang Factory
Dynomite at Erlang FactoryDynomite at Erlang Factory
Dynomite at Erlang Factory
 
Writing Macros
Writing MacrosWriting Macros
Writing Macros
 
SOLID Ruby, SOLID Rails
SOLID Ruby, SOLID RailsSOLID Ruby, SOLID Rails
SOLID Ruby, SOLID Rails
 
Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2Zend Framework Study@Tokyo #2
Zend Framework Study@Tokyo #2
 
Dip Your Toes in the Sea of Security (PHP UK 2016)
Dip Your Toes in the Sea of Security (PHP UK 2016)Dip Your Toes in the Sea of Security (PHP UK 2016)
Dip Your Toes in the Sea of Security (PHP UK 2016)
 
Let's write secure Drupal code! - DrupalCamp London 2019
Let's write secure Drupal code! - DrupalCamp London 2019Let's write secure Drupal code! - DrupalCamp London 2019
Let's write secure Drupal code! - DrupalCamp London 2019
 
Drupal 8 migrate!
Drupal 8 migrate!Drupal 8 migrate!
Drupal 8 migrate!
 

Más de Christoph Matthies

Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
Christoph Matthies
 

Más de Christoph Matthies (20)

Investigating Software Engineering Artifacts in DevOps Through the Lens of Bo...
Investigating Software Engineering Artifacts in DevOps Through the Lens of Bo...Investigating Software Engineering Artifacts in DevOps Through the Lens of Bo...
Investigating Software Engineering Artifacts in DevOps Through the Lens of Bo...
 
Automated Exercises & Software Development Data
Automated Exercises & Software Development DataAutomated Exercises & Software Development Data
Automated Exercises & Software Development Data
 
Challenges (and Opportunities!) of a Remote Agile Software Engineering Projec...
Challenges (and Opportunities!) of a Remote Agile Software Engineering Projec...Challenges (and Opportunities!) of a Remote Agile Software Engineering Projec...
Challenges (and Opportunities!) of a Remote Agile Software Engineering Projec...
 
Experience vs Data: A Case for More Data-informed Retrospective Activities
Experience vs Data: A Case for More Data-informed Retrospective ActivitiesExperience vs Data: A Case for More Data-informed Retrospective Activities
Experience vs Data: A Case for More Data-informed Retrospective Activities
 
More than Code: Contributions in Scrum Software Engineering Teams
More than Code: Contributions in Scrum Software Engineering TeamsMore than Code: Contributions in Scrum Software Engineering Teams
More than Code: Contributions in Scrum Software Engineering Teams
 
Agile Software Development Practices: Perceptions & Project Data
Agile Software Development Practices: Perceptions & Project DataAgile Software Development Practices: Perceptions & Project Data
Agile Software Development Practices: Perceptions & Project Data
 
The Road to Data-Informed Agile Development Processes
The Road to Data-Informed Agile Development ProcessesThe Road to Data-Informed Agile Development Processes
The Road to Data-Informed Agile Development Processes
 
Counteracting Agile Retrospective Problems with Retrospective Activities
Counteracting Agile Retrospective Problems with Retrospective ActivitiesCounteracting Agile Retrospective Problems with Retrospective Activities
Counteracting Agile Retrospective Problems with Retrospective Activities
 
Using Data to Inform Decisions in Agile Software Development
Using Data to Inform Decisions in Agile Software Development Using Data to Inform Decisions in Agile Software Development
Using Data to Inform Decisions in Agile Software Development
 
An Additional Set of (Automated) Eyes: Chatbots for Agile Retrospectives
An Additional Set of (Automated) Eyes: Chatbots for Agile RetrospectivesAn Additional Set of (Automated) Eyes: Chatbots for Agile Retrospectives
An Additional Set of (Automated) Eyes: Chatbots for Agile Retrospectives
 
Feedback in Scrum: Data-Informed Retrospectives
Feedback in Scrum: Data-Informed Retrospectives Feedback in Scrum: Data-Informed Retrospectives
Feedback in Scrum: Data-Informed Retrospectives
 
Beyond Surveys: Analyzing Software Development Artifacts to Assess Teaching E...
Beyond Surveys: Analyzing Software Development Artifacts to Assess Teaching E...Beyond Surveys: Analyzing Software Development Artifacts to Assess Teaching E...
Beyond Surveys: Analyzing Software Development Artifacts to Assess Teaching E...
 
Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
Scrum2Kanban: Integrating Kanban and Scrum in a University Software Engineeri...
 
Should I Bug You? Identifying Domain Experts in Software Projects Using Code...
 Should I Bug You? Identifying Domain Experts in Software Projects Using Code... Should I Bug You? Identifying Domain Experts in Software Projects Using Code...
Should I Bug You? Identifying Domain Experts in Software Projects Using Code...
 
Introduction to Lean Software & Kanban
Introduction to Lean Software & KanbanIntroduction to Lean Software & Kanban
Introduction to Lean Software & Kanban
 
Lightweight Collection and Storage of Software Repository Data with DataRover
Lightweight Collection and Storage of  Software Repository Data with DataRoverLightweight Collection and Storage of  Software Repository Data with DataRover
Lightweight Collection and Storage of Software Repository Data with DataRover
 
Pybelsberg — Constraint-based Programming in Python
Pybelsberg — Constraint-based Programming in PythonPybelsberg — Constraint-based Programming in Python
Pybelsberg — Constraint-based Programming in Python
 
Git Tricks — git utilities that make life git easier
Git Tricks — git utilities that make life git easierGit Tricks — git utilities that make life git easier
Git Tricks — git utilities that make life git easier
 
How to reverse engineer Android applications—using a popular word game as an ...
How to reverse engineer Android applications—using a popular word game as an ...How to reverse engineer Android applications—using a popular word game as an ...
How to reverse engineer Android applications—using a popular word game as an ...
 
Beat Your Mom At Solitaire—Reverse Engineering of Computer Games
Beat Your Mom At Solitaire—Reverse Engineering of Computer GamesBeat Your Mom At Solitaire—Reverse Engineering of Computer Games
Beat Your Mom At Solitaire—Reverse Engineering of Computer Games
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 

Hacker News vs. Slashdot—Reputation Systems in Crowdsourced Technology News