Changes to h4x0r.scroll.pub

root
root
7 days ago
Initial commit
feed.scroll
Changed around line 1
+ buildRss
+ printFeed All
footer.scroll
Changed around line 1
+ importOnly
+ center
+ scrollVersionLink
header.scroll
Changed around line 1
+ importOnly
+ buildHtml
+ buildTxt
+ homeButton
+ leftRightButtons
+ baseUrl https://h4x0r.scroll.pub
+ metaTags
+ editButton
+ editBaseUrl /edit.html?folderName=h4x0r.scroll.pub&fileName=
+ metaTags
+ style.css
+ script.js
+ container
+ printTitle
index.scroll
Changed around line 1
+ title The L33t H4x0r's Den
+ header.scroll
+ printSnippets All
+ footer.scroll
prompt.json
Changed around line 1
+ {
+ "id": "4c7f0f94-a6a5-46ae-8f5f-a2dd7907c894",
+ "object": "chat.completion",
+ "created": 1736918447,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "---domain---\nh4x0r.scroll.pub\n---index.scroll---\ntitle The L33t H4x0r's Den\nheader.scroll\nprintSnippets All\nfooter.scroll\n---why-hacking-is-art.scroll---\ntitle Why Hacking is the Ultimate Art Form\ntags All\nheader.scroll\nHacking isn't just about breaking into systems—it's about creativity, problem-solving, and pushing boundaries. Did you know that 60% of hackers consider their work a form of art? It's true. The ability to see patterns, exploit vulnerabilities, and craft elegant solutions is akin to painting on a digital canvas. The best hackers are like modern-day Da Vincis, blending logic and imagination to create something truly unique. So next time someone calls you a \"hacker,\" take it as a compliment. You're an artist in a world of ones and zeros.\nfooter.scroll\n---the-future-of-cybersecurity.scroll---\ntitle The Future of Cybersecurity: A Hacker's Perspective\ntags All\nheader.scroll\nThe cybersecurity landscape is evolving faster than ever. By 2025, cybercrime is projected to cost the world $10.5 trillion annually. But here's the twist: hackers are both the problem and the solution. Ethical hackers are now in higher demand than ever, with companies paying top dollar for their skills. The future? A world where hackers are the guardians of the digital realm, using their l33t skills to protect, not destroy. The line between black hat and white hat is blurring, and that's a good thing. After all, every hero needs a villain to keep things interesting.\nfooter.scroll\n---header.scroll---\nimportOnly\nbuildHtml\nbuildTxt\nhomeButton\nleftRightButtons\nbaseUrl https://h4x0r.scroll.pub\nmetaTags\neditButton\neditBaseUrl /edit.html?folderName=h4x0r.scroll.pub&fileName=\nmetaTags\nstyle.css\nscript.js\ncontainer\nprintTitle\n---feed.scroll---\nbuildRss\nprintFeed All\n---footer.scroll---\nimportOnly\ncenter\nscrollVersionLink\n---style.css---\nbody {\n background: #0d0d0d;\n color: #00ff00;\n font-family: 'Courier New', Courier, monospace;\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: #1a1a1a;\n padding: 20px;\n text-align: center;\n border-bottom: 2px solid #00ff00;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5em;\n animation: glow 1.5s infinite alternate;\n}\n\n@keyframes glow {\n from {\n text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;\n }\n to {\n text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff00;\n }\n}\n\n.container {\n max-width: 800px;\n margin: 0 auto;\n padding: 20px;\n}\n\n.post {\n background: #1a1a1a;\n padding: 20px;\n margin-bottom: 20px;\n border: 1px solid #00ff00;\n border-radius: 5px;\n}\n\n.post h2 {\n margin-top: 0;\n color: #00ff00;\n}\n\n.post p {\n color: #00ff00;\n}\n\nfooter {\n text-align: center;\n padding: 20px;\n background: #1a1a1a;\n border-top: 2px solid #00ff00;\n margin-top: 20px;\n}\n\na {\n color: #00ff00;\n text-decoration: none;\n}\n\na:hover {\n text-decoration: underline;\n}\n\n@media (max-width: 600px) {\n header h1 {\n font-size: 2em;\n }\n\n .container {\n padding: 10px;\n }\n\n .post {\n padding: 15px;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', () => {\n const posts = document.querySelectorAll('.post');\n posts.forEach(post => {\n post.addEventListener('mouseenter', () => {\n post.style.transform = 'scale(1.02)';\n post.style.transition = 'transform 0.3s ease';\n });\n post.addEventListener('mouseleave', () => {\n post.style.transform = 'scale(1)';\n });\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 406,
+ "completion_tokens": 1012,
+ "total_tokens": 1418,
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 406
+ },
+ "system_fingerprint": "fp_3a5770e1b4"
+ }
readme.scroll
Changed around line 1
+ # h4x0r.scroll.pub
+
+ blog generated by DeepSeek from prompt: personal splashpage for extremely creative l33t h4xor, lots of gifs and impressive web work
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', () => {
+ const posts = document.querySelectorAll('.post');
+ posts.forEach(post => {
+ post.addEventListener('mouseenter', () => {
+ post.style.transform = 'scale(1.02)';
+ post.style.transition = 'transform 0.3s ease';
+ });
+ post.addEventListener('mouseleave', () => {
+ post.style.transform = 'scale(1)';
+ });
+ });
+ });
style.css
Changed around line 1
+ body {
+ background: #0d0d0d;
+ color: #00ff00;
+ font-family: 'Courier New', Courier, monospace;
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background: #1a1a1a;
+ padding: 20px;
+ text-align: center;
+ border-bottom: 2px solid #00ff00;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5em;
+ animation: glow 1.5s infinite alternate;
+ }
+
+ @keyframes glow {
+ from {
+ text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;
+ }
+ to {
+ text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff00;
+ }
+ }
+
+ .container {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 20px;
+ }
+
+ .post {
+ background: #1a1a1a;
+ padding: 20px;
+ margin-bottom: 20px;
+ border: 1px solid #00ff00;
+ border-radius: 5px;
+ }
+
+ .post h2 {
+ margin-top: 0;
+ color: #00ff00;
+ }
+
+ .post p {
+ color: #00ff00;
+ }
+
+ footer {
+ text-align: center;
+ padding: 20px;
+ background: #1a1a1a;
+ border-top: 2px solid #00ff00;
+ margin-top: 20px;
+ }
+
+ a {
+ color: #00ff00;
+ text-decoration: none;
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 600px) {
+ header h1 {
+ font-size: 2em;
+ }
+
+ .container {
+ padding: 10px;
+ }
+
+ .post {
+ padding: 15px;
+ }
+ }
the-future-of-cybersecurity.scroll
Changed around line 1
+ title The Future of Cybersecurity: A Hacker's Perspective
+ tags All
+ header.scroll
+ The cybersecurity landscape is evolving faster than ever. By 2025, cybercrime is projected to cost the world $10.5 trillion annually. But here's the twist: hackers are both the problem and the solution. Ethical hackers are now in higher demand than ever, with companies paying top dollar for their skills. The future? A world where hackers are the guardians of the digital realm, using their l33t skills to protect, not destroy. The line between black hat and white hat is blurring, and that's a good thing. After all, every hero needs a villain to keep things interesting.
+ footer.scroll
why-hacking-is-art.scroll
Changed around line 1
+ title Why Hacking is the Ultimate Art Form
+ tags All
+ header.scroll
+ Hacking isn't just about breaking into systems—it's about creativity, problem-solving, and pushing boundaries. Did you know that 60% of hackers consider their work a form of art? It's true. The ability to see patterns, exploit vulnerabilities, and craft elegant solutions is akin to painting on a digital canvas. The best hackers are like modern-day Da Vincis, blending logic and imagination to create something truly unique. So next time someone calls you a "hacker," take it as a compliment. You're an artist in a world of ones and zeros.
+ footer.scroll