-
-
Save lillylangtree/b55828fa05ed3470d352 to your computer and use it in GitHub Desktop.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
| <title>Spoon-Knife</title> | |
| <LINK href="styles.css" rel="stylesheet" type="text/css"> | |
| </head> | |
| <body> | |
| <img src="forkit.gif" id="octocat" alt="" /> | |
| <!-- Feel free to change this text here --> | |
| <p> | |
| Fork me? Fork you, @octocat! | |
| </p> | |
| <p> | |
| Sean made a change | |
| </p> | |
| </body> | |
| </html> |
Hi This is Mitesh Patil web server
It is belongs to Pen-Raigad
MH06BY5401
Hi! Thanks for the index.html! I really need it to test something out! 👍
var apiKey = 'your_api_key'; // Replace with your actual OpenAI API key
var apiUrl = 'https://api.openai.com/v1/chat/completions';
var requestBody = {
model: 'gpt-3.5-turbo',
messages: [{
role: 'user',
content: storyPrompt
}],
temperature: 0.7
};
$.ajax({
type: 'POST',
url: apiUrl,
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + apiKey
},
data: JSON.stringify(requestBody),
success: function(response) {
$('#progressOverlay').hide(); // Hide progress overlay
addTypewriterEffect(response.choices[0].message.content, 'chatBody');
},
error: function(error) {
$('#progressOverlay').hide(); // Hide progress overlay on error
console.error('Error generating story:', error);
}
});
}
function formatResponseText(text) {
text = text.replace(/(https?:\/\/[^\s]+)/g, '<a href="$1" target="_blank">$1</a>');
text = text.replace(/^##\s?(.+)/gm, '<strong>$1</strong>');
text = text.replace(/^(\s*(?:-|\*|\d+\.)\s+.+)$/gm, '$1<br>');
return text;
}
function addTypewriterEffect(text, elementId) {
var formattedText = formatResponseText(text);
var container = $('<div class="messageContainer"></div>').appendTo('#' + elementId);
var message = $('<div class="message formatted-text" style="background-color: #f5f5f5;"></div>').appendTo(container);
var i = 0;
var speed = 10; // Typing speed in milliseconds
function typeWriter() {
if (i < formattedText.length) {
var charToAdd = formattedText.charAt(i);
if (formattedText.substring(i).startsWith('<a href=') || formattedText.substring(i).startsWith('<br>') || formattedText.substring(i).startsWith('<strong>')) {
var tagEnd = formattedText.indexOf('>', i) + 1;
charToAdd = formattedText.substring(i, tagEnd);
i = tagEnd;
} else if (formattedText.charAt(i) === '<') {
var tagEnd = formattedText.indexOf('>', i) + 1;
charToAdd = formattedText.substring(i, tagEnd);
i = tagEnd - 1;
}
message.append(charToAdd);
i++;
setTimeout(typeWriter, speed);
} else {
var copyIcon = $('<div class="copyIcon">📋</div>').appendTo(container);
copyIcon.click(function() {
var textToCopy = message.text();
navigator.clipboard.writeText(textToCopy).then(function() {
alert('Text copied to clipboard!');
}, function(err) {
console.error('Could not copy text: ', err);
});
});
var regenerateIcon = $('<div class="regenerateIcon">🔁</div>').appendTo(container);
regenerateIcon.click(function() {
$('#chatBody').html(''); // Clear the previous messages
generateStory(); // Call generateStory function to regenerate the story
});
}
}
typeWriter();
}
</script>
index.html
i dunno
Jane Developer
Front-End Developer | UI Enthusiast
<main class="main-content">
<section class="profile-section">
<img src="https://via.placeholder.com/150" alt="Profile Image" class="profile-img">
<h2>About Me</h2>
<p>I'm a passionate front-end developer with 3 years of experience creating responsive and accessible web applications. I love turning complex problems into simple, beautiful solutions.</p>
</section>
<section class="skills-section">
<h2>Skills</h2>
<ul class="skills-list">
<li>HTML5 & CSS3</li>
<li>JavaScript (ES6+)</li>
<li>React.js</li>
<li>Responsive Design</li>
<li>Git & GitHub</li>
<li>UI/UX Principles</li>
</ul>
</section>
<aside class="projects-aside">
<h2>Projects</h2>
<ul class="projects-list">
<li><a href="#">E-commerce Website</a></li>
<li><a href="#">Task Management App</a></li>
<li><a href="#">Weather Dashboard</a></li>
<li><a href="#">Recipe Finder</a></li>
</ul>
</aside>
<section class="contact-section">
<h2>Contact Me</h2>
<div class="contact-links">
<a href="mailto:jane@example.com">Email</a>
<a href="https://github.com/janedev" target="_blank">GitHub</a>
<a href="https://linkedin.com/in/janedev" target="_blank">LinkedIn</a>
</div>
</section>
</main>
<footer class="footer">
<p>© 2023 Jane Developer. All rights reserved.</p>
</footer>
Info Ki Duniya - AI News
Home About Privacy Policy TermsChatGPT-5 Leak Reveals Human-like Thinking
New features in GPT-5 hint at advanced reasoning, better memory, and more control.
© 2025 Info Ki Duniya. All rights reserved.
Account vapis chahiye 🙏
Sxurabhk_39
My blocked please help me
This is my insta sxurabhk_39
Ji_sarkar_302 mari I'd saspend ho gaye ha please us ko vapas lane me halp kr do please
Account vapas karva do please
Please account vapas karva do
Ji_sarkar_302 please help I'd vapas karva do please



Fork me? Fork you, @octocat!
Sean made a change