Take your Kotlin skills to the next level with our "Utilize Control Flow in Kotlin" module!
https://www.kodeco.com/android/paths/learn-kotlin-language/43870066-utilize-control-flow-in-kotlin
#Kodeco #Kotlin #LearnKotlin #AndroidDev #CodingJourney #ControlFlow #MobileDevelopment
https://www.kodeco.com/android/paths/learn-kotlin-language/43870066-utilize-control-flow-in-kotlin
#Kodeco #Kotlin #LearnKotlin #AndroidDev #CodingJourney #ControlFlow #MobileDevelopment
February 5, 2025 at 4:01 PM
Take your Kotlin skills to the next level with our "Utilize Control Flow in Kotlin" module!
https://www.kodeco.com/android/paths/learn-kotlin-language/43870066-utilize-control-flow-in-kotlin
#Kodeco #Kotlin #LearnKotlin #AndroidDev #CodingJourney #ControlFlow #MobileDevelopment
https://www.kodeco.com/android/paths/learn-kotlin-language/43870066-utilize-control-flow-in-kotlin
#Kodeco #Kotlin #LearnKotlin #AndroidDev #CodingJourney #ControlFlow #MobileDevelopment
In ControlFlow we experimented with making a Task the core interaction point. While for convenience you can run it to completion the goal is to let you step in and out of the while loop.
Still thinking about this.
Still thinking about this.
December 1, 2024 at 3:32 PM
In ControlFlow we experimented with making a Task the core interaction point. While for convenience you can run it to completion the goal is to let you step in and out of the while loop.
Still thinking about this.
Still thinking about this.
Rust analyzer’s extract into function command showed me the ControlFlow type. Neat stuff. Very big fan.
January 4, 2025 at 2:25 PM
Rust analyzer’s extract into function command showed me the ControlFlow type. Neat stuff. Very big fan.
What libraries have you tried out, out of curiosity? I’ve played with LangChain and ControlFlow. I suspect it is because the tech is so new.
March 22, 2025 at 10:53 PM
What libraries have you tried out, out of curiosity? I’ve played with LangChain and ControlFlow. I suspect it is because the tech is so new.
Break Statement in Python #Python #CodingTips #BreakStatement #LearnToCode #PythonShorts #ForLoop #WhileLoop #CodeSnippet #100DaysOfCode #TechShorts #CodeNewbie #DevLife #Programming #QuickCode #PythonForBeginners #ControlFlow
May 11, 2025 at 8:05 PM
tldr - plan is for Marvin 3 to merge both projects.
Today:
- Marvin has amazing DX but only OpenAI and only single-shot calls (no agentic behavior)
- ControlFlow (v1) is our opinionated approach to effective agent primitives
Today:
- Marvin has amazing DX but only OpenAI and only single-shot calls (no agentic behavior)
- ControlFlow (v1) is our opinionated approach to effective agent primitives
January 15, 2025 at 7:52 PM
tldr - plan is for Marvin 3 to merge both projects.
Today:
- Marvin has amazing DX but only OpenAI and only single-shot calls (no agentic behavior)
- ControlFlow (v1) is our opinionated approach to effective agent primitives
Today:
- Marvin has amazing DX but only OpenAI and only single-shot calls (no agentic behavior)
- ControlFlow (v1) is our opinionated approach to effective agent primitives
For people who really love early software, Marvin 3 is now on the main branch.
This will effectively be ControlFlow 2, replacing Marvin’s entire engine with CF’s agentic one (and Pydantic AI).
No Pypi releases yet.
This will effectively be ControlFlow 2, replacing Marvin’s entire engine with CF’s agentic one (and Pydantic AI).
No Pypi releases yet.
January 31, 2025 at 12:25 PM
For people who really love early software, Marvin 3 is now on the main branch.
This will effectively be ControlFlow 2, replacing Marvin’s entire engine with CF’s agentic one (and Pydantic AI).
No Pypi releases yet.
This will effectively be ControlFlow 2, replacing Marvin’s entire engine with CF’s agentic one (and Pydantic AI).
No Pypi releases yet.
Today, I wrote and article and recorded a video about
Control the execution order using the Output state in #MicrosoftFabric #DataFactory #DataPipeline
some basic principles for your everyday #ETL #ControlFlow setup
radacad.com/control-the-...
#DataAnalytics
Control the execution order using the Output state in #MicrosoftFabric #DataFactory #DataPipeline
some basic principles for your everyday #ETL #ControlFlow setup
radacad.com/control-the-...
#DataAnalytics
Control the Execution Order and Output State in Fabric Data Pipeline
Learn about the execution order of activities in Fabric Data Pipeline, the output state, the parallel or sequential execution plans.
radacad.com
February 5, 2025 at 3:48 AM
Today, I wrote and article and recorded a video about
Control the execution order using the Output state in #MicrosoftFabric #DataFactory #DataPipeline
some basic principles for your everyday #ETL #ControlFlow setup
radacad.com/control-the-...
#DataAnalytics
Control the execution order using the Output state in #MicrosoftFabric #DataFactory #DataPipeline
some basic principles for your everyday #ETL #ControlFlow setup
radacad.com/control-the-...
#DataAnalytics
Like this:
```
fn next(&mut self) -> Option<T> {
self
.try_fold((), |(), item| ControlFlow::Break(item))
.break_value()
}
```
```
fn next(&mut self) -> Option<T> {
self
.try_fold((), |(), item| ControlFlow::Break(item))
.break_value()
}
```
June 13, 2025 at 7:30 PM
Like this:
```
fn next(&mut self) -> Option<T> {
self
.try_fold((), |(), item| ControlFlow::Break(item))
.break_value()
}
```
```
fn next(&mut self) -> Option<T> {
self
.try_fold((), |(), item| ControlFlow::Break(item))
.break_value()
}
```
is the perf hit from serializing at branches in certain microcoded instructions really bad enough to warrant implementing them with the uops, instead of just having controlflow in the actual sequencer
January 27, 2025 at 4:47 PM
is the perf hit from serializing at branches in certain microcoded instructions really bad enough to warrant implementing them with the uops, instead of just having controlflow in the actual sequencer
Spotted these LLMs instructions in ControlFlow docs.
github.com/PrefectHQ/Co...
@jlowin.dev, @alternatebuild.dev, have you shared how are you using LLMs while working on ControlFlow?
Curious after reading the _Querying for More Information_ section where seems like the LLM can question itself.
github.com/PrefectHQ/Co...
@jlowin.dev, @alternatebuild.dev, have you shared how are you using LLMs while working on ControlFlow?
Curious after reading the _Querying for More Information_ section where seems like the LLM can question itself.
github.com
January 8, 2025 at 12:00 PM
Spotted these LLMs instructions in ControlFlow docs.
github.com/PrefectHQ/Co...
@jlowin.dev, @alternatebuild.dev, have you shared how are you using LLMs while working on ControlFlow?
Curious after reading the _Querying for More Information_ section where seems like the LLM can question itself.
github.com/PrefectHQ/Co...
@jlowin.dev, @alternatebuild.dev, have you shared how are you using LLMs while working on ControlFlow?
Curious after reading the _Querying for More Information_ section where seems like the LLM can question itself.
Project: microsoft/typescript
File: tests/cases/conformance/controlFlow/controlFlowIteration.ts:5
function ff()
SVG: dark, light
File: tests/cases/conformance/controlFlow/controlFlowIteration.ts:5
function ff()
SVG: dark, light
October 8, 2025 at 7:36 AM
Project: microsoft/typescript
File: tests/cases/conformance/controlFlow/controlFlowIteration.ts:5
function ff()
SVG: dark, light
File: tests/cases/conformance/controlFlow/controlFlowIteration.ts:5
function ff()
SVG: dark, light
ControlFlow, AI/LLM Workflow 구축을 위한 Python 프레임워크
(by 9bow님)
https://d.ptln.kr/4706
#llm-framework #llm-agent #agent-framework #llm-workflow #workflow #controlflow
(by 9bow님)
https://d.ptln.kr/4706
#llm-framework #llm-agent #agent-framework #llm-workflow #workflow #controlflow
ControlFlow, AI/LLM Workflow 구축을 위한 Python 프레임워크
ControlFlow 소개 🚨주의🚨: ControlFlow는 아직 공개 릴리즈 전으로, 활발히 개발 중인 상태입니다. 따라서 현재 코드는 향후 릴리즈 시 변경되거나 불안정할 수 있습니다. ControlFlow는 Python을 기반으로 한 프레임워크로, AI 워크플로우를 구축하는 데 초점을 맞추고 있습니다. 이 프레임워크는 작업 중심의 구조를 제공하여 개발자가 워크플로우를 정의하고 LLM(Large Language Model)에 작업을 위임할 수 있도록 도와줍니다. 이를 통해 AI의 자율성을 유지하면서도 세밀한 통제를 할 수 있습니다. ControlFlow는 명확한 목표와 제약을 정의하여 AI가 복잡한 워크플로우를 처리할 수 있도록 합니다. ControlFlow는 아래와 같이 3가지 형태로 나누어 워크플로우를 정의하고 구성합니다: 작업(Task): AI가 해결할 수 있는 개별적이고 관찰 가능한 작업을 생성합니다. 즉, ...
d.ptln.kr
June 27, 2024 at 3:56 AM
ControlFlow, AI/LLM Workflow 구축을 위한 Python 프레임워크
(by 9bow님)
https://d.ptln.kr/4706
#llm-framework #llm-agent #agent-framework #llm-workflow #workflow #controlflow
(by 9bow님)
https://d.ptln.kr/4706
#llm-framework #llm-agent #agent-framework #llm-workflow #workflow #controlflow
👋 @prefect.io and ControlFlow here!
a man wearing a hat and a tank top with the word hello below him
ALT: a man wearing a hat and a tank top with the word hello below him
media.tenor.com
November 14, 2024 at 11:59 AM
👋 @prefect.io and ControlFlow here!
If you're in DC and you're into data science, come hang at our new office and check out ControlFlow (link in 🧵)
www.meetup.com/data-science...
www.meetup.com/data-science...
Holiday Happy Hour and Agentic AI Workflows with ControlFlow, Wed, Dec 11, 2024, 5:00 PM | Meetup
Join the DC data community for food, drinks, socializing, and holiday cheer!
We’ll also see a demo of [ControlFlow](https://controlflow.ai), an open source Python framewor
www.meetup.com
December 2, 2024 at 6:13 PM
If you're in DC and you're into data science, come hang at our new office and check out ControlFlow (link in 🧵)
www.meetup.com/data-science...
www.meetup.com/data-science...
Check out my latest YT video -> Angular's new template syntax: control flow.
Why do we need a new template syntax? In this video, we examine the new @if and @for control flow blocks. Then answer the "why?" question.
#angular #controlflow @angular
youtu.be/j9VTGRGyE-o
Why do we need a new template syntax? In this video, we examine the new @if and @for control flow blocks. Then answer the "why?" question.
#angular #controlflow @angular
youtu.be/j9VTGRGyE-o
Angular's New Template Syntax: Control Flow
Starting in Angular version 17, we have the option of using new techniques for building our templates. This new block template syntax replaces the NgIf, NgFo...
youtu.be
April 2, 2024 at 3:27 PM
Check out my latest YT video -> Angular's new template syntax: control flow.
Why do we need a new template syntax? In this video, we examine the new @if and @for control flow blocks. Then answer the "why?" question.
#angular #controlflow @angular
youtu.be/j9VTGRGyE-o
Why do we need a new template syntax? In this video, we examine the new @if and @for control flow blocks. Then answer the "why?" question.
#angular #controlflow @angular
youtu.be/j9VTGRGyE-o
Project: microsoft/typescript
File: tests/cases/conformance/controlFlow/controlFlowOptionalChain.ts:188
function f11(o: Thing | null, value: number)
SVG: dark, light
File: tests/cases/conformance/controlFlow/controlFlowOptionalChain.ts:188
function f11(o: Thing | null, value: number)
SVG: dark, light
July 30, 2025 at 3:57 AM
Project: microsoft/typescript
File: tests/cases/conformance/controlFlow/controlFlowOptionalChain.ts:188
function f11(o: Thing | null, value: number)
SVG: dark, light
File: tests/cases/conformance/controlFlow/controlFlowOptionalChain.ts:188
function f11(o: Thing | null, value: number)
SVG: dark, light
ControlFlow is a Python framework for building and orchestrating AI-powered workflows by defining tasks, assigning AI agents, and managing workflow execution with integrated observability and error handling.
February 7, 2025 at 4:27 AM
ControlFlow is a Python framework for building and orchestrating AI-powered workflows by defining tasks, assigning AI agents, and managing workflow execution with integrated observability and error handling.
Yes, short circuiting, that’s the whole point. I certainly don’t want that behavior with the `ControlFlow::Break` variant, and it doesn’t even make sense with `Option` or (as I’ve proposed) `cmp::Ordering`. It’s just the trait that interacts with the `?`, same as any other operator overload.
August 10, 2025 at 3:34 PM
Yes, short circuiting, that’s the whole point. I certainly don’t want that behavior with the `ControlFlow::Break` variant, and it doesn’t even make sense with `Option` or (as I’ve proposed) `cmp::Ordering`. It’s just the trait that interacts with the `?`, same as any other operator overload.
Check out on #github:
#RxROS is new API for @rosorg based on the paradigm of #ReactiveProgramming, an alternative to #callback-based programming for implementing #concurrent message passing systems that emphasizes explicit #DataFlow over #ControlFlow.
https://t.co/uj3BLB8f7Z
#RxROS is new API for @rosorg based on the paradigm of #ReactiveProgramming, an alternative to #callback-based programming for implementing #concurrent message passing systems that emphasizes explicit #DataFlow over #ControlFlow.
https://t.co/uj3BLB8f7Z
January 17, 2025 at 1:22 PM
Check out on #github:
#RxROS is new API for @rosorg based on the paradigm of #ReactiveProgramming, an alternative to #callback-based programming for implementing #concurrent message passing systems that emphasizes explicit #DataFlow over #ControlFlow.
https://t.co/uj3BLB8f7Z
#RxROS is new API for @rosorg based on the paradigm of #ReactiveProgramming, an alternative to #callback-based programming for implementing #concurrent message passing systems that emphasizes explicit #DataFlow over #ControlFlow.
https://t.co/uj3BLB8f7Z
Then, unrelated to this, I was working on a separate crate that interfaced with winit, and I saw this (paraphrased) quote in the winit docs:
// ControlFlow::Poll continuously runs the event loop even if the OS hasn't dispatched events. Ideal for games
event_loop.set_control_flow(ControlFlow::Poll);
// ControlFlow::Poll continuously runs the event loop even if the OS hasn't dispatched events. Ideal for games
event_loop.set_control_flow(ControlFlow::Poll);
March 16, 2025 at 1:56 AM
Then, unrelated to this, I was working on a separate crate that interfaced with winit, and I saw this (paraphrased) quote in the winit docs:
// ControlFlow::Poll continuously runs the event loop even if the OS hasn't dispatched events. Ideal for games
event_loop.set_control_flow(ControlFlow::Poll);
// ControlFlow::Poll continuously runs the event loop even if the OS hasn't dispatched events. Ideal for games
event_loop.set_control_flow(ControlFlow::Poll);
Who has time to migrate their Angular templates to the new control flow syntax?
Luckily, there is a Angular CLI schematic that automatically migrates templates for us!
Check out the migration tool in my latest video: youtu.be/fkAFHMhjJsQ
#angular #controlflow
Luckily, there is a Angular CLI schematic that automatically migrates templates for us!
Check out the migration tool in my latest video: youtu.be/fkAFHMhjJsQ
#angular #controlflow
Automatically Migrate to Angular's New Control Flow Template Syntax
With Angular's new control flow syntax, we can simplify our templates, improve performance, and reduce bundle sizes. But do we really have time to manually c...
youtu.be
April 4, 2024 at 3:18 PM
Who has time to migrate their Angular templates to the new control flow syntax?
Luckily, there is a Angular CLI schematic that automatically migrates templates for us!
Check out the migration tool in my latest video: youtu.be/fkAFHMhjJsQ
#angular #controlflow
Luckily, there is a Angular CLI schematic that automatically migrates templates for us!
Check out the migration tool in my latest video: youtu.be/fkAFHMhjJsQ
#angular #controlflow
PowerShell Control Flow: A Practical Guide to Conditional Logic via PlanetPowerShell #PowerShell #ControlFlow #ConditionalLogic #ServerAdministration
PowerShell Control Flow: A Practical Guide to Conditional Logic
Learn how to use PowerShell control flow including if statements, switch statements and conditional logic with practical real-world examples for server administration.
dlvr.it
December 12, 2024 at 6:55 PM
PowerShell Control Flow: A Practical Guide to Conditional Logic via PlanetPowerShell #PowerShell #ControlFlow #ConditionalLogic #ServerAdministration