<?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: immodded</title>
    <description>The latest articles on DEV Community by immodded (@immodded).</description>
    <link>https://dev.to/immodded</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F842311%2F42632c9f-6a1b-4d1a-9161-ed8888ca2c2a.jpeg</url>
      <title>DEV Community: immodded</title>
      <link>https://dev.to/immodded</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/immodded"/>
    <language>en</language>
    <item>
      <title>How to create COPY TO CLIPBOARD BUTTON for url of webpage</title>
      <dc:creator>immodded</dc:creator>
      <pubDate>Sun, 24 Dec 2023 15:42:42 +0000</pubDate>
      <link>https://dev.to/immodded/how-to-create-copy-to-clipboard-button-for-url-of-webpage-446p</link>
      <guid>https://dev.to/immodded/how-to-create-copy-to-clipboard-button-for-url-of-webpage-446p</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;button onclick="copyURL()"&amp;gt;Copy&amp;lt;/button&amp;gt;

&amp;lt;script&amp;gt;
  function copyURL() {
    var currentURL = window.location.href;
    var tempInput = document.createElement("input");
    tempInput.value = currentURL;
    document.body.appendChild(tempInput);
    tempInput.select();
    tempInput.setSelectionRange(0, 99999); 
    document.execCommand("copy");
    document.body.removeChild(tempInput);
    alert("Copied!")
  }
&amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>css</category>
      <category>javascript</category>
      <category>html</category>
      <category>immodded</category>
    </item>
    <item>
      <title>IP ADDRESS tracing script based on python</title>
      <dc:creator>immodded</dc:creator>
      <pubDate>Wed, 18 May 2022 12:42:27 +0000</pubDate>
      <link>https://dev.to/immodded/ip-address-tracing-script-based-on-python-51k3</link>
      <guid>https://dev.to/immodded/ip-address-tracing-script-based-on-python-51k3</guid>
      <description>&lt;h1&gt;
  
  
  ip-trace
&lt;/h1&gt;




&lt;h3&gt;
  
  
  Python based IP Tracer.
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;can run on almost all Operating system&lt;/li&gt;
&lt;li&gt;Created with Python&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=IM8uMG4UIb4"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--FVLZcq5L--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://img.youtube.com/vi/IM8uMG4UIb4/0.jpg" alt="IP Tracer demonstration" width="480" height="360"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://youtube.com/shorts/IM8uMG4UIb4?feature=share"&gt;IP trace demonstration video&lt;/a&gt;
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Usage Instructions
&lt;/h3&gt;

&lt;p&gt;open terminal and run.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://www.github.com/immodded/ip-trace.git
cd ip-trace 
pip install -r requirements.txt 
python ipTracer.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;### you can also pass the list of ip addresses as argv.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;python ipTracer.py 1.1.1.1 2.2.2.2 3.3.3.3&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Transform Android to Linux</title>
      <dc:creator>immodded</dc:creator>
      <pubDate>Mon, 11 Apr 2022 05:08:51 +0000</pubDate>
      <link>https://dev.to/immodded/transform-android-to-linux-c02</link>
      <guid>https://dev.to/immodded/transform-android-to-linux-c02</guid>
      <description>&lt;p&gt;Here is the idea i came with, we can transform phone's Os to serve functionality of both a phone and a PC. &lt;br&gt;
Most of you know about &lt;strong&gt;Kali nethunter&lt;/strong&gt; , a great Os to use phone as a hacking machine. Kali NetHunter Desktop Experience (KeX) to run full Kali Linux desktop sessions with support for screen mirroring via HDMI or wireless screen casting.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--em5-wyaw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g316yt18hd17l53x4tqs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--em5-wyaw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/g316yt18hd17l53x4tqs.png" alt="Kex kali nethunter" width="834" height="497"&gt;&lt;/a&gt; The similar feature is seen in some samsung phones too. Why not someone should build a Android Os with unlocked Linux possibilities. Or Google should implement &lt;strong&gt;Chrome Os&lt;/strong&gt; to Android device with the functionality of running desktop sessions with support of HDMI. No one would run for purchasing a PC for basic needs. Even this would work great for a student. &lt;/p&gt;

</description>
      <category>android</category>
      <category>linux</category>
      <category>immodded</category>
      <category>top</category>
    </item>
  </channel>
</rss>
