<?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: miko1112</title>
    <description>The latest articles on DEV Community by miko1112 (@miko1112).</description>
    <link>https://dev.to/miko1112</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%2F459156%2F95b8a685-83de-4106-a0aa-38fa09790918.png</url>
      <title>DEV Community: miko1112</title>
      <link>https://dev.to/miko1112</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/miko1112"/>
    <language>en</language>
    <item>
      <title>Splitting a list similar to a string?</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Sat, 21 Aug 2021 10:34:59 +0000</pubDate>
      <link>https://dev.to/miko1112/splitting-a-list-similar-to-a-string-23me</link>
      <guid>https://dev.to/miko1112/splitting-a-list-similar-to-a-string-23me</guid>
      <description>&lt;p&gt;Say I have a list of tuples, and I need to split that list by a certain tuple, like &lt;code&gt;("sym","semicolon")&lt;/code&gt;, similar to the str.split method. How would I go about doing that?&lt;/p&gt;

</description>
      <category>python</category>
      <category>help</category>
      <category>list</category>
      <category>split</category>
    </item>
    <item>
      <title>Hosting a Python Socket app?</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Thu, 25 Mar 2021 16:45:13 +0000</pubDate>
      <link>https://dev.to/miko1112/hosting-a-python-socket-app-1p0k</link>
      <guid>https://dev.to/miko1112/hosting-a-python-socket-app-1p0k</guid>
      <description>&lt;p&gt;So, I'm doing a thing which is essentially a terminal emulator running on a server. People can connect over ncat/nc and interact from there.&lt;br&gt;
The only dependencies are &lt;code&gt;socket&lt;/code&gt; and &lt;code&gt;time&lt;/code&gt;.&lt;br&gt;
Is there a free, cloud hosting service that can do this? It isn't at all CPU intensive due to being very simple, and the entire thing is 64 lines of code, including blank lines for readability.&lt;br&gt;
Cheers in advance.&lt;/p&gt;

</description>
      <category>python</category>
      <category>socket</category>
      <category>networking</category>
      <category>server</category>
    </item>
    <item>
      <title>Using GitHub Pages domain for other purposes?</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Mon, 01 Mar 2021 09:10:22 +0000</pubDate>
      <link>https://dev.to/miko1112/using-github-pages-domain-for-other-purposes-4ab3</link>
      <guid>https://dev.to/miko1112/using-github-pages-domain-for-other-purposes-4ab3</guid>
      <description>&lt;p&gt;So, here's a quick summary of my question: Is it possible to use your GitHub Pages domain for anything that isn't a website? Say I have a server that hosts an API, and I need a domain for that. Is it possible to use my GitHub Pages domain for that server?&lt;/p&gt;

</description>
      <category>github</category>
      <category>help</category>
    </item>
    <item>
      <title>Public IP Of router?</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Wed, 23 Dec 2020 18:27:02 +0000</pubDate>
      <link>https://dev.to/miko1112/public-ip-of-router-3gh9</link>
      <guid>https://dev.to/miko1112/public-ip-of-router-3gh9</guid>
      <description>&lt;p&gt;So I'm writing a little networking command line called &lt;code&gt;epsinet&lt;/code&gt; and I've realised that &lt;code&gt;ipconfig&lt;/code&gt; in cmd returns the private IP Address of the router, not the public. Finding the private IP of the router is fairly easy if you already have the private IP of the user, but the public, for some reason? Not so much.&lt;br&gt;
&lt;strong&gt;TL;DR:&lt;/strong&gt; How do I get the public IP of a connected router through CMD? (still a bit lengthy but shorter)&lt;/p&gt;

</description>
      <category>cmd</category>
      <category>networking</category>
      <category>publicip</category>
      <category>router</category>
    </item>
    <item>
      <title>Requesting an HTTPS resource using batch</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Tue, 17 Nov 2020 18:45:52 +0000</pubDate>
      <link>https://dev.to/miko1112/requesting-an-https-resource-using-batch-492l</link>
      <guid>https://dev.to/miko1112/requesting-an-https-resource-using-batch-492l</guid>
      <description>&lt;p&gt;So, I'm trying to write a mini hacking tool that uses one-liners in cmd to do certain tasks like installing a virus for example. I need to be able to request things from a server. How would I do this with default Windows CMD? (if it is possible)&lt;br&gt;
&lt;code&gt;sys.exit()&lt;/code&gt;&lt;/p&gt;

</description>
      <category>batch</category>
      <category>cmd</category>
      <category>https</category>
      <category>windows</category>
    </item>
    <item>
      <title>How to append element to HTML document via JS</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Sun, 27 Sep 2020 11:53:07 +0000</pubDate>
      <link>https://dev.to/miko1112/how-to-append-element-to-html-document-via-js-4i0f</link>
      <guid>https://dev.to/miko1112/how-to-append-element-to-html-document-via-js-4i0f</guid>
      <description>&lt;p&gt;So, I'm trying to make a search-engine-like HTML file using JavaScript, and I am aware of the &lt;code&gt;document.write()&lt;/code&gt; function, but is there a way to use it to append an element like a heading or an image?&lt;br&gt;
&lt;code&gt;sys.exit()&lt;/code&gt;&lt;br&gt;
EDIT: I'm stupid. Didn't realise you could put elements in the &lt;code&gt;document.write()&lt;/code&gt; function.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>html</category>
    </item>
    <item>
      <title>i n f i n i t y</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Thu, 27 Aug 2020 11:58:38 +0000</pubDate>
      <link>https://dev.to/miko1112/i-n-f-i-n-i-t-y-5bi2</link>
      <guid>https://dev.to/miko1112/i-n-f-i-n-i-t-y-5bi2</guid>
      <description>&lt;p&gt;files:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;run.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;contents of run.py:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;exec&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nb"&gt;open&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"run.py"&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="n"&gt;read&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;What would happen?&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>poggers</title>
      <dc:creator>miko1112</dc:creator>
      <pubDate>Thu, 27 Aug 2020 11:17:24 +0000</pubDate>
      <link>https://dev.to/miko1112/poggers-1o3p</link>
      <guid>https://dev.to/miko1112/poggers-1o3p</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;poggers&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="nb"&gt;range&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;500&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;poggerstring&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"poggers"&lt;/span&gt;

&lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;poggers&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;poggerstring&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="n"&gt;poggerstring&lt;/span&gt;&lt;span class="o"&gt;+=&lt;/span&gt;&lt;span class="s"&gt;" poggers"&lt;/span&gt;
&lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"P O G G E R S"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Poggers?&lt;br&gt;
Poggers.&lt;/p&gt;

</description>
      <category>watercooler</category>
    </item>
  </channel>
</rss>
