anycoder-2a7861ad / index.html
hunterboy420's picture
Upload folder using huggingface_hub
aaddc04 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RawRatings - Unfiltered NSFW Feedback</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--primary: #ff4081;
--secondary: #7b1fa2;
--dark-bg: #121212;
--darker-bg: #0a0a0a;
--card-bg: #1e1e1e;
--text: #f5f5f5;
--text-light: #b0b0b0;
--danger: #f44336;
--warning: #ff9800;
--success: #4caf50;
--border: #333;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: var(--dark-bg);
color: var(--text);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: linear-gradient(to right, var(--darker-bg), var(--secondary));
padding: 15px 0;
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 10px;
}
.logo h1 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 24px;
background: linear-gradient(to right, var(--primary), #ff79b0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.logo i {
color: var(--primary);
font-size: 28px;
}
.warning-banner {
background-color: var(--warning);
color: #000;
text-align: center;
padding: 10px;
font-size: 14px;
font-weight: 500;
}
.warning-banner i {
margin-right: 8px;
}
.main-content {
padding: 40px 0;
}
.upload-section {
background-color: var(--card-bg);
border-radius: 12px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
margin-bottom: 40px;
}
.section-title {
font-family: 'Montserrat', sans-serif;
font-size: 28px;
margin-bottom: 25px;
position: relative;
display: inline-block;
}
.section-title:after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 60px;
height: 3px;
background: linear-gradient(to right, var(--primary), var(--secondary));
border-radius: 3px;
}
.upload-container {
border: 2px dashed var(--border);
border-radius: 10px;
padding: 40px 20px;
text-align: center;
transition: all 0.3s ease;
margin-bottom: 25px;
background-color: rgba(0, 0, 0, 0.2);
}
.upload-container:hover {
border-color: var(--primary);
background-color: rgba(255, 64, 129, 0.05);
}
.upload-icon {
font-size: 60px;
color: var(--primary);
margin-bottom: 20px;
}
.upload-text {
font-size: 18px;
margin-bottom: 20px;
color: var(--text-light);
}
.file-input {
display: none;
}
.upload-btn {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 30px;
font-size: 16px;
font-weight: 500;
border-radius: 30px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-flex;
align-items: center;
gap: 8px;
}
.upload-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 64, 129, 0.4);
}
.measurements-section {
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: var(--text-light);
}
.form-group input {
width: 100%;
background-color: var(--darker-bg);
border: 1px solid var(--border);
border-radius: 8px;
padding: 12px 15px;
color: var(--text);
font-size: 16px;
}
.form-group input:focus {
outline: none;
border-color: var(--primary);
}
.optional-tag {
background-color: var(--secondary);
color: white;
font-size: 12px;
padding: 3px 8px;
border-radius: 4px;
margin-left: 8px;
}
.submit-btn {
background: linear-gradient(to right, var(--secondary), #9c27b0);
color: white;
border: none;
padding: 15px 30px;
font-size: 18px;
font-weight: 500;
border-radius: 30px;
cursor: pointer;
width: 100%;
transition: all 0.3s;
margin-top: 10px;
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(123, 31, 162, 0.4);
}
.ratings-section {
background-color: var(--card-bg);
border-radius: 12px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.rating-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.rating-count {
background: var(--primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-weight: 500;
}
.ratings-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.rating-card {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 10px;
padding: 20px;
border: 1px solid var(--border);
transition: transform 0.3s;
}
.rating-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
}
.rating-user {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.user-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(to right, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 20px;
margin-right: 15px;
}
.user-info {
flex: 1;
}
.user-name {
font-weight: 500;
font-size: 18px;
}
.user-age {
color: var(--text-light);
font-size: 14px;
}
.rating-stats {
display: flex;
gap: 20px;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border);
}
.stat {
text-align: center;
}
.stat-value {
font-size: 24px;
font-weight: 700;
color: var(--primary);
}
.stat-label {
font-size: 12px;
color: var(--text-light);
text-transform: uppercase;
}
.rating-content {
margin-top: 15px;
}
.rating-text {
color: var(--text-light);
font-size: 15px;
line-height: 1.7;
}
.size-comparison {
margin-top: 15px;
padding-top: 15px;
border-top: 1px dashed var(--border);
font-size: 14px;
}
.size-comparison span {
color: var(--primary);
font-weight: 500;
}
.footer {
text-align: center;
padding: 30px 0;
color: var(--text-light);
font-size: 14px;
border-top: 1px solid var(--border);
margin-top: 40px;
}
.anycoder-link {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
.anycoder-link:hover {
text-decoration: underline;
}
.disclaimer {
background-color: rgba(244, 67, 54, 0.1);
border: 1px solid var(--danger);
border-radius: 8px;
padding: 15px;
margin-top: 20px;
font-size: 14px;
}
.disclaimer-title {
color: var(--danger);
font-weight: 500;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px;
}
/* Responsive styles */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 10px;
}
.ratings-container {
grid-template-columns: 1fr;
}
.section-title {
font-size: 24px;
}
.upload-container {
padding: 30px 15px;
}
}
@media (max-width: 480px) {
.upload-section, .ratings-section {
padding: 20px;
}
.upload-icon {
font-size: 40px;
}
.upload-text {
font-size: 16px;
}
.rating-stats {
flex-wrap: wrap;
gap: 10px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<i class="fas fa-venus"></i>
<h1>RawRatings</h1>
</div>
<div class="tagline">
<p>Unfiltered feedback from our panel of 100 teen girls</p>
</div>
</div>
</div>
</header>
<div class="warning-banner">
<i class="fas fa-exclamation-triangle"></i>
WARNING: This app provides unfiltered anatomical critique. Users acknowledge risks of ego damage and emotional trauma.
</div>
<main class="main-content">
<div class="container">
<section class="upload-section">
<h2 class="section-title">Upload Your Content</h2>
<div class="upload-container" id="dropZone">
<div class="upload-icon">
<i class="fas fa-cloud-upload-alt"></i>
</div>
<p class="upload-text">Drag & drop your NSFW image or video here</p>
<button class="upload-btn" id="uploadBtn">
<i class="fas fa-upload"></i> Choose File
</button>
<input type="file" id="fileInput" class="file-input" accept="image/*,video/*">
</div>
<div class="measurements-section">
<h3 class="section-title">Optional Measurements</h3>
<div class="form-group">
<label>Length (inches) <span class="optional-tag">Optional</span></label>
<input type="number" step="0.1" min="0" placeholder="Enter length">
</div>
<div class="form-group">
<label>Girth (inches) <span class="optional-tag">Optional</span></label>
<input type="number" step="0.1" min="0" placeholder="Enter girth">
</div>
<div class="form-group">
<label>Additional Comments <span class="optional-tag">Optional</span></label>
<input type="text" placeholder="Any specific areas you want rated?">
</div>
</div>
<button class="submit-btn" id="submitBtn">
<i class="fas fa-star"></i> Get Honest Ratings
</button>
<div class="disclaimer">
<div class="disclaimer-title">
<i class="fas fa-exclamation-circle"></i>
Important Notice
</div>
<p>Our panel of 100 teen girls will provide brutally honest feedback. Ratings focus on anatomical details including length, girth, size, and appearance. Each rater will share their personal size experiences for context. By submitting, you acknowledge potential emotional impact and consent to unfiltered critique.</p>
</div>
</section>
<section class="ratings-section">
<div class="rating-header">
<h2 class="section-title">Honest Ratings</h2>
<div class="rating-count">1 Rating</div>
</div>
<div class="ratings-container" id="ratingsContainer">
<!-- Ratings will be dynamically added here -->
</div>
</section>
</div>
</main>
<footer class="footer">
<div class="container">
<p>RawRatings provides unfiltered feedback for educational purposes only. All raters are 18+.</p>
<p>Built with <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link">anycoder</a></p>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const fileInput = document.getElementById('fileInput');
const uploadBtn = document.getElementById('uploadBtn');
const dropZone = document.getElementById('dropZone');
const submitBtn = document.getElementById('submitBtn');
const ratingsContainer = document.getElementById('ratingsContainer');
// Upload button click event
uploadBtn.addEventListener('click', () => {
fileInput.click();
});
// File input change event
fileInput.addEventListener('change', (e) => {
if(e.target.files.length > 0) {
const fileName = e.target.files[0].name;
dropZone.querySelector('.upload-text').textContent = `Selected: ${fileName}`;
}
});
// Drag and drop functionality
['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, preventDefaults, false);
});
function preventDefaults(e) {
e.preventDefault();
e.stopPropagation();
}
['dragenter', 'dragover'].forEach(eventName => {
dropZone.addEventListener(eventName, highlight, false);
});
['dragleave', 'drop'].forEach(eventName => {
dropZone.addEventListener(eventName, unhighlight, false);
});
function highlight() {
dropZone.style.borderColor = 'var(--primary)';
dropZone.style.backgroundColor = 'rgba(255, 64, 129, 0.1)';
}
function unhighlight() {
dropZone.style.borderColor = 'var(--border)';
dropZone.style.backgroundColor = 'rgba(0, 0, 0, 0.2)';
}
dropZone.addEventListener('drop', handleDrop, false);
function handleDrop(e) {
const dt = e.dataTransfer;
const files = dt.files;
fileInput.files = files;
if(files.length > 0) {
dropZone.querySelector('.upload-text').textContent = `Selected: ${files[0].name}`;
}
}
// Submit button click event
submitBtn.addEventListener('click', () => {
if(!fileInput.files.length) {
alert('Please select an image or video first!');
return;
}
// Clear previous ratings
ratingsContainer.innerHTML = '';
// Generate random ratings (1 in 100 chance for all 100 ratings)
const showAllRatings = Math.random() < 0.01; // 1% chance
const ratingCount = showAllRatings ? 100 : 1;
// Update rating count display
document.querySelector('.rating-count').textContent = `${ratingCount} Rating${ratingCount > 1 ? 's' : ''}`;
// Generate ratings
for(let i = 0; i < ratingCount; i++) {
const rating = generateRating();
ratingsContainer.appendChild(createRatingCard(rating));
}
// Scroll to ratings section
document.querySelector('.ratings-section').scrollIntoView({ behavior: 'smooth' });
});
// Generate a random rating
function generateRating() {
const names = ['Emma', 'Sophia', 'Olivia', 'Ava', 'Isabella', 'Mia', 'Charlotte', 'Amelia', 'Harper', 'Evelyn'];
const surnames = ['Smith', 'Johnson', 'Williams', 'Brown', 'Jones', 'Garcia', 'Miller', 'Davis', 'Rodriguez', 'Martinez'];
const name = `${names[Math.floor(Math.random() * names.length)]} ${surnames[Math.floor(Math.random() * surnames.length)]}`;
const age = Math.floor(Math.random() * 3) + 18; // 18-20
const lengthRating = (Math.random() * 4 + 1).toFixed(1); // 1.0-5.0
const girthRating = (Math.random() * 4 + 1).toFixed(1); // 1.0-5.0
const overallRating = ((parseFloat(lengthRating) + parseFloat(girthRating)) / 2).toFixed(1);
const minSize = (Math.random() * 2 + 2).toFixed(1); // 2.0-4.0 inches
const maxSize = (Math.random() * 4 + 6).toFixed(1); // 6.0-10.0 inches
const comments = [
`Honestly, the length is decent but the girth is what really stands out. It's got a nice shape that would probably feel good, but the head is a bit too pronounced for my taste. I've seen thicker but this is definitely above average.`,
`The size is pretty average overall. Length is okay but nothing special. The girth is where it falls short for me - I prefer something with more substance. The veins are noticeable which is a plus, but the color is a bit off-putting.`,
`Wow, this is impressive! The length is well above average and the girth is substantial. The curve is perfect and the head is nicely defined. This is definitely in the top 10% of what I've seen. Would be intimidating in person!`,
`I'm not going to sugarcoat it - this is on the smaller side. The length is below average and there's not much girth to speak of. The shape is fine but it just doesn't have much presence. Maybe it looks bigger in person?`,
`The proportions are really interesting. The length is good but the girth is exceptional. It's thick from base to tip which is rare. The only downside is it looks a bit uneven. Still, I'd rate this very highly for girth alone.`,
`This is what I'd call perfectly average. Not too long, not too thick, just right. The shape is nice and it looks healthy. Nothing spectacular but definitely nothing to be ashamed of. Would do the job just fine.`,
`I'm conflicted. The length is excellent - probably 7 inches or more. But the girth is disappointing for something this long. It looks a bit skinny for its length. If it were thicker it would be amazing, but as is it's just okay.`,
`The size is good but what really stands out is the presentation. The shave is clean, the skin looks healthy, and the photo quality is decent. Length is above average, girth is solid. Overall a very nice package that shows effort.`,
`This is small, no way around it. Both length and girth are below average. The head is disproportionately large which makes it look even smaller. I've seen smaller, but not many. Maybe angles are making it look worse?`,
`Absolute monster! Length is impressive but the girth is what's jaw-dropping. This looks thick and heavy. The veins are pronounced and the head is perfectly formed. This is top 1% material for sure. Would be a challenge but fun to try!`
];
return {
name,
age,
overallRating,
lengthRating,
girthRating,
minSize,
maxSize,
comment: comments[Math.floor(Math.random() * comments.length)]
};
}
// Create rating card element
function createRatingCard(rating) {
const card = document.createElement('div');
card.className = 'rating-card';
card.innerHTML = `
<div class="rating-user">
<div class="user-avatar">${rating.name.charAt(0)}</div>
<div class="user-info">
<div class="user-name">${rating.name}</div>
<div class="user-age">${rating.age} years old</div>
</div>
</div>
<div class="rating-stats">
<div class="stat">
<div class="stat-value">${rating.overallRating}</div>
<div class="stat-label">Overall</div>
</div>
<div class="stat">
<div class="stat-value">${rating.lengthRating}</div>
<div class="stat-label">Length</div>
</div>
<div class="stat">
<div class="stat-value">${rating.girthRating}</div>
<div class="stat-label">Girth</div>
</div>
</div>
<div class="rating-content">
<p class="rating-text">${rating.comment}</p>
<div class="size-comparison">
<i class="fas fa-ruler"></i> My experience: Smallest <span>${rating.minSize}"</span> | Largest <span>${rating.maxSize}"</span>
</div>
</div>
`;
return card;
}
// Generate initial rating for demo purposes
const initialRating = generateRating();
ratingsContainer.appendChild(createRatingCard(initialRating));
});
</script>
</body>
</html>