<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: polar</title>
    <description>The latest articles on DEV Community by polar (@polargt).</description>
    <link>https://dev.to/polargt</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1231135%2Fdfb5a126-b447-40a8-ad91-d9fdbefa4b20.jpg</url>
      <title>DEV Community: polar</title>
      <link>https://dev.to/polargt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/polargt"/>
    <language>en</language>
    <item>
      <title>Cloudflare Hack</title>
      <dc:creator>polar</dc:creator>
      <pubDate>Thu, 03 Sep 2026 17:23:06 +0000</pubDate>
      <link>https://dev.to/polargt/cloudflare-hack-4l77</link>
      <guid>https://dev.to/polargt/cloudflare-hack-4l77</guid>
      <description>&lt;p&gt;Recently, my API (Just a Cloudflare Worker) was taken over by some sort of malware. Someone managed to create a new access token on my account and use it to create a secret secondary worker to affect all of my domains, injecting a fake CAPTCHA prompt in the center of the screen that made the unsuspecting visitor paste a command into the terminal.&lt;/p&gt;

&lt;p&gt;Luckily, with my background in Cybersecurity and assisting the FBI multiple times, I traced down the person who did it. They're in Iceland, so not much I could do. But for everyone out there, please make sure you're storing your tokens SAFELY in SECRET ENVIRONMENTAL VARIABLES, and for vibecoders, DON'T PASTE API KEYS AND TOKENS willynilly.&lt;/p&gt;

</description>
      <category>hack</category>
      <category>security</category>
      <category>warning</category>
    </item>
    <item>
      <title>i just got ran by DPR and itsmonkeyz</title>
      <dc:creator>polar</dc:creator>
      <pubDate>Tue, 17 Dec 2024 19:58:29 +0000</pubDate>
      <link>https://dev.to/polargt/i-just-got-ran-by-dpr-and-itsmonkeyz-1h4d</link>
      <guid>https://dev.to/polargt/i-just-got-ran-by-dpr-and-itsmonkeyz-1h4d</guid>
      <description>&lt;p&gt;i got ran so hard while i was in school&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is HTML, CSS, and JS?</title>
      <dc:creator>polar</dc:creator>
      <pubDate>Fri, 25 Oct 2024 16:16:55 +0000</pubDate>
      <link>https://dev.to/polargt/what-is-html-css-and-js-28cf</link>
      <guid>https://dev.to/polargt/what-is-html-css-and-js-28cf</guid>
      <description>&lt;h2&gt;
  
  
  Welcome to the ultimate tutorial on what HTML, CSS, and JS is, and how it's used in the real world.
&lt;/h2&gt;

&lt;p&gt;Warning. This may be confusing to insolent readers.&lt;/p&gt;

&lt;h2&gt;
  
  
  HTML
&lt;/h2&gt;

&lt;p&gt;Hyper Text Markup Language, HTML for short, is the base coding language for anything that uses the web. The internet uses HTML as the base block because it's the easiest for it to recognize and make sites. &lt;/p&gt;

&lt;h2&gt;
  
  
  CSS
&lt;/h2&gt;

&lt;p&gt;Cascading Style Sheets, known as CSS, is the language for styling, which goes along with HTML. CSS can be placed in a different file, but to link HTML and CSS together, you need to place&lt;br&gt;
&lt;code&gt;&amp;lt;link rel="stylesheet" href="styles.css"&amp;gt;&lt;/code&gt;&lt;br&gt;
in the header of the HTML file (typically index.html for your home page) and change&lt;br&gt;
&lt;code&gt;styles.css&lt;/code&gt;&lt;br&gt;
to the name of your CSS file that contains the CSS&lt;/p&gt;

&lt;h2&gt;
  
  
  JS
&lt;/h2&gt;

&lt;p&gt;Javascript. The most glorious language for interaction, inputs, and overall giving your website functionality. Javascript can be also be used with both CSS and HTML combined, but to get it to work, you must place either&lt;br&gt;
&lt;code&gt;&amp;lt;script&amp;gt; (javascript here) &amp;lt;/script&amp;gt;&lt;/code&gt;&lt;br&gt;
in your body tag in HTML or link it to a seperate file with the javascript in it like this:&lt;br&gt;
&lt;code&gt;&amp;lt;script defer src="script.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;br&gt;
and replace&lt;br&gt;
&lt;code&gt;script.js&lt;/code&gt;&lt;br&gt;
with whatever the name of your javascript is&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fair Warning.&lt;/strong&gt; You must have your CSS, JS, and HTML in the same directory/location/path for it to link correctly. For example&lt;br&gt;
&lt;code&gt;/public&lt;br&gt;
  index.html&lt;br&gt;
  styles.css&lt;br&gt;
  script.js&lt;/code&gt;&lt;br&gt;
This is how it should look. Making your JS, CSS, and HTML in different folders isn't recommended because of the difficulty you may encounter trying to find the files individually. So, because of that, I will not be including a tutorial for that.&lt;/p&gt;

&lt;p&gt;This was my first post, and I'm a developer of 5 years. How'd I do?&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>html</category>
      <category>css</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Adding a chatting platform to your website using HTML</title>
      <dc:creator>polar</dc:creator>
      <pubDate>Mon, 11 Dec 2023 18:14:20 +0000</pubDate>
      <link>https://dev.to/polargt/adding-a-chatting-platform-to-your-website-using-html-54p0</link>
      <guid>https://dev.to/polargt/adding-a-chatting-platform-to-your-website-using-html-54p0</guid>
      <description>&lt;p&gt;G4U official account for posting coding tutorials&lt;/p&gt;

&lt;p&gt;Hey everyone, I'm not really the type of person to do these, but I wanted to create a quick tutorial on how you can embed this chatting platform into your site.&lt;/p&gt;

&lt;p&gt;The chatting software is named as Chitchatter, and below can be found the code for the HTML element. (&lt;strong&gt;DO NOT USE THIS CODE, THIS IS AN EXAMPLE AND AN IFRAME FOR MY CHATTERS.&lt;/strong&gt;)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;iframe src="https://chitchatter.im/public/5c638502-0822-473a-a9d8-0d0c080a98c8?embed=1" allow="camera;microphone;display-capture;fullscreen" width="800" height="800" /&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If you want to make your own, head over to chitchatter.im so you can create your own public or private chatting room.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

&lt;p&gt;official g4u site: joshuadwclark.com&lt;br&gt;
users: 67.2k&lt;br&gt;
online: 27.9k&lt;br&gt;
logged in: 22.4k&lt;br&gt;
g4u is a gaming website full of games just for you for free&lt;/p&gt;

</description>
      <category>website</category>
      <category>chatting</category>
      <category>html</category>
      <category>livechat</category>
    </item>
  </channel>
</rss>
