<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NJDQ3X7');</script> <!-- End Google Tag Manager -->

RateItAll.com - The Opinion Network
1) Find and share opinions on anything; 2) Publish your own ratings list and share it on any site; 3) Make a little money

Tags for Reasons why Paris Hilton got out early (Browse Tags)
Shortcuts
 

Topic Sponsors

Reasons why Paris Hilton got out early  (By Ridgewalker (117) on 06/07/2007)

Reviewer

Update: Thought that the bet was lost when Paris got liberated after 3 days. But she's back in to do 45, so the bet's still alive. Original: Since I just lost a 100 cookie bet to Tracy, I want to know why Paris Hilton got out of her prison sentence after only 3 days. Suggestions welcome, as always. 5 = Good enough for the judge (The photo is what Paris will look like in 35 years) 5 = Good enough for the Tracy!

 
 
Item (Reviews)RatingsShare Your Opinion
She didn't want to spend the night in AZ's "Tent City", ruled by Sherrif Joe Arpaio (Blue Orchid) (3)  5.00 (3)   Rate It!
Couldn’t stand looking into mirror without make-up (2)  5.00 (2)   Rate It!
Claims other inmates cheated at Gin Rummy (1)  5.00 (1)   Rate It!
Because the system doesn't treat everyone the same (rocker) (12)  4.69 (13)   Rate It!
She’s a rich celebrity who doesn’t have to do time if she doesn’t want to (16)  4.69 (16)   Rate It!
Inferior drugs inside/Poor wine selection (6)  4.67 (6)   Rate It!
Cavity searches weren’t satisfying (6)  4.33 (6)   Rate It!
Warden thought she was an escape risk, since she could slide through bars (4)  4.25 (4)   Rate It!
They made her wear underwear (8)  4.13 (8)   Rate It!
Her crying all the time bugged the guards (numbah) (3)  4.00 (3)   Rate It!
Didn’t like her prison number (7)  3.71 (7)   Rate It!
Whoa! Slow down...She may be going back in to finish her sentence (10)  3.70 (10)   Rate It!
The prison colors gave her a headache (2)  3.50 (2)   Rate It!
The Prison Uniform Made Her Look 'Fat'(thanks to ILikePie) (2)  3.50 (2)   Rate It!
The chocolate chip cookies sucked (2)  3.00 (2)   Rate It!
Because Even People in Law Enforcement in the USA No Longer Have Spines and/or Balls (2)  2.50 (2)   Rate It!
Shes too smart to be amoung other inmates(hey wiseguy) (1)  2.00 (1)   Rate It!
Wouldn’t provide her with her usual diet of YooHoos and Devil Dogs (1)  2.00 (1)   Rate It!
Decided to make prison reform her life's work (3)  1.67 (3)   Rate It!
She missed Lyndsay (2)  1.00 (2)   Rate It!
1-20 OF 29  ( NEXT 20) View All
Browse next Topic:
RIA's Brainy Dozen
0 Sort Items by:

<!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NJDQ3X7" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <style media="screen"> #mypopups-substrate-60107 { display: none;max-width: calc(100vw - 100px); } #mypopups-modal-60107 { display: none; } #mypopups-substrate-60107 { display: block; } </style> <script type="text/javascript"> function _getRand(min, max) { return Math.floor(Math.random() * (max - min + 1) ) + min; } function _getStars() { let completeRating = _getRand(1, 50); let partialRating = completeRating % 10; let partial = `active0${partialRating}`; let rating = parseInt(completeRating / 10); let div = document.createElement('DIV'); div.classList.add('rated'); let span_terrible = document.createElement('SPAN'); span_terrible.setAttribute('title', 'Terrible'); let span_bad = document.createElement('SPAN'); span_bad.setAttribute('title', 'Bad'); let span_ok = document.createElement('SPAN'); span_ok.setAttribute('title', 'Ok'); let span_good = document.createElement('SPAN'); span_good.setAttribute('title', 'Good'); let span_great = document.createElement('SPAN'); span_great.setAttribute('title', 'Great!'); let partial_given = false; if (rating >= 1) { span_terrible.classList.add('active10'); } else if (partialRating > 0 && !partial_given) { span_terrible.classList.add(partial); partial_given = true; } if (rating >= 2) { span_bad.classList.add('active10'); } else if (partialRating > 0 && !partial_given) { span_bad.classList.add(partial); partial_given = true; } if (rating >= 3) { span_ok.classList.add('active10'); } else if (partialRating > 0 && !partial_given) { span_ok.classList.add(partial); partial_given = true; } if (rating >= 4) { span_good.classList.add('active10'); } else if (partialRating > 0 && !partial_given) { span_good.classList.add(partial); partial_given = true; } if (rating >= 5) { span_great.classList.add('active10'); } else if (partialRating > 0 && !partial_given) { span_great.classList.add(partial); partial_given = true; } div.appendChild(span_terrible); div.appendChild(span_bad); div.appendChild(span_ok); div.appendChild(span_good); div.appendChild(span_great); return { div: div, rating: rating, completeRating: completeRating } } let byRating = [ 'Terrible', 'Terrible', 'Bad', 'Ok', 'Good', 'Great!' ]; let stars = document.querySelectorAll('.stars'); let largeStars = document.querySelectorAll('.largeStars'); stars.forEach((el) => { if (!el.querySelector('.rated')) { let rate = _getStars(); let text = byRating[rate.rating]; el.appendChild(rate.div); let starDesc = el.querySelector('.starDesc'); if (starDesc) { starDesc.innerText = text; } } }); largeStars.forEach((el) => { if (!el.querySelector('.rated')) { let rate = _getStars(); let text = byRating[rate.rating]; el.appendChild(rate.div); let avgparent = el.closest('.rating').querySelector('.average'); if (avgparent) { avgparent.innerText = (rate.completeRating / 10).toFixed(2); } let countparent = el.closest('.rating').querySelector('b.count'); if (countparent) { countparent.innerText = _getRand(12, 582); } } }); </script> <script src="https://mypopups.com/api/embed/element?sub=c3db8944-cc82-11ec-a8ad-005056008dab-eoksmsosoq"></script> <script type="text/javascript" defer> (function() { var mCheck; function checkForModal() { let screenWidth = Math.max( // document.body.scrollWidth, // document.documentElement.scrollWidth, document.body.offsetWidth, // document.documentElement.offsetWidth, document.documentElement.clientWidth ); if (screenWidth > 768) { if (typeof showModal60107 == 'function') { showModal60107(); clearInterval(mCheck); let modal = document.querySelector("#mypopups-modal-60107"); let substrate = document.querySelector("#mypopups-substrate-60107"); if (modal && substrate) { modal.style.position = 'relative'; substrate.style.position = 'relative'; modal.style.display = 'block'; substrate.style.display = 'block'; } else { // console.log('Modal not found.'); } } } else { if (typeof showModal60125 == 'function') { showModal60125(); clearInterval(mCheck); let modal = document.querySelector("#mypopups-modal-60125"); let substrate = document.querySelector("#mypopups-substrate-60125"); if (modal && substrate) { modal.style.position = 'relative'; substrate.style.position = 'relative'; modal.style.display = 'block'; substrate.style.display = 'block'; modal.style.height = '50vh'; modal.style.transform = ''; } else { // console.log('Modal not found.'); } } } } mCheck = setInterval(checkForModal, 300); })(); </script>