<?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: Ryan</title>
    <description>The latest articles on DEV Community by Ryan (@rdumais).</description>
    <link>https://dev.to/rdumais</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%2F104878%2Fb50ad56e-e866-4fff-9945-9cbbd8b8b4ac.jpeg</url>
      <title>DEV Community: Ryan</title>
      <link>https://dev.to/rdumais</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rdumais"/>
    <language>en</language>
    <item>
      <title>Are You Comfortable with Being Uncomfortable?</title>
      <dc:creator>Ryan</dc:creator>
      <pubDate>Fri, 28 Dec 2018 20:35:27 +0000</pubDate>
      <link>https://dev.to/rdumais/are-you-comfortable-with-being-uncomfortable-1bmp</link>
      <guid>https://dev.to/rdumais/are-you-comfortable-with-being-uncomfortable-1bmp</guid>
      <description>&lt;p&gt;I think there is a lot to say about a comfort zone. I have been thinking about how many times I have grown or succeeded by staying at a level I felt comfortable at… I couldn’t think of many.&lt;/p&gt;

&lt;p&gt;In the last couple of months, I have been working towards the goal of making myself uncomfortable. I started a new job at an insurance company in Massachusetts. This new position means a different commute, an entirely new industry, and a new skill set that I would have to become familiar with. Leaving my comfort zone sounded like a risk, and it was. What would happen if I didn’t enjoy my new position? No matter how you think of it – once you leave your comfort zone there is no going back. It is a choice you made and a choice you have to stick with.&lt;/p&gt;

&lt;p&gt;Looking back, I am proud that I have made this choice because I know many others wouldn’t.&lt;/p&gt;

&lt;p&gt;Source: &lt;a href="https://ryanduma.is/blog/2018/12/28/are-you-comfortable-with-being-uncomfortable/"&gt;ryanduma.is&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Windows 10 Reset Administrator Account Password</title>
      <dc:creator>Ryan</dc:creator>
      <pubDate>Wed, 14 Nov 2018 16:24:24 +0000</pubDate>
      <link>https://dev.to/rdumais/windows-10-reset-administrator-account-password-e9i</link>
      <guid>https://dev.to/rdumais/windows-10-reset-administrator-account-password-e9i</guid>
      <description>&lt;h1&gt;
  
  
  Introduction
&lt;/h1&gt;

&lt;p&gt;This article will use a known Windows backdoor to grant access to cmd prompt on Windows login screen. The process temporary replaces the ‘sticky key’ function and instead triggers cmd prompt, therefore allowing changes to the user account before login.&lt;/p&gt;

&lt;h1&gt;
  
  
  Requirements
&lt;/h1&gt;

&lt;p&gt;-90 minutes&lt;br&gt;
-USB Drive, formatted before use&lt;br&gt;
-An additional computer with Windows 10 installed&lt;/p&gt;
&lt;h1&gt;
  
  
  Procedure
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;A)&lt;/strong&gt; Create a Windows 10 repair drive on another Windows 10 computer. Use a USB for the recovery drive. This is the longest portion of the guide.&lt;/p&gt;

&lt;p&gt;1) Start menu &amp;gt; ‘Create a recovery drive’&lt;br&gt;
2) Follow the wizard.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;B)&lt;/strong&gt; Enable USB as boot priority in the computer’s BIOS settings. This feature is different for each motherboard manufacturer. Google your motherboard model for specific information regarding BIOS access and settings.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;C)&lt;/strong&gt; Connect the repair drive created earlier into the computer with the lost password while it is powered off. Power on the PC and boot into the repair drive (USB).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;D)&lt;/strong&gt; When booted into the repair drive:&lt;/p&gt;

&lt;p&gt;1) Choose your keyboard layout. ‘US’ is typically the first on the list&lt;br&gt;
2) Choose the ‘Troubleshoot’ option&lt;br&gt;
3) Choose the ‘Advanced Options’&lt;br&gt;
4) Choose the ‘Command Prompt’ option&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;E)&lt;/strong&gt; Determine which letter drive the Windows 10 OS is installed. If you know where Windows is located skip to step F.&lt;br&gt;
If unsure of which letter drive the Windows OS is installed:&lt;/p&gt;

&lt;p&gt;1) In cmd prompt type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;wmic logicaldisk get name
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;to get a list of letter drives in use. Write these down.&lt;/p&gt;

&lt;p&gt;2) Start with the first letter on your list and in your cmd prompt type the drive name e.g. ‘E:’ and hit Enter. The command prompt will change the drive directory to E: then you will want to enter ‘dir’ to see the contents of the drive. If the list of contents does not contain a ‘Windows’ folder, move to the next letter on the list using the same commands in this paragraph.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;F)&lt;/strong&gt; Once we have the correct letter drive for the Windows 10 OS, we can start running commands in the command prompt. &lt;br&gt;
Note: Change ‘LETTERNAME’ to the letter of actual drive.&lt;/p&gt;

&lt;p&gt;1) Type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;copy LETTERNAME:\windows\system32\sethc.exe LETTERNAME:\
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Cmd prompt should give you the notice that a file has been copied.&lt;/p&gt;

&lt;p&gt;2) Type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
copy /y LETTERNAME:\windows\system32\cmd.exe LETTERNAME:\windows\system32\sethc.exe
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Cmd prompt should notify you of a file change once again.&lt;/p&gt;

&lt;p&gt;3) Exit the command prompt, turn off the computer (through windows, on the previous ‘Troubleshoot’ screen), and remove the USB repair drive when fully powered down.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;G)&lt;/strong&gt; Boot up the computer and go to the login screen.&lt;/p&gt;

&lt;p&gt;1) In the bottom-right corner of the screen should be the ‘ease of access’ button. Click the button and enable ‘Sticky Keys’.&lt;br&gt;
2) Hit the Shift key five times.&lt;br&gt;
3) A cmd prompt should pop up. In the command prompt run this last command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
net user $USERNAME $PASSWORD
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;where $USERNAME is the user account that needs recovery and $PASSWORD is the new password that will be set.&lt;br&gt;
4) Exit the command prompt.&lt;br&gt;
5) Log into the user account with the new password created.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;H)&lt;/strong&gt; Once booted in, restart the computer and log in to ensure the change stays in effect. It is recommended to run windows updates and update drivers.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Shameless plug of where this article was original posted, on my blog @ &lt;a href="https://ryanduma.is/blog"&gt;https://ryanduma.is/blog&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>sysadmin</category>
      <category>windows</category>
      <category>password</category>
      <category>reset</category>
    </item>
    <item>
      <title>VBA Resources</title>
      <dc:creator>Ryan</dc:creator>
      <pubDate>Thu, 11 Oct 2018 15:17:52 +0000</pubDate>
      <link>https://dev.to/rdumais/vba-resources-1l2m</link>
      <guid>https://dev.to/rdumais/vba-resources-1l2m</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;I am looking to get into learning VBA specifically for Access and Excel. Does anyone have solid sources that they could recommend whether it be videos or work-alongs?&lt;/p&gt;

&lt;p&gt;Thank you in advance,&lt;br&gt;
Ryan&lt;/p&gt;

</description>
      <category>resources</category>
    </item>
    <item>
      <title>How Do You Decide on Colors in Design?</title>
      <dc:creator>Ryan</dc:creator>
      <pubDate>Fri, 05 Oct 2018 15:41:38 +0000</pubDate>
      <link>https://dev.to/rdumais/how-do-you-decide-on-colors-in-design-484m</link>
      <guid>https://dev.to/rdumais/how-do-you-decide-on-colors-in-design-484m</guid>
      <description>&lt;p&gt;This is a general discussion thread and I would love to hear what designers think about color in design.&lt;/p&gt;

&lt;p&gt;A few questions that I personally have to start the discussion are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What methods do you use to find your color palette?&lt;/li&gt;
&lt;li&gt;How do you know it's the right palette?&lt;/li&gt;
&lt;li&gt;How do you determine which elements get what color?&lt;/li&gt;
&lt;li&gt;Do you recommend any resources for this topic?&lt;/li&gt;
&lt;/ul&gt;

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