<?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: xarzu</title>
    <description>The latest articles on DEV Community by xarzu (@xarzu).</description>
    <link>https://dev.to/xarzu</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%2F790864%2F769eda2c-034b-459c-a9f9-70f31b296852.jpg</url>
      <title>DEV Community: xarzu</title>
      <link>https://dev.to/xarzu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xarzu"/>
    <language>en</language>
    <item>
      <title>How do I establish an open connection to an open web browser in C#?</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Fri, 27 Dec 2024 06:56:35 +0000</pubDate>
      <link>https://dev.to/xarzu/how-do-i-establish-an-open-connection-to-an-open-web-browser-in-c-2n1l</link>
      <guid>https://dev.to/xarzu/how-do-i-establish-an-open-connection-to-an-open-web-browser-in-c-2n1l</guid>
      <description>&lt;p&gt;How do I establish an open connection to an open web browser in C#?&lt;/p&gt;

&lt;p&gt;In a Microsoft C# program using a Visual Studio Code I am using the following namespaces:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;using OpenQA.Selenium;&lt;br&gt;
using OpenQA.Selenium.Chrome;&lt;br&gt;
using OpenQA.Selenium.Support.UI;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;After I get a string variable, "url", assigned with a URL of a website page, I use the following commands which successfully opens a browser window and loads the web site:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;IWebDriver driver = new ChromeDriver();&lt;br&gt;
driver.Navigate().GoToUrl(url);&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;But this opens a chrome browser which is denoted somewhere as being a "test" session.  It somehow knows it was launched from a program.  And, since I am using this program to automate some interactions with linkedin, this information is passed along to linkedin which prompts me that it requires I login.  This creates a cascading seriies of events that are difficult to automate including using my cell as a means of verification.&lt;/p&gt;

&lt;p&gt;So, instead of taking this route, how do I establish an open connection to an open web browser in C#?  I figure, if I instead connect to a web browser that is already open and already has its veriication steps done with linkedin, then I won't be prompted to log in and do any user verification.&lt;/p&gt;

&lt;p&gt;On a personal note, if this is intentional security measures to prevent people from abusing a system, then this is a sad thing.&lt;/p&gt;

&lt;p&gt;On a broader view, will all this mean I will have to make a web browser from scratch?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I am having an issue with GMAIL SMTP in a C# program</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Fri, 22 Nov 2024 17:16:52 +0000</pubDate>
      <link>https://dev.to/xarzu/i-am-having-an-issue-with-gmail-smtp-in-a-c-program-3h04</link>
      <guid>https://dev.to/xarzu/i-am-having-an-issue-with-gmail-smtp-in-a-c-program-3h04</guid>
      <description>&lt;p&gt;I want to use C# do to a necessary mass emailing of hundreds of receiving email addresses. I have a gmail account and I believe my message will be better received if it comes from my personal gmail account instead of from one of my website's email accounts. But if I do not resolve this issue, I might resort to trying something else.&lt;/p&gt;

&lt;p&gt;A youtube tutorial for setting up a C# program for sending GMail messages has instructed me to first set up two tier authentication. So I did that. Then this tutorial suggested that I use a special feature in the Google Account Settings of creating an App ID with a unique 16 character special password. If you like, I can add more specifics and content about this and post a link to the youtube tutorial.&lt;/p&gt;

&lt;p&gt;It did not work and the line of code where, after I set up the parameters of a message, I use the SMTP command to send the message an error is thrown.&lt;/p&gt;

&lt;p&gt;It almost seems that there is so much security protocols surrounding GMail now that Google has made it virtually impossible for someone to write a C# program to make tasks easier.&lt;/p&gt;

&lt;p&gt;On the other hand, I have an active Email server, Thunderbird, that I use. So there must be a correct way to use Gmail in a desktop App and I assume a software developer can write a program to do what I am wanting to accomplish.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How do I connect my existing Visual Studio 2022 project to an existing github repository?</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Sat, 28 Sep 2024 01:33:28 +0000</pubDate>
      <link>https://dev.to/xarzu/how-do-i-connect-my-existing-visual-studio-2022-project-to-an-existing-github-repository-27c9</link>
      <guid>https://dev.to/xarzu/how-do-i-connect-my-existing-visual-studio-2022-project-to-an-existing-github-repository-27c9</guid>
      <description>&lt;p&gt;I set up a github repository to match the project I am working on in Visual Studio 2022. I did something wrong and only the project file exists. I followed a tutorial. But the tutorial was disappointing and the instruction was to drag the content of my project and I suppose I only uploaded the project file.&lt;/p&gt;

&lt;p&gt;That was then. This is now. So far this is what I have done. In Visual studio I opened a command window by click on CTRL + `. THen using the.git file and its location from my github repository, I typed at the command line:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;** Copyright (c) 2022 Microsoft Corporation&lt;/p&gt;



&lt;p&gt;PS C:\source\repos\SharePointListCreation&amp;gt; git clone &lt;a href="https://github.com/Wm-M-Thompson/SharePointListCreation.git" rel="noopener noreferrer"&gt;https://github.com/Wm-M-Thompson/SharePointListCreation.git&lt;/a&gt;&lt;br&gt;
Cloning into 'SharePointListCreation'...&lt;br&gt;
remote: Enumerating objects: 3, done.&lt;br&gt;
remote: Counting objects: 100% (3/3), done.&lt;br&gt;
remote: Compressing objects: 100% (3/3), done.&lt;br&gt;
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)&lt;br&gt;
Receiving objects: 100% (3/3), done.&lt;br&gt;
PS C:\source\repos\SharePointListCreation&amp;gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That is the result if me putting "git clone &lt;a href="https://github.com/Wm-M-Thompson/SharePointListCreation.git" rel="noopener noreferrer"&gt;https://github.com/Wm-M-Thompson/SharePointListCreation.git&lt;/a&gt;" at the command line window inside Visual Studio.&lt;/p&gt;

&lt;p&gt;I asked AI and this is what they suggested:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Forv0bf1rclsjbpdccw5o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Forv0bf1rclsjbpdccw5o.png" alt="Image description" width="800" height="855"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As the case sometimes is, following the direction of AI does not result in positive results. When I right-clicked on the solution, the option to "Add Solution to Source Control" did not appear. Instead, I got this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Febeip7n7mobnyf69q3ja.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Febeip7n7mobnyf69q3ja.png" alt="Image description" width="558" height="665"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now, when I click on this, option to "Create Git Repository..." I am not able to set up a GitHub connection because the system recognizes that it already exists and the "Create and push" button is greyed out, but when pick "existing remote" I am able to make the connection and (supposedly) push my code to github.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpqxavnxbpnijtanp0s94.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpqxavnxbpnijtanp0s94.png" alt="Image description" width="800" height="472"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzxp12c9gptp8l381dcmf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzxp12c9gptp8l381dcmf.png" alt="Image description" width="800" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This seems to work. There is a notice that appears in the IDE in the bottom left that suggests that the files is being uploaded to the github repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1f0a0qskwm3elm1vvnnm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1f0a0qskwm3elm1vvnnm.png" alt="Image description" width="254" height="99"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;On github there seemed to be the files there but, at the same time, when I look closer at the content, the files were NOT there. Anyway, here is a screen shot of what looks like the files ARE there:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frkgdi3q2kdtitl3fx26k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frkgdi3q2kdtitl3fx26k.png" alt="Image description" width="800" height="202"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So I uploaded the .cs and .sln files by hand. Now, how do I do periodic pushes and updates to github from my Microsoft Visual Studio 2022 IDE?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>In C# how do I use the FieldCollection class Add method for adding columns to shaprepoint lists?</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Thu, 12 Sep 2024 20:51:33 +0000</pubDate>
      <link>https://dev.to/xarzu/in-c-how-do-i-use-the-fieldcollection-class-add-method-for-adding-columns-to-shaprepoint-lists-3843</link>
      <guid>https://dev.to/xarzu/in-c-how-do-i-use-the-fieldcollection-class-add-method-for-adding-columns-to-shaprepoint-lists-3843</guid>
      <description>&lt;p&gt;This is what bing ai copilot says:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;using Microsoft.SharePoint.Client;

ClientContext clientContext = new ClientContext("https://yoursharepointsiteurl");
List targetList = clientContext.Web.Lists.GetByTitle("Your List Title");

// Define the new field
FieldCreationInformation newFieldInfo = new FieldCreationInformation(FieldType.Text)
{
    DisplayName = "New Column",
    InternalName = "NewColumn",
    Group = "Custom Columns",
    AddToDefaultView = true
};

// Add the new field to the list
Field newField = targetList.Fields.Add(newFieldInfo);
clientContext.ExecuteQuery();

Console.WriteLine("New column added successfully.");

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This does not help.  I have some string types for columns, datetime tyhpes for columns, and some double types for columns.  This bit of code does not explain how I manage to add those column types.&lt;/p&gt;

&lt;p&gt;So I asked chatgpt.com&lt;/p&gt;

&lt;p&gt;in C# how do I use the FieldCollection class Add method for adding columns to shaprepoint lists?&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;using Microsoft.SharePoint;
using System;

namespace SharePointAddColumnExample
{
    class Program
    {
        static void Main(string[] args)
        {
            using (SPSite site = new SPSite("http://yoursitecollection"))
            {
                using (SPWeb web = site.OpenWeb())
                {
                    // Get the list where you want to add the column
                    SPList list = web.Lists["Your List Name"];

                    // Check if the field (column) already exists to avoid duplication
                    if (!list.Fields.ContainsField("New Column"))
                    {
                        // Add a new text column (single line of text)
                        list.Fields.Add("New Column", SPFieldType.Text, false);

                        // Update the list to save changes
                        list.Update();

                        Console.WriteLine("Column added successfully.");
                    }
                    else
                    {
                        Console.WriteLine("Column already exists.");
                    }
                }
            }
        }
    }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But this does nto work because this is an error:&lt;br&gt;
                        // Add a new text column (single line of text)&lt;br&gt;
                        list.Fields.Add("New Column", SPFieldType.Text, false);&lt;/p&gt;

&lt;p&gt;the Add methode for Fields does not take three arguments&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Fundamental local Git not working.</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Tue, 25 Jun 2024 19:31:09 +0000</pubDate>
      <link>https://dev.to/xarzu/fundamental-local-git-not-working-1idm</link>
      <guid>https://dev.to/xarzu/fundamental-local-git-not-working-1idm</guid>
      <description>&lt;p&gt;For reasons beyond the scope of this discussion thread, I have found the need to install git locally on my work windows 10 computer.  But from the command line, the basic commands are not recognized.  For example:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;git config&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;gets the response:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;'git' is not recognized as an internal or external command,
operable program or batch file.

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Can anyone please offer suggestions or next steps I should try?&lt;/p&gt;

</description>
    </item>
    <item>
      <title>My .NetFramework version does not work with my Microsoft.SharePointClient.dll version. Which version should I use?</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Tue, 11 Jun 2024 15:04:47 +0000</pubDate>
      <link>https://dev.to/xarzu/my-netframework-version-does-not-work-with-my-microsoftsharepointclientdll-version-which-version-should-i-use-4e3o</link>
      <guid>https://dev.to/xarzu/my-netframework-version-does-not-work-with-my-microsoftsharepointclientdll-version-which-version-should-i-use-4e3o</guid>
      <description>&lt;p&gt;My .NetFramework version does not work with my Microsoft.SharePointClient.dll version.  Which version  should I use?&lt;/p&gt;

&lt;p&gt;I am trying to add some CSOM functionality to my C# program such that I will be allowed to do CRUD operations on a Microsoft List (aka SharePoint List).  Assuming you know what CSOM and CRUD is, I will not bore you with the details of the specifics.  The end result of adding the references to the DLLS and the proper namespace, I get an error in my IDE:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Could not install package 'Microsoft.SharePoint.Client.dll&lt;br&gt;
15.0.4420.1017'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.7.2', but the package does not&lt;br&gt;
contain any assembly references or content files that are compatible&lt;br&gt;
with that framework. For more information, contact the package&lt;br&gt;
author."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And so, I have two questions:&lt;/p&gt;

&lt;p&gt;What .NetFramework version is compatible  with Microsoft.SharePoint.Client.dll 15.0.4420.1017 ?&lt;br&gt;
(question 1)&lt;/p&gt;

&lt;p&gt;What Microsoft.SharePoint.Client.dll version is compatible  with .NETFramework Version=v4.7.2 ?&lt;br&gt;
(question 2)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>SharePoint, we have a problem</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Mon, 10 Jun 2024 23:10:01 +0000</pubDate>
      <link>https://dev.to/xarzu/sharepoint-we-have-a-problem-4jlp</link>
      <guid>https://dev.to/xarzu/sharepoint-we-have-a-problem-4jlp</guid>
      <description>&lt;p&gt;I am trying to link my C# code to my Microsoft List (aka, SharePoint List).  The learning path has included this suggestion:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8kqyr033r49i6adtrdy0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8kqyr033r49i6adtrdy0.png" alt="Image description" width="552" height="221"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It turns out I do, in fact, have Microsoft.SharePoint.Client.Runtime.dll and Microsoft.SharePoint.Client.dll on local computer&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4fte4uhq3cnpaebawt65.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4fte4uhq3cnpaebawt65.png" alt="Image description" width="800" height="528"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftcdnxr3d6bulf8m4trbx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftcdnxr3d6bulf8m4trbx.png" alt="Image description" width="800" height="487"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In my C# code, I have added these two DLL's as a Reference.  Then I typed in the "using" code as described. But when I tried to use this in my Visual Studio 2022 and I got this error:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccxvg54yfk8pxcu4u7y2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fccxvg54yfk8pxcu4u7y2.png" alt="Image description" width="800" height="98"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Can you offer a suggestion?  I know you can.  I believe in you.  Please help.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I just started learning Blazor and I hit a speed bump right out of the gate.</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Thu, 30 May 2024 21:23:19 +0000</pubDate>
      <link>https://dev.to/xarzu/i-just-started-learning-blazor-and-i-hit-a-speed-bump-right-out-of-the-gate-5dn7</link>
      <guid>https://dev.to/xarzu/i-just-started-learning-blazor-and-i-hit-a-speed-bump-right-out-of-the-gate-5dn7</guid>
      <description>&lt;p&gt;I just started learning Blazor and I hit a speed bump right out of the gate.&lt;/p&gt;

&lt;p&gt;I am trying to come up to speed on Blazor. I am following a tutorial on youtube. The tutorial has this image.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff4lrj1nwebttyjulnznd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff4lrj1nwebttyjulnznd.png" alt="Image description" width="722" height="434"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But when I am working with Visual Studio 2024 Community Version, I have this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fki49o9txigbtp3t3bk6l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fki49o9txigbtp3t3bk6l.png" alt="Image description" width="711" height="399"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It is because things are completely different with Visual Studio Code?&lt;/p&gt;

&lt;p&gt;Please advise.&lt;/p&gt;

</description>
      <category>blazor</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>What is a good UI to use these days.</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Wed, 29 May 2024 20:22:55 +0000</pubDate>
      <link>https://dev.to/xarzu/what-is-a-good-ui-to-use-these-days-54j</link>
      <guid>https://dev.to/xarzu/what-is-a-good-ui-to-use-these-days-54j</guid>
      <description>&lt;p&gt;I am writing simle console apps in C#.  But I would like it if I had a good UI to use.  Since we live in an age where everything is run off the internet or intranet through a web browser, should I use a javascript frame work?  What is a good choice for that?  If I am using the UI to access and upload local files, like excel data files, what would be a good suggestion to use?  Is there a bare-bones javascript suggestion that I can use?&lt;/p&gt;

&lt;p&gt;There is a lot of talk online that WPF is not a good choice anymore and is losing popularity and support.  Is it being replaced by something like Blazor?&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How do I reset my Android Samsung phone back to factory settings?</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Sun, 31 Dec 2023 07:52:51 +0000</pubDate>
      <link>https://dev.to/xarzu/how-do-i-reset-my-android-samsung-phone-back-to-factory-settings-4ii8</link>
      <guid>https://dev.to/xarzu/how-do-i-reset-my-android-samsung-phone-back-to-factory-settings-4ii8</guid>
      <description>&lt;p&gt;How do I reset my Android Samsung phone back to factory settings?  I do not know how or why or what one of my multiple messaging apps has the bug but I am not able to receive a text message from Facebook to reacquire my Facebook account.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Android Studio Build Immediate Fail</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Thu, 13 Oct 2022 17:03:19 +0000</pubDate>
      <link>https://dev.to/xarzu/android-studio-build-immediate-fail-4855</link>
      <guid>https://dev.to/xarzu/android-studio-build-immediate-fail-4855</guid>
      <description>&lt;p&gt;This example code was taken straight from github.  I am confident that this code is supposed to build but I suspect something in the compiler of Android Studio has changed, updated, or with a newer version of the Android operating system something needs to be updated in the source code of an app.  This is because a build and/or gradle sync has this error immediately.  Nothing major has changed in the code.  I suspect this might be a common thing and I suspect someone must know something about this and how to fix it.  Please advise. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--avy-IDiZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x2o0ojp2qspg2nxb8gg9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--avy-IDiZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x2o0ojp2qspg2nxb8gg9.png" alt="Image description" width="800" height="340"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I am looking for an Android Studio Client/Server USB Sample/Example Code</title>
      <dc:creator>xarzu</dc:creator>
      <pubDate>Thu, 06 Oct 2022 10:00:14 +0000</pubDate>
      <link>https://dev.to/xarzu/i-am-looking-for-an-android-studio-clientserver-usb-sampleexample-code-4i9l</link>
      <guid>https://dev.to/xarzu/i-am-looking-for-an-android-studio-clientserver-usb-sampleexample-code-4i9l</guid>
      <description>&lt;p&gt;I am looking for an Android Studio Client/Server USB Sample/Example code.  I have gotten a basic Java Based Android Studio App built successfully running through Android Studio and debugged by representing it on a physical Samsung Android device through a USB port.  What I would like to do now is the following:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Build a small Java example code to run separately on Ubuntu that is not necessarily build on Android Studio but some other development platform that can communicate through USB to software build on the first program mentioned here.&lt;/li&gt;
&lt;li&gt;Build an APK based on the code from the first project mentioned here and deploy it to an Android device.&lt;/li&gt;
&lt;li&gt;Test the communication between these two programs.&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
  </channel>
</rss>
