首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏JusterZhu

    dotnetconf 2024 Agenda Day 2

    Learn how to run cloud-native serverless and container applications in Azure using Azure Kubernetes Service and Azure Container Apps. We help you choose the right service for your apps. We show you how Azure is the best platform for hosting cloud native and intelligent apps, and an app using Azure OpenAI Service and Azure Data. Learn all the new capabilities of our container platforms including how to deploy, test for scale, monitor, and much more.

    31500编辑于 2025-01-23
  • 来自专栏JusterZhu

    dotnetconf 2024 Agenda Day 1

    James Montemagno, Damian Edwards, Maddy Montaquila, Maria Naggaga, Steve Sanderson, Safia Abdalla, Daniel Roth, David Ortinau, Filisha Shah

    35300编辑于 2025-01-23
  • 来自专栏JusterZhu

    dotnet conf 2023 Agenda

    dotnet conf 2023 Agenda Welcome to .NET 8 2023-11-14 23:00 -- 00:00 Damian Edwards, Safia Abdalla, David 文件也分享下:https://raw.githubusercontent.com/WeihanLi/SamplesInPractice/master/BalabalaSample/dotnetconf2023-agenda.json 有需要的朋友可以直接用 阅读原文可以直接看 dotnetconf 官网的日程安排 References https://dotnetconf.com/agenda https://github.com DotnetConfAgendaCrawler.cs https://raw.githubusercontent.com/WeihanLi/SamplesInPractice/master/BalabalaSample/dotnetconf2023-agenda.json

    1K40编辑于 2023-11-07
  • 来自专栏JusterZhu

    dotnetconf 2024 Agenda Day 4

    In this session, we will cover the details of building intelligent communication applications using .NET. Attendees will explore how to leverage the latest features of Azure Communication Services and Azure Open AI to create robust and scalable communication apps on .NET. We will cover how to add messaging channels such as SMS, WhatsApp and audio video capabilities into your AI apps using the latest gpt models.

    61900编辑于 2025-01-23
  • 来自专栏JusterZhu

    dotnetconf 2024 Agenda Day 3

    Unlock the potential of GitHub Copilot by learning how to build an extension for yourself or your organization. Whether you're new to GitHub Copilot or an experienced developer looking to customize your coding assistant, this session is designed to guide you through the process of quickly creating an extension for yourself or your organization.

    46500编辑于 2025-01-23
  • 来自专栏EmacsTalk

    org-agenda 设置每月最后一天为 deadline

    在 org-agenda 中,支持设置重复的任务[3],示例如下: ** TODO Pay the rent DEADLINE: <2005-10-01 Sat +1m> 日期最后的 +1m

    86810编辑于 2022-07-26
  • 来自专栏丑胖侠

    《Drools7.0.0.Final规则引擎教程》第4章 4.2 agenda-group

    在没有调用fireAllRules方法之前,所有的规则及插入的Fact对象都存放在一个Agenda表的对象当中,这个Agenda表中每一个规则及与其匹配相关业务数据叫做Activation,在调用fireAllRules Agenda Group是用来在Agenda基础上对规则进行再次分组,可通过为规则添加agenda-group属性来实现。 agenda-group属性的值是一个字符串,通过这个字符串,可以将规则分为若干个Agenda Group。 引擎在调用设置了agenda-group属性的规则时需要显示的指定某个Agenda Group得到Focus(焦点),否则将不执行该Agenda Group当中的规则。 规则代码: package com.rules rule "test agenda-group" agenda-group "abc" when then

    93570发布于 2018-01-08
  • 来自专栏丑胖侠

    《Drools7.0.0.Final规则引擎教程》第4章 4.2 auto-focus

    auto-focus 在agenda-group章节,我们知道想要让AgendaGroup下的规则被执行,需要在代码中显式的设置group获得焦点。 而此属性可配合agenda-group使用,代替代码中的显式调用。默认值为false,即不会自动获取焦点。设置为true,则可自动获取焦点。 auto-focus使用示例代码 规则代码: package com.rules rule "test agenda-group" agenda-group "abc" auto-focus 被触发 这里,我们没有在代码中显式的让test agenda-group获取焦点,但规则同样被执行了,说明属性配置已生效。 test-agenda-group,此规则被执行。

    97790发布于 2018-01-08
  • 来自专栏React Native开发圈

    React Native日历日程组件

    使用 react-native-calendars主要包含三种子组件,分别是 Calendar(日历), CalendarList(日历列表), Agenda(日程),可以根据实际需要选择使用。 50} // Enable or disable scrolling of calendar list scrollEnabled={true} ...calendarParams /> Agenda 示例代码 <Agenda // the list of items that have to be displayed in agenda. day)=>{console.log('day pressed')}} // callback that gets called when day changes while scrolling agenda Default = false hideKnob={true} // By default, agenda dates are marked if they have at least one

    4.3K10发布于 2018-08-03
  • 来自专栏CSS森林

    打造个人的工作流

    更新于 2022-11-10 试了无数的笔记、日历、任务清单工具,始终没有一款是能够完全满足我的需求的,即: 尽可能覆盖整个工作过程 好看、好用 省钱 目前感觉比较顺手的一套组合就是Vision、Agenda 、Timeview,再加上系统日历为核心的组合,可以较完美的覆盖到整个工作过程,而且从颜值到价格都比较可人: 颜值:系统日历、Agenda、Timeview、Vision 体验:系统日历、Agenda、 Vision、Timeview(只有移动端) 价格:系统日历(免费)、Timeview(免费版够用,Pro ¥40.0)、Vision(当前永久解锁有40%优惠价¥88.0;¥12.0/月;¥43.0/年)、Agenda (只要保留日历事件的URL值,其他属性可以自动被同步到Vision中) 而 Agenda 可以让笔记跟日历事件进行绑定,这样就可以通过日历事件快速定位到对应的笔记。

    72320编辑于 2022-11-23
  • 来自专栏丑胖侠

    《Drools7.0.0.Final规则引擎教程》第4章 4.6 结果条件

    com.secbro.drools.model.Car; rule "conditional1:Give 10% discount to customers older than 60" agenda-group to customers older than 60"); end rule "conditional1:Give free parking to customers older than 60" agenda-group com.secbro.drools.model.Car; rule "conditional2:Give 10% discount to customers older than 60" agenda-group to customers older than 60" extends "conditional2:Give 10% discount to customers older than 60" agenda-group com.secbro.drools.model.Car; rule "conditional3:Give 10% discount to customers older than 60" agenda-group

    1.3K90发布于 2018-01-08
  • 来自专栏ASP.NET MVC5 后台权限管理系统

    FullCalendar 日历插件中文说明文档

    设置日历agenda视图下左侧的时间显示格式,默认显示如:5:30pm 'h(:mm)tt' slotMinutes 在agenda的视图中, 两个时间之间的间隔(分钟) 30 defaultEventMinutes ;date是点击的day的时间(如果在agenda view, 还包含时间),在月view下点击一天时,allDay是true,在agenda模式下,点击all-day的窄条时,allDay是true, 点击其他的agenda view下的day则为false,jsEvent就是一个普通的javascript事件,包含的是click事件的基础信息。 {agenda:.5 //对于agenda试图'':1.0 //其他视图} 见描述 eventDragStart,eventDragStop callback,日程事件被拖动之前和之后触发。 视图有效,移动的时间allDay 如果是月视图,或者是agenda视图的全天日程,此值为true,否则为false eventResizeStart, eventResizeStop callback,

    38.2K90发布于 2018-01-12
  • 来自专栏软件深度评测

    免费、好用、强大的轻量级笔记软件评测:Drafts、Apple 备忘录、Flomo、Keep、FlowUs、Agenda、SideNote、Workflowy

    免费、好用、强大的轻量级笔记软件评测:Drafts、Apple  备忘录、Flomo、Keep、FlowUs、Napkin、Agenda、SideNote、Notezilla、Workflowy免费、好用 具体而言,包括 Drafts、Apple 备忘录、Flomo、Google keep、Napkin、Agenda、SideNote、Notezilla、Workflowy、FlowUs.Drafts — 为笔记嵌入可视化模块 ——关于 NotionPet 的专文评测相关生产力工具测评和方法论介绍笔记软件的历史、选择策略以及深度评测生产力工具——笔记软件 FlowUs 深度评测FlowUs 息流 - 新一代生产力工具Agenda 图片特色定位独特:待办提醒、日历、笔记三合一;支持双向链接、标签管理、模版等功能;Agenda 官网SideNote 即用即走的轻量级笔记软件介绍一款悬浮在你屏幕边缘的轻量级笔记软件。

    4.3K20编辑于 2022-07-04
  • 来自专栏沁溪源

    【Drools二】打工人学习Drools基础语法

    规则属性 4.1 enabled属性 4.2 dialect属性 4.3 salience属性 4.4 no-loop属性 4.5 activation-group属性 4.6 agenda-group 4.6 agenda-group属性 agenda-group属性为议程分组,属于另一种可控的规则执行方式。 用户可以通过设置agenda-group来控制规则的执行,只有获取焦点的组中的规则才会被触发。 与activation-group不同的是,activation-group定义的分组中只能够有一个规则可以被触发,而agenda-group分组中的多个规则都可以被触发。 一般结合agenda-group属性使用,当一个议程分组未获取焦点时,可以设置auto-focus属性来控制。

    2.6K20发布于 2020-11-24
  • 来自专栏丑胖侠

    《Drools7.0.0.Final规则引擎教程》番外实例篇——FactHandler使用案例

    实例代码 规则文件内容: package com.rules import com.secbro.drools.model.Person rule "fact-handler-test" agenda-group 由于代码中使用的是agenda group,因此重新设置获取焦点。如果未使用此中形式则可不用写此行代码。其他相关FactHandler的使用方法可在此示例上进行扩展延伸。

    1.1K50发布于 2018-01-08
  • 如何开发人事及OA管理系统的会议管理板块?(附架构图+流程图+代码参考)

    KEY AUTO_INCREMENT, room_id INT, user_id INT, start_time DATETIME, end_time DATETIME, agenda 例如:java@GetMapping("/agenda")public ResponseEntity<String> getAgenda(@RequestParam String language) { String agenda = i18nService.getMessage("meeting.agenda", language); return ResponseEntity.ok(agenda

    47300编辑于 2025-08-14
  • 来自专栏JAVA后端开发

    flowable 实现投票功能

    newExecution.setCurrentFlowElement(targetFlowElement); FlowableEngineAgenda agenda = CommandContextUtil.getAgenda(); agenda.planContinueProcessInCompensation(newExecution)

    2.7K30发布于 2019-05-05
  • 来自专栏FreeBuf

    勒索软件新技术趋势:间歇性加密

    Agenda 勒索软件 Agenda 勒索软件在 2022 年 8 月首次被发现,主要针对非洲和亚洲的医疗保健和教育组织进行攻击。 Agenda 勒索软件支持多种加密模式(skip-step、percent和 fast),如下所示: 【帮助信息】 每种模式如下所示: 加密方式 描述 skip-step 每 Y MB 加密文件、跳过 【勒索软件勒索信息】 与 Agenda 和 BlackCat 相比,该勒索软件不可配置。

    1.2K10编辑于 2022-11-14
  • 来自专栏软件深度评测

    优秀笔记软件盘点(五)—那些强大的卡片笔记写作法软件

    卡片笔记笔记写作法·工具盘点卡片+任务管理:Agenda如果你喜欢卡片式设计,那么可以使用 Agenda 作为你的任务管理工具。介绍Agenda 是一款十分独特的应用:提醒事项、日历、笔记三合一。 Agenda 官网卡片+ 速记:Flomo如果你并不是重度笔记用户,而是想在碎片化时间记录一些碎碎念,那么选择轻量级的笔记应用 Flomo 就对了。介绍一款卡片式设计的轻量级速记工具。

    1.5K31编辑于 2022-07-02
  • 来自专栏丑胖侠

    《Drools7.0.0.Final规则引擎教程》番外实例篇——相同对象and List使用

    方式一 规则文件内容: package com.rules import com.secbro.drools.model.Customer; rule "two same objects" agenda-group import com.secbro.drools.model.Customer; import java.util.List; rule "two same objects in list" agenda-group

    1.3K90发布于 2017-12-29
领券