Bing

Showing posts with label Code Snippet. Show all posts
Showing posts with label Code Snippet. Show all posts

Friday, December 30, 2022

Live C# development session - 2 on January 2nd at 09:20 a.m India Time

Live C# development session - 2 on January 2nd at 09:20 a.m India Time 


Another 20 - 30 minute live video while developing the free, open source tool.





NOT associated with the erra / yerra karan, kamalakar, diwakar, kareem, karan, erra / yerra sowmya, erra / yerra sowjanya, zinnabathuni sowjanya, bojja srinivas (was a friend and batchmate, not anymore), mukesh golla (was a friend and classmate, not anymore), erra sowmya, erra sowjanya, thota veera, uttam’s, bandhavi’s, bhattaru’s, thota’s, bojja’s, bhattaru’s.

Mr. Kanti Kalyan Arumilli

B.Tech, M.B.A

Facebook

LinkedIn

Founder & CEO, Lead Full-Stack .Net developer

ALight Technology And Services Limited

+91-789-362-6688, +1-480-347-6849, +44-07718-273-964

Live C# development session - 2 on January 2nd at 09:20 a.m India Time

Live C# development session - 1

Live C# development session - 1


As mentioned in previous blog posts - An approach for securing some sensitive content and The need for serious security I.T, current state of a sophisticated spies / hackers equipment, I am planning to do few live coding sessions over the next few days. Once the code is complete, the code would be available for anyone via Github. Any C# beginner interested in Cryptography, System.Diagnostics.Process are welcome to ask questions.





Live C# development session - 1

Friday, December 16, 2022

Cancelled - XMLSitemapGenerator OpenSource Library Live Coding on December 21st at 04:15 a.m GMT

Cancelled - XMLSitemapGenerator OpenSource Library Live Coding on December 21st at 04:15 a.m GMT







NOT associated with the erra / yerra karan, kamalakar, diwakar, kareem, karan, erra/yerra sowmya, erra/yerra sowjanya, zinnabathuni sowjanya, bojja srinivas (was a friend and batchmate, not anymore), mukesh golla (was a friend and classmate, not anymore), erra sowmya, erra sowjanya, thota veera, uttam’s, bandhavi’s, bhattaru’s, thota’s, bojja’s, bhattaru’s.


Mr. Kanti Kalyan Arumilli

B.Tech, M.B.A



Founder & CEO


Friday, February 11, 2022

Code Snippet - Read Password from Console C#

 Code Snippet - Read Password from Console C#

        The following code snippet shows how to read string from console without outputting the typed in characters, useful for reading passwords etc...

        The important difference is to use Console.ReadKey(true) for reading each character instead of Console.ReadKey() or Console.ReadLine().


var sb = new StringBuilder();

    while (true)

    {

        var c = Console.ReadKey(true);

        if (c.Key == ConsoleKey.Enter)

            break;

        sb.Append(c.KeyChar);

    }


    return sb.ToString();


Code Snippet - Read Password from Console C#

WebVeta Major Release: More Accuracy, Greater Value - 2025 August

  I am thrilled to announce a milestone update at WebVeta that’s set to redefine your website’s search experience! The latest major release ...