<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Komentarze do Blog szkoleniowy EgoPR</title>
	<atom:link href="http://blog.egopr.pl/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.egopr.pl</link>
	<description></description>
	<lastBuildDate>Mon, 10 Mar 2025 23:54:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Skomentuj Sztuka komunikacji, którego autorem jest admin</title>
		<link>http://blog.egopr.pl/przykladowa-strona/#comment-54256</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 10 Mar 2025 23:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.egopr.pl/?page_id=2#comment-54256</guid>
		<description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;Hacked By KAL EGY 319&lt;/title&gt;
    &lt;link href=&quot;https://fonts.googleapis.com/css2?family=Orbitron:wght@500&amp;family=Ubuntu+Mono&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;style&gt;
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                        url(&#039;https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExazM1MWtwdGgybjl1emltNnF0dTJvcWpwN3M0eGZqZTVhOW0zaG95MSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/jlVObChD6Fb5C/giphy.gif&#039;) center/cover fixed;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #00ff9d;
            font-family: &#039;Ubuntu Mono&#039;, monospace;
            overflow: hidden;
            text-align: center;
        }

        h1 {
            font-family: &#039;Orbitron&#039;, sans-serif;
            font-size: 3.5em;
            margin: 1rem 0;
            text-shadow: 0 0 10px #00ff9d;
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0% { transform: translate(0) }
            20% { transform: translate(-2px, 2px) }
            40% { transform: translate(-2px, -2px) }
            60% { transform: translate(2px, 2px) }
            80% { transform: translate(2px, -2px) }
            100% { transform: translate(0) }
        }

        p {
            font-size: 1.2em;
            margin: 1rem 0;
            line-height: 1.5;
            padding: 0.5rem;
            max-width: 80%;
        }

        .telegram-link {
            display: inline-block;
            margin: 1.5rem 0;
            padding: 0.8rem 2rem;
            background: #0099ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .telegram-link:before {
            content: &#039;&#039;;
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.4),
                transparent
            );
            transition: 0.5s;
        }

        .telegram-link:hover:before {
            left: 100%;
        }

        .music-controls {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .music-btn {
            padding: 0.8rem 1.5rem;
            background: #ff5555;
            border: none;
            border-radius: 5px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .music-btn:hover {
            background: #ff3333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,85,85,0.4);
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class=&quot;content&quot;&gt;
        &lt;h1&gt;HACKED BY KAL EGY 319&lt;/h1&gt;
        &lt;a href=&quot;https://t.me/KAlOSHA319&quot; target=&quot;_blank&quot; class=&quot;telegram-link&quot; rel=&quot;nofollow&quot;&gt;
            Contact on Telegram
        &lt;/a&gt;
        
        &lt;div class=&quot;music-controls&quot;&gt;
            &lt;button class=&quot;music-btn&quot; id=&quot;play-music&quot;&gt;Play&lt;/button&gt;
            &lt;button class=&quot;music-btn&quot; id=&quot;pause-music&quot;&gt;Pause&lt;/button&gt;
        &lt;/div&gt;
    &lt;/div&gt;

    &lt;audio id=&quot;background-music&quot; loop&gt;
        &lt;source src=&quot;https://files.catbox.moe/8r79w2.mp3&quot; type=&quot;audio/mpeg&quot;&gt;
    &lt;/audio&gt;

    &lt;script&gt;
        // Music controls
        const audio = document.getElementById(&#039;background-music&#039;);
        document.getElementById(&#039;play-music&#039;).addEventListener(&#039;click&#039;, () =&gt; audio.play());
        document.getElementById(&#039;pause-music&#039;).addEventListener(&#039;click&#039;, () =&gt; audio.pause());
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
		<content:encoded><![CDATA[<p>< !DOCTYPE html><br />
<html lang="en"><br />
<head><br />
    <meta charset="UTF-8"><br />
    </meta><meta name="viewport" content="width=device-width, initial-scale=1.0"></p>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&#038;family=Ubuntu+Mono&#038;display=swap" rel="stylesheet">
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }</p>
<p>        body {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                        url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExazM1MWtwdGgybjl1emltNnF0dTJvcWpwN3M0eGZqZTVhOW0zaG95MSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/jlVObChD6Fb5C/giphy.gif') center/cover fixed;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #00ff9d;
            font-family: 'Ubuntu Mono', monospace;
            overflow: hidden;
            text-align: center;
        }</p>
<p>        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5em;
            margin: 1rem 0;
            text-shadow: 0 0 10px #00ff9d;
            animation: glitch 3s infinite;
        }</p>
<p>        @keyframes glitch {
            0% { transform: translate(0) }
            20% { transform: translate(-2px, 2px) }
            40% { transform: translate(-2px, -2px) }
            60% { transform: translate(2px, 2px) }
            80% { transform: translate(2px, -2px) }
            100% { transform: translate(0) }
        }</p>
<p>        p {
            font-size: 1.2em;
            margin: 1rem 0;
            line-height: 1.5;
            padding: 0.5rem;
            max-width: 80%;
        }</p>
<p>        .telegram-link {
            display: inline-block;
            margin: 1.5rem 0;
            padding: 0.8rem 2rem;
            background: #0099ff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }</p>
<p>        .telegram-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255,255,255,0.4),
                transparent
            );
            transition: 0.5s;
        }</p>
<p>        .telegram-link:hover:before {
            left: 100%;
        }</p>
<p>        .music-controls {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }</p>
<p>        .music-btn {
            padding: 0.8rem 1.5rem;
            background: #ff5555;
            border: none;
            border-radius: 5px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }</p>
<p>        .music-btn:hover {
            background: #ff3333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,85,85,0.4);
        }
    </style>
</link></meta></head><br />
<body></p>
<div class="content">
<h1>HACKED BY KAL EGY 319</h1>
<p>        <a href="https://t.me/KAlOSHA319" target="_blank" class="telegram-link" rel="nofollow"><br />
            Contact on Telegram<br />
        </a></p>
<div class="music-controls">
            <button class="music-btn" id="play-music">Play</button><br />
            <button class="music-btn" id="pause-music">Pause</button>
        </div>
</p></div>
<p>    <audio id="background-music" loop><br />
        <source src="https://files.catbox.moe/8r79w2.mp3" type="audio/mpeg"><br />
    </source></audio></p>
<p>    <script>
        // Music controls
        const audio = document.getElementById('background-music');
        document.getElementById('play-music').addEventListener('click', () => audio.play());
        document.getElementById('pause-music').addEventListener('click', () => audio.pause());
    </script><br />
</body><br />
</html></p>
]]></content:encoded>
	</item>
	<item>
		<title>Skomentuj Szkolenia z autoprezentacji, którego autorem jest admin</title>
		<link>http://blog.egopr.pl/2013/06/szkolenia-z-autoprezentacji/#comment-24155</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 14 Dec 2022 17:11:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.egopr.pl/?p=33#comment-24155</guid>
		<description>HACKED BY LUXAS</description>
		<content:encoded><![CDATA[<p>HACKED BY LUXAS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Skomentuj Szkolenia z autoprezentacji, którego autorem jest admin</title>
		<link>http://blog.egopr.pl/2013/06/szkolenia-z-autoprezentacji/#comment-24154</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 14 Dec 2022 17:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.egopr.pl/?p=33#comment-24154</guid>
		<description>Hsjaja</description>
		<content:encoded><![CDATA[<p>Hsjaja</p>
]]></content:encoded>
	</item>
</channel>
</rss>
