public static void createEntry()
        {
            var databaseIP = ConfigurationManager.AppSettings["databaseIP"];

            if (databaseIP == null)
            {
                throw new Exception("No key called 'databaseIP' in App.config *(make sure it's in the right one)*");
            }

            if (!RSSHelper.isConnectedToTheInternet())
            {
            }

            var ping = new Ping().Send("However we get this");

            if (ping.Status != IPStatus.Success)
            {
            }

            using (var context = new PlanningContext())
            {
                if (!context.Database.Exists())
                {
                }
            }
        }