<?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: Josh Wenner</title>
    <description>The latest articles on DEV Community by Josh Wenner (@joshwen7947).</description>
    <link>https://dev.to/joshwen7947</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%2F889445%2F14045b16-6324-4680-9029-c74b7162a0f7.jpeg</url>
      <title>DEV Community: Josh Wenner</title>
      <link>https://dev.to/joshwen7947</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joshwen7947"/>
    <language>en</language>
    <item>
      <title>Convert Metaplex mint site from Devnet to Mainnet</title>
      <dc:creator>Josh Wenner</dc:creator>
      <pubDate>Fri, 28 Oct 2022 05:45:50 +0000</pubDate>
      <link>https://dev.to/joshwen7947/convert-metaplex-mint-site-from-devnet-to-mainnet-2o46</link>
      <guid>https://dev.to/joshwen7947/convert-metaplex-mint-site-from-devnet-to-mainnet-2o46</guid>
      <description>&lt;p&gt;This aligns with Solana but is also a reference to Metaplex. Hoping someone can answer as the information found online is slim to none.&lt;/p&gt;

&lt;p&gt;I have a project ready to go. Using Metaplex Sugar CLI w/ Solana CLI. It's currently set on devnet with QuickNode as my RPC in my .env file. I want to convert this project to the Mainnet-beta and launch.&lt;/p&gt;

&lt;p&gt;How do I do so?&lt;/p&gt;

&lt;p&gt;Do I just edit my .env file with the mainnet RPC, add SOL to my Candy machine wallet and relaunch Sugar (Metaplex)?&lt;/p&gt;

&lt;p&gt;What steps do I need to take my complete Devnet project and make it live on the mainnet?&lt;/p&gt;

</description>
      <category>solana</category>
      <category>metaplex</category>
      <category>sugar</category>
      <category>help</category>
    </item>
    <item>
      <title>Append multiple strings to a single QLabel in PyQt5</title>
      <dc:creator>Josh Wenner</dc:creator>
      <pubDate>Fri, 29 Jul 2022 03:50:19 +0000</pubDate>
      <link>https://dev.to/joshwen7947/append-multiple-strings-to-a-single-qlabel-in-pyqt5-1b06</link>
      <guid>https://dev.to/joshwen7947/append-multiple-strings-to-a-single-qlabel-in-pyqt5-1b06</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;I've been working on this project for a while now, everything is working as should be except the final piece.  &lt;/p&gt;

&lt;p&gt;Here is my code.  The app takes a 'number of passwords' input and a 'length of passwords' input.  When you clicked the 'generate passwords' button it generates random passwords that should be appended to my app (self.textBox).  Instead of appending all the generated passwords it only appends the last password that was generated in the loop.  &lt;/p&gt;

&lt;p&gt;Question:  If I input '10' or '20' as my desired number of passwords, how can I get it to append them all in my app?&lt;/p&gt;

&lt;p&gt;Thank you everyone!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import sys
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QApplication, QWidget, QInputDialog, QLineEdit, QVBoxLayout, QPushButton, QLabel
import random


class App(QWidget):
    def __init__(self):
        super().__init__()
        self.setWindowTitle('Password Generator')
        self.setGeometry(100,100, 400, 400)
        self.intro = QLabel("Welcome to PyPass Gen 2.0")
        self.dialog1 = QInputDialog()
        self.dialog1.setOption(QInputDialog.NoButtons)
        self.dialog1.setLabelText('Number of passwords: ')
        self.dialog2 = QInputDialog()
        self.dialog2.setOption(QInputDialog.NoButtons)
        self.dialog2.setLabelText('Length of passwords: ')
        self.layout = QVBoxLayout()
        self.layout.addWidget(self.intro, alignment=Qt.AlignCenter)
        self.layout.addWidget(self.dialog1)
        self.layout.addWidget(self.dialog2)
        self.textBox = QLabel()
        self.layout.addWidget(self.textBox, alignment=Qt.AlignCenter)
        self.button1 = QPushButton("Generate Passwords")
        self.button1.clicked.connect(self.execute)
        self.layout.addWidget(self.button1)

        self.setLayout(self.layout)
        self.show()

    def execute(self):
        char = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890!@#$%^&amp;amp;*()-_,./?'
        number_v = int(self.dialog1.textValue())
        length_v = int(self.dialog2.textValue())
        for password in range(number_v):
            self.passwords = ''
            for chars in range(length_v):
                self.passwords += random.choice(char)

                self.textBox.setText(self.passwords)

            print(self.passwords)
            # self.passwords.append(self.textBox)


if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = App()
    sys.exit(app.exec_())
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>help</category>
      <category>python</category>
      <category>pyqt</category>
      <category>pyqt5</category>
    </item>
    <item>
      <title>React won't load images...</title>
      <dc:creator>Josh Wenner</dc:creator>
      <pubDate>Sat, 09 Jul 2022 11:36:45 +0000</pubDate>
      <link>https://dev.to/joshwen7947/react-wont-load-images-1po9</link>
      <guid>https://dev.to/joshwen7947/react-wont-load-images-1po9</guid>
      <description>&lt;p&gt;Hi guys, new here.&lt;/p&gt;

&lt;p&gt;React won't load my images.  I have tried countless resources and stack overflow.  What is going on?&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zZd7ISnn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/syz81l780bl85bpgmxp1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zZd7ISnn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/syz81l780bl85bpgmxp1.png" alt="Image description" width="880" height="715"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hope this image helps.  &lt;/p&gt;

&lt;p&gt;I was getting an error from Nam saying that ESlint.  That my 'images' like 'GitHub' is an unused Var which you can see it is being used in my code&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>images</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
