Giter VIP home page Giter VIP logo
using System;
using System.Collections.Generic;
using System.Linq;

namespace GithubProfile
{
    class Program
    {
        static void Main(string[] args)
        {
            var profile = new Dictionary<string, string>
            {
                ["Name"] = "Hasan Enes",
                ["Location"] = "Turkey/Antalya",
                ["Occupation"] = ".Net Developer",
                ["Software_Languages"] = "C#, Python, Javascript, Typescript, ",
                ["Areas_of_Interest"] = "Backend, Web Development, Cyber Sec."
            };

            Console.WriteLine("Hello! I'm {0}, I'm a {1} in {2}",
                profile["Name"], profile["Occupation"], profile["Location"]);

            Console.WriteLine("Programming languages I am proficient in: {0}.",
                profile["Software_Languages"]);

            Console.WriteLine("Areas of interest to me: {0}.",
                profile["Areas_of_Interest"]);

            var best_projects = new Dictionary<string, string>
            {
                ["Menu Plus"] = @"You can switch the menus in the restaurant to qr system and place orders through this system.
                                 It is not open source but you can access it from https://menuplus.com.tr.",

                ["Csv Tool"] = @"You can upload the csv file and convert it to C# Model, Mongo Insert Command, Sql Insert Commands.
                                 In addition, even if the column names are not available in the first line of the csv file,
                                 you can continue your operations by manually entering them.",

                ["CarBook"] = @"It is a car rental project I made with mvc.
                               You can update many detailed sections such as vehicle, brand via the admin panel."
            };

            Console.WriteLine("Some of my projects:");
            best_projects.ForEach(proje => Console.WriteLine("- {0}", proje));

            Console.WriteLine("Don't forget to check out the other repositories in my profile!");
        }
    }
}

Enes's Projects

Enes doesnโ€™t have any public repositories yet.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.