Sr. Content Developer at Microsoft, working remotely in PA, TechBash conference organizer, former Microsoft MVP, Husband, Dad and Geek.
137364 stories
·
31 followers

AI on Windows: Chat Styling

1 Share

In the past three posts about working with AI on Windows, we covered connecting to Phi Silica, getting progress response, and building a chat experience. In this post we’re going to improve the styling of the chat by using data templates and including a system message to setup the chat interaction.

At the end of the previous post, the layout was relatively basic, with the formatting of each item in the ListView being the ToString representation of the PhiMessage object.

To make it easier to distinguish between User input and the Assistant response, we’ll use two data templates that simply align the text to the left, for the Assistant, or the right, for the User. This will use a data template selector to pick which template to use based on the User property on the PhiMessage.

In the following video we create an ItemTemplate for the ListView, which will show the User and Message for the PhiMessage. We’ll also create a HeaderTemplate that will be data bound to a SystemMessage. For this, we’ll update the MainViewModel to include the SytemMessage property, which will be combined with the message history in forming the Phi Silica prompt.

[ObservableProperty]
private string _systemMessage = "You are an assistant for a 5 year old child";

public ObservableCollection<PhiMessage> Messages { get; } = new();

[ObservableProperty]
private string _response = string.Empty;

[RelayCommand]
public async Task SendMessage(string message)
{
    Messages.Add(new PhiMessage("User", message));
#if WINDOWS

    if (!LanguageModel.IsAvailable())
    {
        var op = await LanguageModel.MakeAvailableAsync();
    }

    var sysMessage = new PhiMessage("System", SystemMessage);

    var prompt = string.Join(Environment.NewLine, [sysMessage.ToString(), ..(from m in Messages
                                                    select m.ToString())]);


    using LanguageModel languageModel = await LanguageModel.CreateAsync();
    var progressTask = languageModel.GenerateResponseWithProgressAsync(prompt);
    progressTask.Progress +=
        (s, progress) => Dispatch(() => Response += progress);

    var result = await progressTask;
    Response = result.Response;
#else
    Response = "Design-time response....";
    await Task.Delay(1000);
    Response = "Design-time response....(updating)";
    await Task.Delay(1000);
    Response = "Final design-time response";
#endif
    Messages.Add(new PhiMessage("Assistant", Response));
    Response = string.Empty;
}

And now the video for creating the ItemTemplate and HeaderTemplate.

Now that we have an ItemTemplate, we can duplicate the template for the User template where the text is right aligned. In order to use these templates we’ll need a template selector.

public class MessageTypeSelector : DataTemplateSelector
{
    public DataTemplate UserTemplate { get; set; }

    public DataTemplate AssistantTemplate { get; set; }

    public DataTemplate SystemTemplate { get; set; }

    protected override DataTemplate SelectTemplateCore(object item, DependencyObject container)
    {
        if (item is PhiMessage message)
        {
            return message.User switch
            {
                "System" => SystemTemplate,
                "Assistant" => AssistantTemplate,
                _ => UserTemplate,
            };
        }
        return base.SelectTemplateCore(item, container);
    }
}

The two templates and an instance of the template selector, which references the two templates, need to be added to the Resources of the page.

<Page.Resources>
    <DataTemplate x:Key="UserDataTemplate">
        <Grid>
            <StackPanel>
                <TextBlock Style="{StaticResource CaptionTextBlockStyle}"
                            Text="{Binding User}"
                            TextAlignment="Right" />
                <TextBlock Style="{StaticResource BaseTextBlockStyle}"
                            Text="{Binding Message}"
                            TextAlignment="Right" />
            </StackPanel>
        </Grid>
    </DataTemplate>

    <DataTemplate x:Key="AssistanctDataTemplate">
        <Grid>
            <StackPanel>
                <TextBlock Style="{StaticResource CaptionTextBlockStyle}"
                            Text="{Binding User}" />
                <TextBlock Style="{StaticResource BaseTextBlockStyle}"
                            Text="{Binding Message}" />
            </StackPanel>
        </Grid>
    </DataTemplate>

    <local:MessageTypeSelector x:Key="MessageTypeSelector"
                                UserTemplate="{StaticResource UserDataTemplate}"
                                AssistantTemplate="{StaticResource AssistanctDataTemplate}" />
</Page.Resources>

Using Hot Design, we can update the ListView to remove the locally defined ItemTemplate and select the MessageTypeSelector resource.

Now when we run the application on Window, we can customize the system message in order to change how Phi Silica responds.

The post AI on Windows: Chat Styling appeared first on Nick's .NET Travels.

Read the whole story
· · · · · · · ·
alvinashcraft
3 hours ago
reply
Pennsylvania, USA
Share this story
Delete

‘Millions’ may have protested Trump and Musk yesterday

1 Share

Hundreds of thousands of people signed up to attend over 1,300 “Hands Off!” protests against President Donald Trump and Elon Musk yesterday. Today, estimates from groups involved in planning the protests suggest the protesters in the US and abroad may have actually numbered in the millions.

Activist group MoveOn is “estimating millions of attendees” went to the 1,300-plus scheduled events, with more than 100,000 turning out for the Washington, DC protest, Britt Jacovich, the group’s communications director, told The Verge via email. A press release published on the official Hands Off! website yesterday tells the same story:

Millions of people flooded the streets today at over 1,300 “Hands Off!” peaceful protests across all 50 states, U.S. territories, and a dozen locations globally, demanding an end to the authoritarian overreach by Trump and Musk.

The protests were laser-focused on Musk and Trump, but the concerns that drove yesterday’s demonstrations are wide-ranging, covering everything from Trump’s trade war and DOGE’s relentless federal agency cuts and layoffs, to LGBTQ+ and other civil rights issues, to the war in Ukraine. More than 150 groups participated in their organization, including those mentioned in this story, as well as the American Civil Liberties Union, the League of Women Voters, and labor unions like the AFL-CIO and those representing federal workers, such as the National Treasury Employees Union.

Indivisible, another of the more than 150 organizations involved in planning the protests, gives a similar estimate to MoveOn’s in a statement reported by Common Dreams, in which it says that “at virtually every single event the crowds eclipsed our estimates.” From Common Dreams:

“This is the largest day of protest since Trump retook office,” the group added. “And in many small towns and cities, activists are reporting the biggest protests their communities have ever seen as everyday people send a clear, unmistakable message to Trump and Musk: Hands off our healthcare, hands off our civil rights, hands off our schools, our freedoms, and our democracy.”

Other reported estimates from yesterday are smaller. The Guardian, The Hill, and Al Jazeera each put the number in the hundreds of thousands. Even so, millions doesn’t seem implausible. According to Axios, over 45,000 people gathered in Raleigh, North Carolina, and the outlet reports more than 100,000 people demonstrated both in Washington, DC and New York City. Organizers say more than 30,000 showed up in Chicago, writes WBEZ Chicago.

We’re building a #PeoplesMovement. Today, over 3 million people across the country stood up to say HANDS OFF our democracy.
And history shows that when just 3.5% of the population engages in sustained, peaceful resistance—transformative change is inevitable.#50501movement #HandsOff #April5

50501: The People’s Movement (@50501movement.bsky.social) 2025-04-06T00:00:04.412Z

One of the most specific numbers reported so far comes from the social media accounts of 50501, one of the most prominent protest movements that have sprung up in the wake of Musk’s actions as the head of the Department of Government Efficiency (DOGE). The group posted late yesterday that “over 3 million people across the country stood up to say HANDS OFF our democracy.”

Read the whole story
· ·
alvinashcraft
5 hours ago
reply
Pennsylvania, USA
Share this story
Delete

CfP List Updated 2025-04-01

1 Share
LAST UPDATED: 2025-04-01

This is a list of CfPs (Calls for Papers/Presentations/Participation/etc.) that I know of, closing within the next two weeks.  It is updated approximately every week (usually on Tuesday afternoon), so nothing should fall through the cracks.  There are usually about ten to twenty, but highly variable.  It is an extract of a much larger list that I maintain on behalf of Toptal’s Speakers Network.  That one contains past CfPs, CfPs closing much farther in the future, and estimates when past ones should reopen.  (If you want access to that, use my referral link, click on the “Apply as a Freelancer” button, pass the screening, then apply to join the Speakers Network, which may require going through their Speakers Academy first.)

This list contains only the CfPs of conferences I am personally interested in, ones that other Speakers Network members inform me of, and a few others I happen to stumble across.  So, that’s mainly software development conferences, focused on Elixir (or Phoenix), Ruby (or Rails), Python, JavaScript, C, or sometimes closely related things (like the BEAM or C++), or not tightly focused on any particular tech stack (though it may lean heavily towards one or two), or occasionally testing (of the kind devs should do to their own code, not the kind a QA tester does).  It usually omits CfPs from conferences held in places I won’t go, lasting less than a full work-day, or about any other tech stack or topic, or tightly focused on various specific subtopics, or that doesn’t have a website of its own (at least about the series).

If you know of something missing, feel free to contact me.  Just please make sure that the CfP is indeed closing within the next two weeks from the latest update, else I might already have it in the big list, just not this extract.

You can always get the latest version of this list here.


There are no CfPs closing in the next two weeks.

Event Name Event
Website
Location CFP Close
Date
CFP Close
Estimated?
Event
Date
CFP
Link





Just kidding of course!  (Note the date.)  Here's the real list:

Event Name Event
Website
Location CFP Close
Date
CFP Close
Estimated?
Event
Date
CFP
Link
BaselOne link Basel, Switzerland 04-01 10-15 link
DevTalks BUCHAREST link Bucharest, Romania 04-04 06-04 link
Cloud Native Summit link Munich/München, Germany 04-06 07-21 link
HalfStack Newquay link Newquay, UK 04-06 06-27 link
Utah JS link Sandy, UT, USA 04-07 09-12 link
EuRuKo link Viana do Castelo, Portugal 04-10 09-18 link
Rails World link Amsterdam, Netherlands 04-10 09-04 link
Dev2Next link Denver, CO, USA 04-11 09-29 link
Copenhagen Developers Festival link Copenhagen, Denmark 04-13 09-10 link
KanDDDinsky link Berlin, Germany 04-13 10-22 link
DevFest.CZ link Prague, Czech Republic (Czechia) 04-14 10-24 link
Ship It Con link Dublin, Ireland 04-15 08-29 link
Targeting Quality link Cambridge, Ontario, Canada 04-15 09-23 link
Working Software link Reggio Emilia, Italy 04-15 06-27 link
Read the whole story
· ·
alvinashcraft
5 hours ago
reply
Pennsylvania, USA
Share this story
Delete

AI on Windows: Chat with Phi Silica

1 Share

In the past two posts we covered connecting to Phi Silica and then getting progress response to provide a more real time experience. The next step is to improve the layout of the application to display the prior message history. In this post we’ll cover updating the UI to include a list of prior messages. We’ll also cover extending the Phi Silica prompt to include the prior history, providing more context to the model.

We’ll start by amending the MainViewModel to include a collection of the prior messages. In addition, the prior messages are concatenated with the message entered by the user to build the prompt that’s sent to Phi Silica.

    public ObservableCollection<PhiMessage> Messages { get; } = new();

    [ObservableProperty]
    private string _response = string.Empty;

    [RelayCommand]
    public async Task SendMessage(string message)
    {
        Messages.Add(new PhiMessage("User",message));
#if WINDOWS

        if (!LanguageModel.IsAvailable())
        {
            var op = await LanguageModel.MakeAvailableAsync();
        }

        var prompt = string.Join(Environment.NewLine, (from m in Messages
                                                       select m.ToString()));


        using LanguageModel languageModel = await LanguageModel.CreateAsync();
        var progressTask = languageModel.GenerateResponseWithProgressAsync(prompt);
        progressTask.Progress +=
            (s, progress) => Dispatch(() => Response += progress);

        var result = await progressTask;
        Response = result.Response;
#else
        Response = "Design-time response....";
        await Task.Delay(1000);
        Response = "Design-time response....(updating)";
        await Task.Delay(1000);
        Response = "Final design-time response";
#endif
        Messages.Add(new PhiMessage("Assistant",Response));
        Response = string.Empty;
    }

    public class PhiMessage(string user, string message)
    {
        public string User { get; } = user;
        public string Message { get; } = message;

        public override string ToString()
            => $"{User}:\r\n{Message}";
    }

Here’s a quick video of how to update the UI using the Uno Platform Hot Design tool.

In summary we started with a basic Grid and added:

  • ListView – bound to the Messages property, to show the history of messages
  • TextBlock – bound to the Response property, to show the current progressive response
  • TextBox – the InputText textbox for user input
  • Button – the Send button bound to the SendMessageCommand, passing the InputText.Text in as a parameter

Here’s the app running:

And there you have it, we’ve stepped up our simple Phi Silica app to be a chat app capable of a multi-step interaction with Phi Silica.

The post AI on Windows: Chat with Phi Silica appeared first on Nick's .NET Travels.

Read the whole story
· · · ·
alvinashcraft
10 hours ago
reply
Pennsylvania, USA
Share this story
Delete

Become a better communicator: Specific frameworks to improve your clarity, influence, and impact | Wes Kao (coach, entrepreneur, advisor)

1 Share

Wes Kao is an entrepreneur, coach, and advisor. She co-founded the live learning platform Maven, backed by First Round and a16z. Before Maven, Wes co-created the altMBA with best-selling author Seth Godin. Today, Wes teaches a popular course on executive communication and influence. Through her course and one-on-one coaching, she’s helped thousands of operators, founders, and product leaders master the art of influence through clear, compelling communication. Known for her surgical writing style and no-BS frameworks, Wes returns to the pod to deliver a tactical master class on becoming a sharper, more persuasive communicator—at work, in meetings, and across your career.

What you’ll learn:

1. The #1 communication mistake leaders make—and Wes’s proven fix to instantly gain buy-in

2. Wes’s MOO (Most Obvious Objection) framework to consistently anticipate and overcome pushback in meetings

3. How to master concise communication—including Wes’s tactical approach for brevity without losing meaning

4. The art of executive presence: actionable strategies for conveying confidence and clarity, even under pressure

5. The “sales, then logistics” framework—and why your ideas keep getting ignored without it

6. The power of “signposting”—and why executives skim your docs without it

7. Exactly how to give feedback that works—Wes’s “strategy, not self-expression” principle to drive behavior change without friction

8. Practical ways to instantly improve your writing, emails, and Slack messages—simple techniques Wes teaches executives

9. Managing up like a pro: Wes’s clear, practical advice on earning trust, building credibility, and aligning with senior leaders

10. Career accelerators: specific habits and tactics from Wes for growing your influence, advancing your career, and standing out

11. Real-world communication examples—Wes breaks down real scenarios she’s solved, providing step-by-step solutions you can copy today

Brought to you by:

WorkOS—Modern identity platform for B2B SaaS, free up to 1 million MAUs

Vanta—Automate compliance. Simplify security

Coda—The all-in-one collaborative workspace

Where to find Wes Kao:

• LinkedIn: https://www.linkedin.com/in/weskao/

• Website: https://www.weskao.com/

• Maven course: https://maven.com/wes-kao/executive-communication-influence

Where to find Lenny:

• Newsletter: https://www.lennysnewsletter.com

• X: https://twitter.com/lennysan

• LinkedIn: https://www.linkedin.com/in/lennyrachitsky/

In this episode, we cover:

(00:00) Introduction to Wes Kao

(05:34) Working with Wes

(06:58) The importance of communication

(10:44) Sales before logistics

(18:20) Being concise

(24:31) Books to help you become a better writer

(27:30) Signposting and formatting

(32:05) How to develop and practice your communication skills

(40:41) Slack communication

(42:23) Confidence in communication

(50:17) The MOO framework

(54:00) Staying calm in high-stakes conversations

(57:36) Which tactic to start with

(58:53) Effective tactics for managing up

(01:04:53) Giving constructive feedback: strategy, not self-expression

(01:09:39) Delegating effectively while maintaining high standards

(01:16:36) The swipe file: collecting inspiration for better communication

(01:19:59) Leveraging AI for better communication

(01:22:01) Lightning round

Referenced:

• Persuasive communication and managing up | Wes Kao (Maven, Seth Godin, Section4): https://www.lennysnewsletter.com/p/persuasive-communication-wes-kao

• Making Meta | Andrew ‘Boz’ Bosworth (CTO): https://www.lennysnewsletter.com/p/making-meta-andrew-boz-bosworth-cto

• Communication is the job: https://boz.com/articles/communication-is-the-job

• Maven: https://maven.com/

• Sales, not logistics: https://newsletter.weskao.com/p/sales-not-logistics

• How to be more concise: https://newsletter.weskao.com/p/how-to-be-concise

• Signposting: How to reduce cognitive load for your reader: https://newsletter.weskao.com/p/sign-posting-how-to-reduce-cognitive

• Airbnb’s Vlad Loktev on embracing chaos, inquiry over advocacy, poking the bear, and “impact, impact, impact” (Partner at Index Ventures, Airbnb GM/VP Product): https://www.lennysnewsletter.com/p/impact-impact-impact-vlad-loktev

• Tone and words: Use accurate language: https://newsletter.weskao.com/p/tone-and-words-use-accurate-language

• Quote by Joan Didion: https://www.goodreads.com/quotes/264509-i-don-t-know-what-i-think-until-i-write-it

• Strategy, not self-expression: How to decide what to say when giving feedback: https://newsletter.weskao.com/p/strategy-not-self-expression

• Tobi Lütke’s leadership playbook: Playing infinite games, operating from first principles, and maximizing human potential (founder and CEO of Shopify): https://www.lennysnewsletter.com/p/tobi-lutkes-leadership-playbook

• The CEDAF framework: Delegating gets easier when you get better at explaining your ideas: https://newsletter.weskao.com/p/delegating-and-explaining

• Swipe file: https://en.wikipedia.org/wiki/Swipe_file

• Apple Notes: https://apps.apple.com/us/app/notes/id1110145109

• Claude: https://claude.ai/new

• ChatGPT: https://chatgpt.com/

• Arianna Huffington’s phone bed charging station (Oak): https://www.amazon.com/Arianna-Huffingtons-Phone-Charging-Station/dp/B079C5DBF4?th=1

• The Harlan Coben Collection on Netflix: https://www.netflix.com/browse/genre/81180221

• Oral-B Pro 1000 rechargeable electric toothbrush: https://www.amazon.com/dp/B003UKM9CO/

• The Best Electric Toothbrush: https://www.nytimes.com/wirecutter/reviews/best-electric-toothbrush/

Glengarry Glen Ross on Prime Video: https://www.amazon.com/Glengarry-Glen-Ross-James-Foley/dp/B002NN5F7A

• 1,000,000: https://www.lennysnewsletter.com/p/1000000

Recommended books:

On Writing Well: The Classic Guide to Writing Nonfiction: https://www.amazon.com/Writing-Well-Classic-Guide-Nonfiction/dp/0060891548/

Stein on Writing: A Master Editor of Some of the Most Successful Writers of Our Century Shares His Craft Techniques and Strategies: https://www.amazon.com/Stein-Writing-Successful-Techniques-Strategies/dp/0312254210/

On Writing: A Memoir of the Craft: https://www.amazon.com/Writing-Memoir-Craft-Stephen-King/dp/1982159375

Several Short Sentences About Writing: https://www.amazon.com/Several-Short-Sentences-About-Writing/dp/0307279413/

High Output Management: https://www.amazon.com/High-Output-Management-Andrew-Grove/dp/0679762884

Your Brain at Work: Strategies for Overcoming Distraction, Regaining Focus, and Working Smarter All Day Long: https://www.amazon.com/Your-Brain-Work-Revised-Updated/dp/0063003155/

Production and marketing by https://penname.co/. For inquiries about sponsoring the podcast, email podcast@lennyrachitsky.com.

Lenny may be an investor in the companies discussed.



Get full access to Lenny's Newsletter at www.lennysnewsletter.com/subscribe



Download audio: https://api.substack.com/feed/podcast/159875088/6dc950f012613eda9b3cc3102bc2a793.mp3
Read the whole story
· · · · · · · ·
alvinashcraft
10 hours ago
reply
Pennsylvania, USA
Share this story
Delete

#510 - 6th April 2025

1 Share

Two big conferences happened this week: FabCon in Las Vegas, and KubeCon + CloudNativeCon Europe 2025 in London, as you can imagine the content this week is heavily slanted towards the announcement from those events. Here are the highlights of the Fabric announcements (many more in the Analytics section:) Copilot and AI Capabilities are now accessible to all paid SKUs in Microsoft Fabric, and The next evolution of OneLake security Preview, and What's new with OneLake shortcuts, and Exciting New Features for Mirroring for Azure SQL in Fabric, and Mirroring in Fabric - What's new, and Microsoft Fabric RTI:Data Agent conversations on real-time telemetry.

My colleagues Barry Smart and & Ed Freeman from endjin were at FabCon and have posted some daily summaries of the event on LinkedIn. Barry's Pre-Con Day 1, Day 1, and Day 2. Ed's Day 1, and Day 2.

There are a large number of announcements from KubeCon (check out the Containers and Networking sections for more details), but the most noteworthy to me is that Azure Linux 3.0 now Generally Available with Azure Kubernetes Service v1.32. Other Cloud Native related highlights this week, include: Configure time-based scaling in Azure Container Apps, and AKS networking made easy: Your comprehensive guide, and Application Gateway for Containers: a not-so-gentle intro 4.

Other interesting articles this week, include: Azure Bicep optional module names explained, and Trusted Signing Public Preview Update, and finally: Hyperlight Wasm: Azure Goes the Final Wasi Mile

Read the whole story
alvinashcraft
10 hours ago
reply
Pennsylvania, USA
Share this story
Delete
Next Page of Stories
Loading...