<?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: Andrew Jackson</title>
    <description>The latest articles on DEV Community by Andrew Jackson (@sonandrew).</description>
    <link>https://dev.to/sonandrew</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%2F213420%2F728303a7-db7d-4c60-ba11-afbb2d8d3cbd.png</url>
      <title>DEV Community: Andrew Jackson</title>
      <link>https://dev.to/sonandrew</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sonandrew"/>
    <language>en</language>
    <item>
      <title>How to Configure Multi-Display with Virt-Manager and Virt-Viewer (Linux)</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Mon, 16 Mar 2026 16:44:19 +0000</pubDate>
      <link>https://dev.to/sonandrew/show-to-configure-multi-display-with-virt-manager-and-virt-viewer-linux-jk7</link>
      <guid>https://dev.to/sonandrew/show-to-configure-multi-display-with-virt-manager-and-virt-viewer-linux-jk7</guid>
      <description>&lt;h2&gt;
  
  
  Background
&lt;/h2&gt;

&lt;p&gt;I've been using Virtual Machine Manager for my virtual machine needs for a while now, such as testing new Linux distro's or development work. I wanted a way to use multiple displays with a single vm, so I did some research and this is what I've found.&lt;/p&gt;

&lt;h2&gt;
  
  
  First
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://virt-manager.org/download" rel="noopener noreferrer"&gt;Virtual Machine Manager&lt;/a&gt; doesn't (from what I've found) allow for a multi-display setup. You will need to use a secondary program called &lt;a href="https://gitlab.com/virt-viewer/virt-viewer" rel="noopener noreferrer"&gt;Virt-Viewer&lt;/a&gt;. From it's GitLab, it says that:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Virt Viewer provides a graphical viewer for the guest OS display."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This means that it can be used as the graphical console instead of Virt-Manager. These are 2 different programs that can be used separately or in tandem. &lt;/p&gt;

&lt;h2&gt;
  
  
  Virt-Viewer Installation
&lt;/h2&gt;

&lt;p&gt;We first have to verify that virt-viewer is installed.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Ubuntu/Debian: &lt;span class="s2"&gt;"sudo apt install virt-viewer"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;Fedora: &lt;span class="s2"&gt;"sudo dnf install virt-viewer"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Virtual Machine Manager GUI Configuration
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Step 1
&lt;/h3&gt;

&lt;p&gt;Open Virtual Machine Manager and select "Edit" tab and then "Preferences".&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2
&lt;/h3&gt;

&lt;p&gt;In the "General" settings, make sure that "Enable XML editing" is selected and then click "Close" on the bottom right. (This will be needed for the next step)&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3
&lt;/h3&gt;

&lt;p&gt;Open the VM you want to use with multiple displays and go to the "Details" view.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 4
&lt;/h3&gt;

&lt;p&gt;Select "Video Virtio" in the list of configurations in details view.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 5
&lt;/h3&gt;

&lt;p&gt;In the "XML" tab, in the "heads=" property, change it from "1" to "2" (Or the number displays you want), then click "Apply".&lt;/p&gt;

&lt;h2&gt;
  
  
  Running Virt-Viewer from the Terminal
&lt;/h2&gt;

&lt;p&gt;There are multiple ways to start up virt-viewer from the terminal, but I will only show 2 of them.&lt;/p&gt;

&lt;p&gt;Now that you have the display configured, open a new terminal. &lt;/p&gt;

&lt;h3&gt;
  
  
  Example 1
&lt;/h3&gt;

&lt;p&gt;The 1st and easiest way to get your vm displayed with virt-viewer is to use:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;virt-viewer &amp;lt;VM Name&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Example 2
&lt;/h3&gt;

&lt;p&gt;The 2nd way is to reconnect with the UUID. The UUID can be found in the "Overview" of the details view in Virtual Machine Manager.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;virt-viewer --reconnect --wait &amp;lt;UUID&amp;gt;&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Hopefully this helps and serves as a future reference.&lt;/p&gt;

</description>
      <category>linux</category>
      <category>virtualmachine</category>
      <category>kvm</category>
      <category>qemu</category>
    </item>
    <item>
      <title>Out-of-Office BUG</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Tue, 23 Dec 2025 23:21:09 +0000</pubDate>
      <link>https://dev.to/sonandrew/out-of-office-bug-en0</link>
      <guid>https://dev.to/sonandrew/out-of-office-bug-en0</guid>
      <description>&lt;p&gt;Issue&lt;/p&gt;

&lt;p&gt;There is a bug in Teams where if you except an Out-of-Office invite from a team member, your status will show ", Out of Office". That is, if you select "Available", "Busy" or "Do not disturb", your status would be one of those appended by ", Out of Office". If "Be right back", "Appear away" or "Appear offline" are selected then it will only show "Out of Office" as the status instead.&lt;/p&gt;

&lt;p&gt;Fix 1&lt;/p&gt;

&lt;p&gt;You will need to change the invite from "Accepted" to "Tentative".&lt;/p&gt;

&lt;p&gt;You can do this in "Teams: Calendar" or "Outlook: Calendar".&lt;/p&gt;

&lt;p&gt;Select the invite.&lt;br&gt;
In the pop-up, click "Change" at the bottom.&lt;br&gt;
Then, click the "More Options Button (3-dots)" on the bottom right.&lt;br&gt;
Select "? Tentative"&lt;br&gt;
Doing this should allow you to control your status as normal.&lt;/p&gt;

&lt;p&gt;Fix 2&lt;/p&gt;

&lt;p&gt;Similar to the answer provided by @Alexis-NG , on the use of "Free", you can do this from Teams as well.&lt;/p&gt;

&lt;p&gt;Go to "Teams: Calendar".&lt;/p&gt;

&lt;p&gt;Select the invite.&lt;br&gt;
In the pop-up, click "View event" (Multi-Arrow Icon).&lt;br&gt;
In the Event Tab, you will see "Out of office".&lt;br&gt;
Click it an change it to "Free" or "Tentative".&lt;br&gt;
Your status should change immediately. If not try restarting the application.&lt;/p&gt;

&lt;p&gt;For other solutions, you can follow the discussion: &lt;a href="https://learn.microsoft.com/en-us/answers/questions/5558478/my-status-is-set-to-out-of-office-and-wont-change" rel="noopener noreferrer"&gt;"My status is set to Out of Office and won't change"&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>microsoft</category>
    </item>
    <item>
      <title>How-to install Windows SPICE Guest Tools on QEMU/KVM Virtual Machine Manager</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Sun, 17 Dec 2023 18:25:00 +0000</pubDate>
      <link>https://dev.to/sonandrew/how-to-install-windows-spice-guest-tools-on-qemukvm-virtual-machine-manager-2e51</link>
      <guid>https://dev.to/sonandrew/how-to-install-windows-spice-guest-tools-on-qemukvm-virtual-machine-manager-2e51</guid>
      <description>&lt;p&gt;As everyone knows, getting started with a new technology is not always simple but this how-to will hopefully help in the process when using a Windows VM.&lt;/p&gt;

&lt;p&gt;As of 2023 and if you are using a Windows guest you can use &lt;strong&gt;&lt;em&gt;Windows SPICE Guest Tools&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to install Windows SPICE Guest Tools on QEMU/KVM Virtual Machine Manager
&lt;/h2&gt;

&lt;p&gt;To start, make sure inside the VM manager "&lt;em&gt;Show virtual hardware details&lt;/em&gt;" -&amp;gt; "&lt;em&gt;Video &amp;lt; Model-Name &amp;gt;&lt;/em&gt;" you have QXL selected.&lt;/p&gt;

&lt;p&gt;If it looks like this: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.stack.imgur.com/ga0mx.png" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.stack.imgur.com%2Fga0mx.png" alt="enter image description here" width="800" height="482"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;then you continue with the following steps.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Process
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Start the Windows VM.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open your favorite browser, inside the Windows VM.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go to &lt;a href="https://www.spice-space.org/download.html" rel="noopener noreferrer"&gt;SPICE Website Download Page&lt;/a&gt;.&lt;br&gt;
&lt;a href="https://i.stack.imgur.com/Wmc2j.jpg" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.stack.imgur.com%2FWmc2j.jpg" alt="enter image description here" width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Scroll down to "&lt;strong&gt;&lt;em&gt;Windows binaries&lt;/em&gt;&lt;/strong&gt;".&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the first sentence you should see:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"&lt;em&gt;Windows SPICE Guest Tools (spice-guest-tools)&lt;/em&gt;" &lt;/li&gt;
&lt;li&gt;Click -&amp;gt; (&lt;em&gt;&lt;a href="https://www.spice-space.org/download/windows/spice-guest-tools/spice-guest-tools-latest.exe" rel="noopener noreferrer"&gt;spice-guest-tools&lt;/a&gt;&lt;/em&gt;) to download it on the Guest VM.
&lt;a href="https://i.stack.imgur.com/3C8gZ.png" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.stack.imgur.com%2F3C8gZ.png" alt="enter image description here" width="800" height="140"&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run through the installer. The defaults should be fine.&lt;br&gt;
&lt;a href="https://i.stack.imgur.com/KkGS9.png" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.stack.imgur.com%2FKkGS9.png" alt="enter image description here" width="800" height="636"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Restart&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You should now be able to change the "Display resolution" in the Windows VM.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftam5xfimh21mi31xwlsl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftam5xfimh21mi31xwlsl.png" alt="Shows an image of Windows Settings Display Resolution being changed" width="800" height="638"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hopefully this helps. If you have further questions, let me know in the comments.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Admin page coming along, but still looking.</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Thu, 16 Apr 2020 19:31:03 +0000</pubDate>
      <link>https://dev.to/sonandrew/admin-page-coming-along-but-still-looking-25nh</link>
      <guid>https://dev.to/sonandrew/admin-page-coming-along-but-still-looking-25nh</guid>
      <description>&lt;p&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;I am creating a WordPress theme and want show what I have done so far. I already have the design mock of the theme so I decided to work on the backend portion. I am working on the Advanced admin page for personal information that will work in a sidebar and shows a preview in the admin section. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.imgur.com/FOLdes3.png" rel="noopener noreferrer"&gt;Check it out&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Have if work ahead of me with this theme, trying to find a job, school work, and overall family matters. &lt;/p&gt;

&lt;p&gt;On that note,&lt;/p&gt;

&lt;p&gt;If anyone has any remote job suggestions for an intermediate Frontend, UI Dev, Web Developer/Designer with a small amount of experience let me know. Even internships are cool. Just trying to get more experience and not feel like an impostor. &lt;/p&gt;

&lt;p&gt;Merci beaucoup!&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>php</category>
      <category>career</category>
    </item>
    <item>
      <title>Wordpress Themes or Vala for Java Programmers?</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Mon, 30 Mar 2020 22:15:03 +0000</pubDate>
      <link>https://dev.to/sonandrew/wordpress-themes-or-vala-for-java-programmers-2547</link>
      <guid>https://dev.to/sonandrew/wordpress-themes-or-vala-for-java-programmers-2547</guid>
      <description>&lt;p&gt;Oh, how tech gods tease me so... &lt;br&gt;
I am stuck between either learning how to create Wordpress Themes or learning Vala for Java Programmers to create ElementaryOS applications. &lt;/p&gt;

&lt;p&gt;Which do I choose? Oh, the technology! &lt;/p&gt;

&lt;p&gt;There are probably more jobs for people who can create and work with Wordpress themes and templates, but, with Vala, you have ElementaryOS apps! I do want to become a Linux App Developer one day but maybe it's probably better to learn how to work with Wordpress themes because it has more opportunities.&lt;/p&gt;

&lt;p&gt;Do you or anyone you know work as a Linux App Developer or Wordpress Theme Developer? What has your or their experience been? &lt;/p&gt;

</description>
      <category>linux</category>
      <category>java</category>
      <category>wordpress</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Train Simulation Problems - Update</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Mon, 23 Mar 2020 23:40:12 +0000</pubDate>
      <link>https://dev.to/sonandrew/train-simulation-problems-update-15fm</link>
      <guid>https://dev.to/sonandrew/train-simulation-problems-update-15fm</guid>
      <description>&lt;h2&gt;
  
  
  Thanks for yesterday.
&lt;/h2&gt;

&lt;p&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;So, I have gotten pretty far with the Train Simulation from the help I've gotten yesterday. Thank you to all that helped! I really appreciate it. Most of the problems I had were with things I thought I had fixed already but didn't. I think I just needed some extra eyes on this problem. Usually, everyone is by themselves trying their hardest to figure out a problem, but, sometimes all you need to do is put your ego and pride aside and ask for help.&lt;/p&gt;

&lt;h2&gt;
  
  
  Update.
&lt;/h2&gt;

&lt;p&gt;To update you on this project, I have pretty much solved all those pesky problems I had, but then, others have popped up... &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Peskipiksi pesternomi!&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;It had no effect...&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The issue where the number of stations that were entered, were not how many stations you went to. So let's say I entered &lt;em&gt;3&lt;/em&gt; as the number of stations. I would instead get &lt;em&gt;100&lt;/em&gt; stations because the getCurrentStation method was not actually returning the current station. &lt;/p&gt;

&lt;p&gt;The other major issue I had involed the station name. It turns out I was trying to get a char instead of an integer to return the current station index. &lt;strong&gt;SMH...&lt;/strong&gt; I felt so dumb but thats why you ask for help. I thought I already corrected it when I copied and changing it from another method.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current problems.
&lt;/h2&gt;

&lt;p&gt;1.&lt;br&gt;
With these problems solved I am now having a problem with getting the current station... Yes, this is unexpected considering I just fixed it to where it wouldn't print out &lt;em&gt;100&lt;/em&gt; stations anymore. Now, it is only giving me one station when it is supposed to be adding &lt;em&gt;1&lt;/em&gt; after each station and subtracting &lt;em&gt;1&lt;/em&gt; if the stopCounter is not less than the number of stations.&lt;/p&gt;

&lt;p&gt;2.&lt;br&gt;
The other problem I am having is with the display of the Usage Report. It is supposed to be shown at the end of the program after you have already run a simulation. If the current trains create counter is less than &lt;em&gt;0&lt;/em&gt; then it is supposed to display the usage report with the user name, the create counter, and the run counter. So far I have not been able to figure out why this happening.&lt;/p&gt;

&lt;h2&gt;
  
  
  I am asking once again.
&lt;/h2&gt;

&lt;p&gt;Well, like the great &lt;strong&gt;Bernard Sanders&lt;/strong&gt; it's that time again when I ask you for your help. I am learning a lot from these post and do think I will continue to post about these school projects. If you can lend your eyes toward &lt;a href="https://gist.github.com/sonAndrew/dde70230fe184eb40993ed81f114a713" rel="noopener noreferrer"&gt;this project&lt;/a&gt; and tell me if you see any discrepancies in the code that would cause these problems, I would greatly appreciate it.&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

</description>
      <category>java</category>
      <category>help</category>
    </item>
    <item>
      <title>Train Simulation Problems</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Sat, 21 Mar 2020 19:02:09 +0000</pubDate>
      <link>https://dev.to/sonandrew/train-simulation-problems-321b</link>
      <guid>https://dev.to/sonandrew/train-simulation-problems-321b</guid>
      <description>&lt;p&gt;Hey everyone,&lt;/p&gt;

&lt;p&gt;I am having trouble with this Train Simulation that I am working on for school. I don't know what I have done wrong. I am not getting any errors but the output is just wrong. I am having problems with how many &lt;strong&gt;stations&lt;/strong&gt; are being visited and also the &lt;strong&gt;station names&lt;/strong&gt;. The station name that is being printed is &lt;strong&gt;[Ljava.lang.String;@27716f4&lt;/strong&gt; and I don't know why.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You can find the main class &lt;strong&gt;MainClass&lt;/strong&gt; and support class &lt;strong&gt;SubwayTrain&lt;/strong&gt; &lt;br&gt;
--&amp;gt; &lt;a href="https://gist.github.com/sonAndrew/dde70230fe184eb40993ed81f114a713" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If anyone can help I would greatly appreciate it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Test data I am using
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Number of Stations: 3
Home Station Number: 33
Maximum Capacity: 10
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>java</category>
      <category>help</category>
    </item>
    <item>
      <title>counters != countersWorking; SOLVED</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Thu, 19 Mar 2020 17:00:08 +0000</pubDate>
      <link>https://dev.to/sonandrew/counters-countersworking-solved-34aa</link>
      <guid>https://dev.to/sonandrew/counters-countersworking-solved-34aa</guid>
      <description>&lt;p&gt;Hey everyone as for the title I am having trouble with my counters not working. They are itemCounts and discountCounts. They are arrays that hold the value of  ITEM_NAMES.length and DISCOUNT_NAME.length. This is a school practice project and those are the values I was given but I am not sure on how to use them to count the number of time the item or discount has been selected. Usually I would just use........... &lt;strong&gt;BARRROOOOOO!!!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I literally just figured out what my problem was. I just realized I am using arrays and because I am also using an if statement to check if it is the correct item I could just used that array point like so:&lt;/p&gt;

&lt;p&gt;itemCounts[0]++;&lt;/p&gt;

&lt;p&gt;I guess I was overthinking it the whole time because I was scared of failing and looking stupid.&lt;/p&gt;

&lt;p&gt;Well thanks for your help?&lt;/p&gt;

&lt;p&gt;The project is a gist &lt;a href="https://gist.github.com/sonAndrew/e6d917ba68ace540ae8dbd71ded340f9" rel="noopener noreferrer"&gt;here&lt;/a&gt;;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>Not understanding this project.</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Mon, 16 Mar 2020 03:30:07 +0000</pubDate>
      <link>https://dev.to/sonandrew/not-understanding-this-project-ff9</link>
      <guid>https://dev.to/sonandrew/not-understanding-this-project-ff9</guid>
      <description>&lt;p&gt;Hey everyone I am working on this &lt;a href="https://docs.google.com/document/d/1u4waO83jAyULCBCx5AtuzEhfYcx5ZMc7SZDapgWRyPo/edit?usp=sharing" rel="noopener noreferrer"&gt;project&lt;/a&gt; and am having a hard time trying to complete it. The information given is confusing and at times lacking in clarity on what is supposed to be done. I don't know what to do because I believe I know OOP but with this project the directions are weird. Can someone look it over and tell me if it makes since to them and if it does tell me what I am missing in my project &lt;a href="https://gist.github.com/sonAndrew/4cd9aab78afb695fe2ebf704144804ad" rel="noopener noreferrer"&gt;here&lt;/a&gt;. You would go into the bin folder all the way down to get to the project.&lt;/p&gt;

&lt;p&gt;I thank you in advance for your help.&lt;/p&gt;

&lt;p&gt;update: Code is now a Gist.&lt;/p&gt;

</description>
      <category>java</category>
      <category>discuss</category>
      <category>help</category>
    </item>
    <item>
      <title>Received an 'A'</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Wed, 26 Feb 2020 19:15:03 +0000</pubDate>
      <link>https://dev.to/sonandrew/received-an-a-1n1k</link>
      <guid>https://dev.to/sonandrew/received-an-a-1n1k</guid>
      <description>&lt;p&gt;I received an 'A' in this Java class and was exempt from the final. Well next up is CPT 187 Object Oriented Programming. It has been truly rewarding to be able to complete all of my classes up until now with an A. I still have a good ways to go but I can say that I am doing well in college. &lt;/p&gt;

&lt;p&gt;I should probably start searching for a job right? &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsnp9qa5h1r4j4z1t8nqc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fsnp9qa5h1r4j4z1t8nqc.png" alt="Alt Text" width="800" height="242"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>java</category>
      <category>career</category>
    </item>
    <item>
      <title>New Keyboard</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Thu, 20 Feb 2020 05:19:45 +0000</pubDate>
      <link>https://dev.to/sonandrew/new-keyboard-3kp0</link>
      <guid>https://dev.to/sonandrew/new-keyboard-3kp0</guid>
      <description>&lt;p&gt;Got a new keyboard from amazon today. It's a HAVIT game series MAGIC EAGLE gaming computer but I will be using it for coding as well. Is this a weird thing to do or are you doing the same. Lol :-p&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fbsgkyphc3s4c1p3kswth.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fbsgkyphc3s4c1p3kswth.jpg" alt="Alt Text" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>discuss</category>
    </item>
    <item>
      <title>New desk with old desk underneath. I’m really liking this setup. What do you think?</title>
      <dc:creator>Andrew Jackson</dc:creator>
      <pubDate>Tue, 18 Feb 2020 23:06:05 +0000</pubDate>
      <link>https://dev.to/sonandrew/new-desk-with-old-desk-underneath-i-m-really-liking-this-setup-what-do-you-think-20pe</link>
      <guid>https://dev.to/sonandrew/new-desk-with-old-desk-underneath-i-m-really-liking-this-setup-what-do-you-think-20pe</guid>
      <description>&lt;p&gt;Hey so I got a new desk a week and a half ago and wanted to show my new setup. I will add another photo of how my old setup looked as well. It feels so good to have more space. If you want to show off your setup put it in the comments and lets see what you got. Lol ;D&lt;/p&gt;

&lt;h3&gt;
  
  
  Old Setup
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fiy9yydxts0hj8kzx9l2e.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fiy9yydxts0hj8kzx9l2e.jpeg" alt="OLD" width="800" height="1066"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  New Setup
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Foipz02iqjucnc4wx37xx.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Foipz02iqjucnc4wx37xx.jpg" alt="NEW 1" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fyp6kpitpw0han19x3n0u.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fyp6kpitpw0han19x3n0u.jpg" alt="NEW 2" width="800" height="612"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F52ly4oqrm8lewuhx3f9m.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F52ly4oqrm8lewuhx3f9m.jpg" alt="NEW 3" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

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