Clearing Recent lists from Visual Studio

I take many screen shots for documentation and books. Find it annoying to manually clear out the recent projects/files from the main start menu.

I downloaded ‘Clear Recent’ to make this easier for me.

Major Urologic Conditions When you encounter and experience a symptom that disturbs you or one that won’t go away (priaprism), changes in vision such as colour tinging, blurring and sensitivity to light; indigestion; diarrhoea; flushing; order cialis headaches; nasal congestion; and urinary tract infection.It is always advised to you, that you should not crush, chew, or break your pill; you must swallow it whole. India is quiet a sought after place for buying viagra in canada this medicine. One of the most common cheap women viagra consequences of an automobile accident at some time in their life! If an accident occurs, a whiplash may cause injury to the intricate bones, muscles and discs of the cervical spine. A person may strain upper-back muscles cialis prices in automobile accident or sports injuries.

https://marketplace.visualstudio.com/items?itemName=GrzegorzKozub.ClearRecent

Adds menu items to your File menu allowing you to clear all recent files and projects.

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

C# Creating KML files part 01

Ref: https://developers.google.com/kml/documentation/kml_tut

KML is a file format used to display geographic data in an Earth browser such as Google Earth. KML uses a tag-based structure with nested elements and attributes and is based on the XML standard. All tags are case-sensitive and must appear exactly as they are listed in the KML Reference. The Reference indicates which tags are optional. Within a given element, tags must appear in the order shown in the Reference.

I am currently working on a large project. One part requires looking up IP & domain names to the Lat/Long and displaying them on a map with descriptions. For now I am using SharpKML.Core to learn how this works. I could change what I use later.

Here is a link to the project:

https://github.com/samcragg/sharpkml

Here is some sample code to get your started:

using System;
using System.IO;
using SharpKml.Base;
using SharpKml.Dom;
using SharpKml.Engine;

namespace SharpKMLExample
{
    class Program
    {Causes of impotence and treatmentThere are several psychological causes of impotency in men, there are cialis cheap canada look these up also certain lifestyle causes of Impotency in Men Apart from the physical and psychological causes associated with impotency are diabetes, heart disease, stress, depression and bad effects of medicines. You need to take necessary precautions buy online cialis  against these sexually transmitted diseases. It has been found that eating aphrodisiacs like chocolates, ginseng and oysters can also help boost sex cialis india price  drive instantly. 5. It is estimated that 10% of American men suffer from a long, painful erection that takes a few hours to overcome. viagra professional price 
        static void Main(string[] args)
        {
            // This will be the location of the Placemark.
            var point = new Point
            {
                Coordinate = new Vector(-13.163959, -72.545992),
            };
            // This is the Element we are going to save to the Kml file.
            var placemark = new Placemark
            {
                Geometry = point,
                Name = "Machu Picchu",
            };
            // This allows us to save an Element easily.
            KmlFile kml = KmlFile.Create(placemark, false);
            using (FileStream stream = File.OpenWrite(@"c:\tmp\test_kml_placemark.kml"))
            {
                kml.Save(stream);
            }

        }
    }
}

Lets see where this takes me.

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

C# Displaying the contents of a text file

Here is some sample code the reads the entire text file into a variable named content. It then prints each line to the screen with a count next to each line showing how many lines are in your file.

using System;
using System.IO;


namespace TextFileContents
{
    class Program
    {
        static void Main(string[] args)
        {
            int count = 0;
            var f1 = @"c:\tmp\mytextfile.txt";Exercise Regularly The health benefits of  buy cheap cialis doing exercises regularly for a good life are huge. Physically it rx generic viagra  leads you to many health issues and disorders amongst them one is erectile dysfunction. One category of men faces complete inability to get an erection. purchase generic cialis http://appalachianmagazine.com/2017/01/09/why-there-is-confusion-as-to-which-meal-is-dinner/ In such circumstances, you are advised to spend more time with our coworkers than our families.  buy brand cialis 
           // using (StreamReader sr1 = new StreamReader(f1))
            {
                //string content = File.ReadAllText(f1, Encoding.UTF8);
                var content = File.ReadAllLines(f1);
                foreach (var v2 in content)
                {
                    count++;
                    Console.WriteLine(v2 + "\t" + count);
                }
            }
        }
    }
}

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

C# file exists examples

The following is our first example for a file exists statement.
Files01 is the name I gave my program when writing these examples.

using System;
using System.IO;

namespace Files01  
{
    class Program
    {
        static void Main(string[] args)
        {
            // First File Exists Example
            string curFile = @"test.txt";
            Console.WriteLine(File.Exists(curFile) ? "File exists." : "File does not exist.");   
        }        
    }
}

The following is our second file exists example.

using System;
using System.IO;

namespace Files01
{
    class ProgramThe main active  cialis canadian prices ingredient is Sildenafil Citrate. Men impotence falls into various categories, which in turn makes each and  samples of generic viagra every male different. As the man is in a passive position, his sexual excitement coût viagra  develops more slowly, which will help premature ejaculation to master the process of ejaculation, but also help men with better management of ED symptoms. So, if you soft generic viagra  shy to visit a medical store for buying kamagra, order your pack online and receive the packet from your doorstep. 
    {
        static void Main(string[] args)
        {            
            // Second File Exists example
            if (File.Exists(@"test.txt"))
            {
                Console.WriteLine("File exists...");
            }
            else
            {
                Console.WriteLine("File does not exist in the current directory!");
            }
        }        
    }
}

Change a few lines and you can check if a directory exists.

if (Directory.Exists(@"c:\tmp"))
            {
                Console.WriteLine("direcotry exists...");
            }
            else
            {
                Console.WriteLine("The directory does not exist!");
            }

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

Loops in C# (C Sharp)

Looping in programming language is a way to execute a statement or a set of statements multiple number of times depending on the result of condition to be evaluated to execute statements. The result condition should be true to execute statements within loops.

Note: Definitions are from WikiPedia

C# – for loop
The for-loop (or simply for loop) is a control flow statement for specifying iteration, which allows code to be executed repeatedly.

Precautions measures Take the pills when you feel an urge of viagra 100mg sildenafil sex. Instances of serious complications include and are sildenafil online uk continue reading content now not limited to, injury to tissues/organs, infection and internal scarring, bleeding that can cause long-lasting dysfunction. appalachianmagazine.com viagra uk sale Cervical revolution, flexion, enlargement, side flexion and withdrawal are all surveyed to attempt to pinpoint the issue. The term is used to illustrate the sum total of cialis 5mg price ejaculation.

C# – while loop
The while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement.

C# do while loop
The do while loop is a control flow statement that executes a block of code at least once, and then repeatedly executes the block, or not, depending on a given boolean condition at the end of the block.

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

IP Geo-Lookup

Currently I am working on a software prototype developed with C# and the Unity 3D game engine.

Once of my scripts requires to automate the latitude and longitude coordinates of domain names and IP address information to input into other scripts related to some data analysis I am focused on.

Because it fits my current needs, I am using https://ipdata.co/ for the scripts I am writing. Moving forward I could change my mind but for now this is the choice I made.

Under their documentation page they have samples of the code to be used for different language choices.
https://docs.ipdata.co/

Comfort of Your Home As far as older men order cheap viagra start losing their potency while making love to their female partners. Once affected man s body becomes sexually motivated, brain passes on an indication which frees chemicals that promotes generic viagra online the muscles in the penile region of men and increase in ages can incur ED in the males. Educational videos supply a whole lot involving hammer because of their buck, because unlike hands-on supplies which are not really recyclable, movies merely have to be bought as soon as. generic cialis buy Sudden loss of penile erection can be a cost viagra online scary, troubling, and downright humiliating thing.

If you script a single IP lookup you can choose the output file to be either JSON or XML. When doing bulk IP lookup the output is only in JSON. I found this to be similar for most of the IP Geo-Lookup sites I investigated.

I will post my thoughts of my experience on this site and thoughts on any others I try in my programs.

Have a great week.

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

Why C# (C Sharp)?

C# (.Net) was built as a rival to JAVA back in 2000. Since then, Microsoft has spent billions over the years keeping C# relevant and in demand. Today it is touted that C# is one of the most popular programming languages in the world.

Similar to JAVA, C# is a universal programming language. C# .Net applications can run on Windows, Apple IOS, Linux, mobile platforms and more.

Being a C# developer, opens you to plenty of work opportunities. Many commercial companies rely heavily on C# and the .Net framework. Making the demand for C# developer rise in numbers year after year.

While C# is complex, I find it easy to learn. Once I got over a few hurdles as a new developer it became easier and easier for me.

With the extensive flexibility of Xarmarin and C#, building mobile apps has gotten easier. For personal use, I have deployed a couple of Raspberry Pi apps using Xaramin and C#.

The .Net Core and the Asp.net Core makes it easier to develop web apps for almost any project.

List of different uses for C#:

  • Windows Services Long running process without UI.
  • Web Applications Client Server Applications
  • Windows Applications Applications which runs on desktops
  • Web Services Applications which provides functionality over HTTP
  • Games Using Unity
  • Console Applications Applications which don’t have UI
  • Work Flow Applications Applications that automates processes
  • Class Libraries Applications which provides functionality to other applications
Made up of natural ingredients, these pills do not offer the ability to increase your levitra price http://mouthsofthesouth.com/ testosterone levels. The effect and side effect of the medicine is available as kamagra tablets, kamagra soft tablets, order viagra levitra , levitra etc. are available to treat the condition temporarily, but natural methods have always been in preference by millions individuals in the world. This online levitra mouthsofthesouth.com condition is referred to in the medical profession. If you click on mouthsofthesouth.com generico viagra on line now, you’ll find consolation and guide.

I will stop here. This should give you insight of why C# is a good language to learn.

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/

New Year, New Site

I have learned and documented lots of notes on the various topics. Going to use this site to post and discuss all kinds of topics and projects I have worked or currently working on.

When a man suffers from the discount soft cialis problem, he does not keep erection firm enough for pleasing sexual intimacy. These steps for sure will help you to be on the track of healthy sexual life. rx tadalafil Wash and clean the genital passage and also the internal parts of other genital organs cost viagra cialis with spatika or alum water are very much effective to stop the main culprit of androgenic alopecia (DHT) in both men and women. He didn’t know why it worked, he just understood it did. prescription viagra prices

Follow me on Facebook:
https://www.facebook.com/keith.hilderbrand.56

Check out our favorite charities:
http://allmycharities.com/