SOASTA Webinar: Process Compression For Mobile App Dev 120612SOASTA
The webinar discusses continuous integration and automation for mobile development and testing. It presents tools from Atlassian, Zephyr, and SOASTA that can help automate the mobile development and testing process. Continuous integration with Bamboo can help developers integrate code changes more frequently and fail builds faster to catch bugs earlier. Zephyr provides test management to centralize test assets and provide visibility. SOASTA offers tools for test automation, real user monitoring, and performance/load testing to help achieve test completion with quality. Together these tools can help speed up the mobile development process through continuous integration, test automation, and visibility into the testing process.
An overview of the reporting capabilities in Team Foundation Server 2012. Includes explanation of Data warehouse architecture, included reports (SSRS and Excel), and customization.
RTC & Work Item Customization OverviewBharat Malge
Rational Team Concert Introduction
- Rational Team Concert (RTC) is a Jazz-based product that allows teams to collaborate using integrated planning, work item management, source control, builds, dashboards and reports.
- It supports customization of processes and has Eclipse, Visual Studio and web-based interfaces.
- RTC addresses challenges of distributed teams through visibility into team members, artifacts, responsibilities and processes within a project.
Team Foundation Server (TFS) is a Microsoft product that provides version control, work tracking, reporting, and project management capabilities. It integrates these features into a single collaborative platform that can be accessed through Visual Studio and a web interface. Key capabilities of TFS include version control, branching and merging, work items, builds, and extensible customization options. TFS aims to provide an integrated experience for development teams to collaborate on software projects.
This document provides an overview of Team Foundation Server (TFS) by Phase 2 International, including:
1. TFS is an advanced source control and software development lifecycle (SDLC) management tool that includes work item tracking, project management, document management, and reporting capabilities.
2. TFS requires Windows Server 2003 or 2008 and SQL Server 2005 or 2008 to be installed on a dedicated server.
3. TFS includes features like version control, build automation, a project portal, and add-ons like Team Explorer and integration with Visual Studio and Microsoft Project.
This document discusses tools for migrating content from Drupal 7 to Drupal 8, including the standard one-click upgrade interface, the Migrate module, and the Feeds module. The standard upgrade interface provides an automated way to migrate configuration and content with some limitations around fields and file formats. The Migrate module allows for more customized migrations by defining migration paths in YAML files. The Feeds module provides an interface for importing content via CSV or other formats.
Creating Repository & Project area and exploring the project area in Rational...Bharat Malge
We have created the repository workspace and also created the sample project with the screenshot which can help to make understand the beginner in the Rational Team Concert.
Collaborative project communication for construction companyAnatoliZ
The document is a project progress report submitted by Anatoli Zhyzhneuski to their lecturer Dr. Matevz Dolenc. It discusses MB&C Engineering Ltd's need for an improved collaborative project management solution. Various web-based project management tools were researched, including WhoDoes, TeamLab, PivotalTracker, MavenLink, and Zoho Projects. Each tool was evaluated based on features and limitations. Zoho Projects was selected as the primary choice for MB&C Engineering Ltd's new hotel construction project due to its feature set and cost. Eight members of the project team will be assigned as users in Zoho Projects to facilitate collaboration.
O365Engage17 - Developing with groups teams and plannerNCCOMMS
This document contains slides from a presentation on developing with Groups, Teams, and Planner. It discusses the building blocks and architecture of Groups and Teams. It then covers using PowerShell for administrative tasks like creating, modifying, and deleting groups. It also discusses using connectors, bots, and tabs within Teams. Finally, it demonstrates working with the Microsoft Graph API for groups.
O365Engage17 - Building portals with microsoft graph apiNCCOMMS
This document contains slides for a presentation on building portals with the Microsoft Graph API. The presentation covers an introduction to Microsoft Graph, authentication, the Microsoft Graph SDK, extensions, and webhooks. It includes demos of exploring the Graph API explorer, authentication, the Graph SDK for ASP.NET, extensions, and webhooks. The presentation is delivered by Donald Hessing and Carl in 't Veld from Capgemini.
Manish delivered a session on "Shift Left - Performance Testing" at ATAGTR2020
ATAGTR2020 was the 5th Edition of Global Testing Retreat.
Manish is Director of Business and Technology Consulting at Micro Focus, responsible for Enterprise Devops.
He brings rich international experience spanning two decades in the IT industry, with major focus on application delivery, automation, DevSecOps and performance engineering
The video recording of the session is now available on the following link: https://youtu.be/PAHR3X1TGdc
To know more about #ATAGTR2020, please visit: https://gtr.agiletestingalliance.org/
This document provides an overview of IBM Rational Team Concert's Windows Shell Integration. It discusses the goals of the integration, which is to provide version control of source artifacts and developer workflows while using RTC's browser clients for tracking, planning and administration. It outlines the basic and advanced modes of operation, and how to set up a workspace to contribute to an existing feature or work on a new feature directly from the shell. It describes working with files and the pending changes view in the local sandbox, and covers code review and conflict handling workflows.
The presentation discussed managing experiments and feature flags across Optimizely and a software application. It began with an experimentation maturity curve showing increasing levels of experimentation from executional to a culture of experimentation. Examples were given of how Optimizely was used at different levels from managing datafiles to consolidating projects and increasing automated testing. Takeaways included passing datafiles between front-end and back-end for performance, caching datafiles in memcache, and improving quality through easy user testing and automated tests.
QuickTest 11.00 offers several new features including managing test data through Quality Center test configurations, testing both the GUI and non-GUI layers of an application in a single test, and a new Run Results Viewer. It also provides improved support for identifying objects visually and collaborating with developers via log tracking.
QuickTest 11.00 offers new features such as managing test data through Quality Center test configurations, testing GUI and non-GUI application layers in a single test, and a new Run Results Viewer. It also provides improved support for technologies like Web 2.0, Silverlight, and WPF applications as well as enhanced documentation.
This document provides an introduction and overview of agile project management methodologies like Scrum and how they can be used with Visual Studio Online 2013. It discusses the principles of agile, describes Scrum roles and processes, and explains how Visual Studio Online supports agile development with tools for planning, tracking work items, version control, continuous integration and more. The document aims to help Egyptian automation testers work agilely using Scrum and the cloud-based tools in Visual Studio Online.
If you're thinking about migrating from TFS on-premises to VSTS, it's not necessarily a simple decision as to how to get there. During this briefing we discussed some of the considerations that lead you to the right migration path, gotchas that we have encountered, and how we can help you get to VSTS quickly and effectively.
Upgrade to SharePoint 2010, Shai Petel SharePoint Conference Las Vegas Sep 2009KWizCom Team
KWizCom's Shai Petel discusses upgrading to SharePoint 2010, using his experience of upgrading KWizCom's SharePoint List Forms Extension Feature to SharePoint 2010 as an example
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
Here are the steps to create a React web part:
1. Scaffold a new React web part project:
```
yo @microsoft/sharepoint
```
2. When prompted, select the following:
- Use the current folder for where to place the files
- WebPart as the client-side component type
- Select React as the JavaScript framework
3. This will scaffold all the necessary files and setup React in your project.
4. Import React and ReactDOM in your web part file:
```js
import * as React from 'react';
import * as ReactDom from 'react-dom';
```
5. Create a simple React component:
Here are the steps to add PnP-JS to the React web part project:
1. Stop any running gulp serve process if it's running
2. Install PnP-JS packages:
```
npm install @pnp/common @pnp/logging @pnp/odata @pnp/sp @pnp/graph --save
```
3. Import PnP-JS packages at the top of HelloWorldWebPart.ts:
```
import { sp } from '@pnp/sp';
```
4. Establish the PnP context:
```
sp.setup({
spfxContext: this.context
});
```
5
This document outlines a 4 session bootcamp for learning SharePoint Framework (SPFx) development. Session 1 covers setting up a development environment including an Office 365 tenant and app catalog. Session 2 focuses on building a first web part, including scaffolding, building functionality, and deploying to SharePoint. Session 3 introduces React and rebuilding the web part using React components. Session 4 covers using SPFx within Microsoft Teams. The organizers and contact information for technical assistance are also provided.
This document provides an overview of Azure DevOps and how it can benefit developers. It discusses key features such as source control, work item tracking, continuous integration and delivery pipelines, and how SQL Server Data Tools can be used. The presenter has over 20 years of experience in technology and is a Microsoft MVP. They provide a demonstration of using Azure DevOps and SSDT for a database project. Resources for learning more are also included.
The document provides an overview of creating custom extensions for Azure DevOps. It discusses how extensions can be used to customize the Azure DevOps experience by adding new tasks, widgets, work item forms, and more. It then covers how to create a custom build task by setting up the file structure and dependencies. Finally, it discusses publishing extensions to the Azure Marketplace and installing them for use in Azure DevOps organizations.
This document provides an overview of SharePoint 2007 for beginners. It discusses SharePoint features, the CMS/SPS/WSS roadmaps, how to set up a SharePoint team site and publishing portal. It also covers installation steps, development tools like SharePoint Designer and Visual Studio, and how to develop web parts, workflows, and list definitions. Finally, it discusses Microsoft's MSDN Virtual Lab for hands-on learning and provides additional resources.
The document provides an overview of key concepts and features in Rational Application Developer (RAD) including workspaces, perspectives, views, editors, projects, importing/exporting, preferences, and help resources. It describes how to create and manage workspaces and projects, customize perspectives, display different views, compare and replace files, and get assistance through the help menu.
Session 3 - Developer Tools-Sharepoint firestarter-paul yuknewiczMithun T. Dhar
Visual Studio 2010 includes developer tools for building, debugging, and deploying SharePoint projects. It provides visual designers for web parts, workflows, and business connectivity models. The tools integrate with Team Foundation Server and support application lifecycles. Visual Studio allows developing sandboxed and farm solutions for SharePoint Foundation and Server. It provides a continuum for different types of developers from business analysts to coders.
Collaborative project communication for construction companyAnatoliZ
The document is a project progress report submitted by Anatoli Zhyzhneuski to their lecturer Dr. Matevz Dolenc. It discusses MB&C Engineering Ltd's need for an improved collaborative project management solution. Various web-based project management tools were researched, including WhoDoes, TeamLab, PivotalTracker, MavenLink, and Zoho Projects. Each tool was evaluated based on features and limitations. Zoho Projects was selected as the primary choice for MB&C Engineering Ltd's new hotel construction project due to its feature set and cost. Eight members of the project team will be assigned as users in Zoho Projects to facilitate collaboration.
O365Engage17 - Developing with groups teams and plannerNCCOMMS
This document contains slides from a presentation on developing with Groups, Teams, and Planner. It discusses the building blocks and architecture of Groups and Teams. It then covers using PowerShell for administrative tasks like creating, modifying, and deleting groups. It also discusses using connectors, bots, and tabs within Teams. Finally, it demonstrates working with the Microsoft Graph API for groups.
O365Engage17 - Building portals with microsoft graph apiNCCOMMS
This document contains slides for a presentation on building portals with the Microsoft Graph API. The presentation covers an introduction to Microsoft Graph, authentication, the Microsoft Graph SDK, extensions, and webhooks. It includes demos of exploring the Graph API explorer, authentication, the Graph SDK for ASP.NET, extensions, and webhooks. The presentation is delivered by Donald Hessing and Carl in 't Veld from Capgemini.
Manish delivered a session on "Shift Left - Performance Testing" at ATAGTR2020
ATAGTR2020 was the 5th Edition of Global Testing Retreat.
Manish is Director of Business and Technology Consulting at Micro Focus, responsible for Enterprise Devops.
He brings rich international experience spanning two decades in the IT industry, with major focus on application delivery, automation, DevSecOps and performance engineering
The video recording of the session is now available on the following link: https://youtu.be/PAHR3X1TGdc
To know more about #ATAGTR2020, please visit: https://gtr.agiletestingalliance.org/
This document provides an overview of IBM Rational Team Concert's Windows Shell Integration. It discusses the goals of the integration, which is to provide version control of source artifacts and developer workflows while using RTC's browser clients for tracking, planning and administration. It outlines the basic and advanced modes of operation, and how to set up a workspace to contribute to an existing feature or work on a new feature directly from the shell. It describes working with files and the pending changes view in the local sandbox, and covers code review and conflict handling workflows.
The presentation discussed managing experiments and feature flags across Optimizely and a software application. It began with an experimentation maturity curve showing increasing levels of experimentation from executional to a culture of experimentation. Examples were given of how Optimizely was used at different levels from managing datafiles to consolidating projects and increasing automated testing. Takeaways included passing datafiles between front-end and back-end for performance, caching datafiles in memcache, and improving quality through easy user testing and automated tests.
QuickTest 11.00 offers several new features including managing test data through Quality Center test configurations, testing both the GUI and non-GUI layers of an application in a single test, and a new Run Results Viewer. It also provides improved support for identifying objects visually and collaborating with developers via log tracking.
QuickTest 11.00 offers new features such as managing test data through Quality Center test configurations, testing GUI and non-GUI application layers in a single test, and a new Run Results Viewer. It also provides improved support for technologies like Web 2.0, Silverlight, and WPF applications as well as enhanced documentation.
This document provides an introduction and overview of agile project management methodologies like Scrum and how they can be used with Visual Studio Online 2013. It discusses the principles of agile, describes Scrum roles and processes, and explains how Visual Studio Online supports agile development with tools for planning, tracking work items, version control, continuous integration and more. The document aims to help Egyptian automation testers work agilely using Scrum and the cloud-based tools in Visual Studio Online.
If you're thinking about migrating from TFS on-premises to VSTS, it's not necessarily a simple decision as to how to get there. During this briefing we discussed some of the considerations that lead you to the right migration path, gotchas that we have encountered, and how we can help you get to VSTS quickly and effectively.
Upgrade to SharePoint 2010, Shai Petel SharePoint Conference Las Vegas Sep 2009KWizCom Team
KWizCom's Shai Petel discusses upgrading to SharePoint 2010, using his experience of upgrading KWizCom's SharePoint List Forms Extension Feature to SharePoint 2010 as an example
M365 global developer bootcamp 2019 Intro to SPFx VersionThomas Daly
Here are the steps to create a React web part:
1. Scaffold a new React web part project:
```
yo @microsoft/sharepoint
```
2. When prompted, select the following:
- Use the current folder for where to place the files
- WebPart as the client-side component type
- Select React as the JavaScript framework
3. This will scaffold all the necessary files and setup React in your project.
4. Import React and ReactDOM in your web part file:
```js
import * as React from 'react';
import * as ReactDom from 'react-dom';
```
5. Create a simple React component:
Here are the steps to add PnP-JS to the React web part project:
1. Stop any running gulp serve process if it's running
2. Install PnP-JS packages:
```
npm install @pnp/common @pnp/logging @pnp/odata @pnp/sp @pnp/graph --save
```
3. Import PnP-JS packages at the top of HelloWorldWebPart.ts:
```
import { sp } from '@pnp/sp';
```
4. Establish the PnP context:
```
sp.setup({
spfxContext: this.context
});
```
5
This document outlines a 4 session bootcamp for learning SharePoint Framework (SPFx) development. Session 1 covers setting up a development environment including an Office 365 tenant and app catalog. Session 2 focuses on building a first web part, including scaffolding, building functionality, and deploying to SharePoint. Session 3 introduces React and rebuilding the web part using React components. Session 4 covers using SPFx within Microsoft Teams. The organizers and contact information for technical assistance are also provided.
This document provides an overview of Azure DevOps and how it can benefit developers. It discusses key features such as source control, work item tracking, continuous integration and delivery pipelines, and how SQL Server Data Tools can be used. The presenter has over 20 years of experience in technology and is a Microsoft MVP. They provide a demonstration of using Azure DevOps and SSDT for a database project. Resources for learning more are also included.
The document provides an overview of creating custom extensions for Azure DevOps. It discusses how extensions can be used to customize the Azure DevOps experience by adding new tasks, widgets, work item forms, and more. It then covers how to create a custom build task by setting up the file structure and dependencies. Finally, it discusses publishing extensions to the Azure Marketplace and installing them for use in Azure DevOps organizations.
This document provides an overview of SharePoint 2007 for beginners. It discusses SharePoint features, the CMS/SPS/WSS roadmaps, how to set up a SharePoint team site and publishing portal. It also covers installation steps, development tools like SharePoint Designer and Visual Studio, and how to develop web parts, workflows, and list definitions. Finally, it discusses Microsoft's MSDN Virtual Lab for hands-on learning and provides additional resources.
The document provides an overview of key concepts and features in Rational Application Developer (RAD) including workspaces, perspectives, views, editors, projects, importing/exporting, preferences, and help resources. It describes how to create and manage workspaces and projects, customize perspectives, display different views, compare and replace files, and get assistance through the help menu.
Session 3 - Developer Tools-Sharepoint firestarter-paul yuknewiczMithun T. Dhar
Visual Studio 2010 includes developer tools for building, debugging, and deploying SharePoint projects. It provides visual designers for web parts, workflows, and business connectivity models. The tools integrate with Team Foundation Server and support application lifecycles. Visual Studio allows developing sandboxed and farm solutions for SharePoint Foundation and Server. It provides a continuum for different types of developers from business analysts to coders.
Non-Developer Options in SharePoint 2013 - Fest Chicago 2014Asif Rehmani
This document discusses no-code development options in SharePoint 2013. It describes tools like SharePoint Designer, Access web apps, and search web parts that allow creating solutions without coding. Various examples of typical no-code solutions are provided, such as expense reporting and document approval workflows. The presentation encourages power users to first explore no-code customization options before pursuing code-based solutions.
We all build different project sites during the years, and also used the content by query web part to lift up the different projects we was part of, but how can we achieve the same in Modern SharePoint.
In this session we will:
Use Hub sites as the home of our Projects,
Create a Project template with Site Design and Site Scripts,
Enable a flow to add some more magic.
Look at different web parts both from Microsoft and from the community to help us lift up our Project Sites.
Ensure it is is all security trimmed so that we don’t see more then we have access to see.
Really Cool!
And we will also make sure that our Projects are teamified so that we also can access them from Microsoft Teams, and with prepopulated content, so our Project Managers can start to work immediately So lets build the new Project Hub together.
Slide deck presented at SharePoint Saturday Chicago Suburbs.
There is a great developer story with the introduction of Apps now in SharePoint 2013. However, what if you are not a code developer? What options do you have to 'develop solutions' in SharePoint 2013? This session will explore the different no-code development opportunities in SharePoint 2013.
SharePoint 2013 Sandbox Solutions for On Premise or Office 365Ed Musters
SharePoint 2013 Declarative (no code) Sandbox Solutions presentation delivered Nov 5 at the Houston SharePoint TechFest. Were Sandbox solutions not “deprecated”? In this session you will learn that for the developer, Declarative (No Code) Sandbox solutions are still an extremely valid and completely supported way for you to create solutions that are either targeted for On Premise or Office 365. We will look at the types of features and solutions you can create with Visual Studio 2013 and the practical scenarios they enable. Examples include deployment of site columns, content types, list definitions, ribbon buttons, design assets, site pages with JavaScript, web templates, and more!
Farm solutions and sandboxed solutions differ in how they are hosted, deployed, and their level of access. Farm solutions are hosted in the IIS worker process and have full trust access, while sandboxed solutions are hosted separately and have restricted access. Deploying farm solutions recycles application pools, while sandboxed solutions do not. Sandboxed solutions are limited in what code they can run for security reasons.
Developer application lifecycle process and tools - v.5Ivan Sanders
Application life cycle process with SharePoint 2010
Tools and processes to manage life cycle of portals
the development tean
Update management
Solution versioning
Feature versioning
Quick Wins to Jump Start Your SharePoint Implementation - SPEngage Raleigh 2016Jim Adcock
This document provides quick wins for jump starting a SharePoint implementation, including creating new sites using site templates for consistency, using promoted links to improve navigation, leveraging document sets to organize content, incorporating search web parts beyond just finding documents, utilizing dashboards to visualize data, implementing global navigation through managed metadata, and customizing the out-of-the-box corporate directory. The quick wins can be implemented with minimal customization and development to immediately provide value and encourage user adoption of the new SharePoint environment.
If you are interested in WordPress or developing Theme for your client, you may don't know how a professional WordPress developer work process. So if you want to develop Wordpress theme like a Pro or want to sale your theme, this guide will help you.
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025BookNet Canada
Book industry standards are evolving rapidly. In the first part of this session, we’ll share an overview of key developments from 2024 and the early months of 2025. Then, BookNet’s resident standards expert, Tom Richardson, and CEO, Lauren Stewart, have a forward-looking conversation about what’s next.
Link to recording, transcript, and accompanying resource: https://bnctechforum.ca/sessions/standardsgoals-for-2025-standards-certification-roundup/
Presented by BookNet Canada on May 6, 2025 with support from the Department of Canadian Heritage.
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfAbi john
Analyze the growth of meme coins from mere online jokes to potential assets in the digital economy. Explore the community, culture, and utility as they elevate themselves to a new era in cryptocurrency.
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...Alan Dix
Talk at the final event of Data Fusion Dynamics: A Collaborative UK-Saudi Initiative in Cybersecurity and Artificial Intelligence funded by the British Council UK-Saudi Challenge Fund 2024, Cardiff Metropolitan University, 29th April 2025
https://alandix.com/academic/talks/CMet2025-AI-Changes-Everything/
Is AI just another technology, or does it fundamentally change the way we live and think?
Every technology has a direct impact with micro-ethical consequences, some good, some bad. However more profound are the ways in which some technologies reshape the very fabric of society with macro-ethical impacts. The invention of the stirrup revolutionised mounted combat, but as a side effect gave rise to the feudal system, which still shapes politics today. The internal combustion engine offers personal freedom and creates pollution, but has also transformed the nature of urban planning and international trade. When we look at AI the micro-ethical issues, such as bias, are most obvious, but the macro-ethical challenges may be greater.
At a micro-ethical level AI has the potential to deepen social, ethnic and gender bias, issues I have warned about since the early 1990s! It is also being used increasingly on the battlefield. However, it also offers amazing opportunities in health and educations, as the recent Nobel prizes for the developers of AlphaFold illustrate. More radically, the need to encode ethics acts as a mirror to surface essential ethical problems and conflicts.
At the macro-ethical level, by the early 2000s digital technology had already begun to undermine sovereignty (e.g. gambling), market economics (through network effects and emergent monopolies), and the very meaning of money. Modern AI is the child of big data, big computation and ultimately big business, intensifying the inherent tendency of digital technology to concentrate power. AI is already unravelling the fundamentals of the social, political and economic world around us, but this is a world that needs radical reimagining to overcome the global environmental and human challenges that confront us. Our challenge is whether to let the threads fall as they may, or to use them to weave a better future.
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Aqusag Technologies
In late April 2025, a significant portion of Europe, particularly Spain, Portugal, and parts of southern France, experienced widespread, rolling power outages that continue to affect millions of residents, businesses, and infrastructure systems.
Book industry standards are evolving rapidly. In the first part of this session, we’ll share an overview of key developments from 2024 and the early months of 2025. Then, BookNet’s resident standards expert, Tom Richardson, and CEO, Lauren Stewart, have a forward-looking conversation about what’s next.
Link to recording, presentation slides, and accompanying resource: https://bnctechforum.ca/sessions/standardsgoals-for-2025-standards-certification-roundup/
Presented by BookNet Canada on May 6, 2025 with support from the Department of Canadian Heritage.
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...SOFTTECHHUB
I started my online journey with several hosting services before stumbling upon Ai EngineHost. At first, the idea of paying one fee and getting lifetime access seemed too good to pass up. The platform is built on reliable US-based servers, ensuring your projects run at high speeds and remain safe. Let me take you step by step through its benefits and features as I explain why this hosting solution is a perfect fit for digital entrepreneurs.
What is Model Context Protocol(MCP) - The new technology for communication bw...Vishnu Singh Chundawat
The MCP (Model Context Protocol) is a framework designed to manage context and interaction within complex systems. This SlideShare presentation will provide a detailed overview of the MCP Model, its applications, and how it plays a crucial role in improving communication and decision-making in distributed systems. We will explore the key concepts behind the protocol, including the importance of context, data management, and how this model enhances system adaptability and responsiveness. Ideal for software developers, system architects, and IT professionals, this presentation will offer valuable insights into how the MCP Model can streamline workflows, improve efficiency, and create more intuitive systems for a wide range of use cases.
Role of Data Annotation Services in AI-Powered ManufacturingAndrew Leo
From predictive maintenance to robotic automation, AI is driving the future of manufacturing. But without high-quality annotated data, even the smartest models fall short.
Discover how data annotation services are powering accuracy, safety, and efficiency in AI-driven manufacturing systems.
Precision in data labeling = Precision on the production floor.
How Can I use the AI Hype in my Business Context?Daniel Lehner
𝙄𝙨 𝘼𝙄 𝙟𝙪𝙨𝙩 𝙝𝙮𝙥𝙚? 𝙊𝙧 𝙞𝙨 𝙞𝙩 𝙩𝙝𝙚 𝙜𝙖𝙢𝙚 𝙘𝙝𝙖𝙣𝙜𝙚𝙧 𝙮𝙤𝙪𝙧 𝙗𝙪𝙨𝙞𝙣𝙚𝙨𝙨 𝙣𝙚𝙚𝙙𝙨?
Everyone’s talking about AI but is anyone really using it to create real value?
Most companies want to leverage AI. Few know 𝗵𝗼𝘄.
✅ What exactly should you ask to find real AI opportunities?
✅ Which AI techniques actually fit your business?
✅ Is your data even ready for AI?
If you’re not sure, you’re not alone. This is a condensed version of the slides I presented at a Linkedin webinar for Tecnovy on 28.04.2025.
Generative Artificial Intelligence (GenAI) in BusinessDr. Tathagat Varma
My talk for the Indian School of Business (ISB) Emerging Leaders Program Cohort 9. In this talk, I discussed key issues around adoption of GenAI in business - benefits, opportunities and limitations. I also discussed how my research on Theory of Cognitive Chasms helps address some of these issues
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungenpanagenda
Webinar Recording: https://www.panagenda.com/webinars/hcl-nomad-web-best-practices-und-verwaltung-von-multiuser-umgebungen/
HCL Nomad Web wird als die nächste Generation des HCL Notes-Clients gefeiert und bietet zahlreiche Vorteile, wie die Beseitigung des Bedarfs an Paketierung, Verteilung und Installation. Nomad Web-Client-Updates werden “automatisch” im Hintergrund installiert, was den administrativen Aufwand im Vergleich zu traditionellen HCL Notes-Clients erheblich reduziert. Allerdings stellt die Fehlerbehebung in Nomad Web im Vergleich zum Notes-Client einzigartige Herausforderungen dar.
Begleiten Sie Christoph und Marc, während sie demonstrieren, wie der Fehlerbehebungsprozess in HCL Nomad Web vereinfacht werden kann, um eine reibungslose und effiziente Benutzererfahrung zu gewährleisten.
In diesem Webinar werden wir effektive Strategien zur Diagnose und Lösung häufiger Probleme in HCL Nomad Web untersuchen, einschließlich
- Zugriff auf die Konsole
- Auffinden und Interpretieren von Protokolldateien
- Zugriff auf den Datenordner im Cache des Browsers (unter Verwendung von OPFS)
- Verständnis der Unterschiede zwischen Einzel- und Mehrbenutzerszenarien
- Nutzung der Client Clocking-Funktion
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPathCommunity
Join this UiPath Community Berlin meetup to explore the Orchestrator API, Swagger interface, and the Test Manager API. Learn how to leverage these tools to streamline automation, enhance testing, and integrate more efficiently with UiPath. Perfect for developers, testers, and automation enthusiasts!
📕 Agenda
Welcome & Introductions
Orchestrator API Overview
Exploring the Swagger Interface
Test Manager API Highlights
Streamlining Automation & Testing with APIs (Demo)
Q&A and Open Discussion
Perfect for developers, testers, and automation enthusiasts!
👉 Join our UiPath Community Berlin chapter: https://community.uipath.com/berlin/
This session streamed live on April 29, 2025, 18:00 CET.
Check out all our upcoming UiPath Community sessions at https://community.uipath.com/events/.
Spark is a powerhouse for large datasets, but when it comes to smaller data workloads, its overhead can sometimes slow things down. What if you could achieve high performance and efficiency without the need for Spark?
At S&P Global Commodity Insights, having a complete view of global energy and commodities markets enables customers to make data-driven decisions with confidence and create long-term, sustainable value. 🌍
Explore delta-rs + CDC and how these open-source innovations power lightweight, high-performance data applications beyond Spark! 🚀
TrsLabs - Fintech Product & Business ConsultingTrs Labs
Hybrid Growth Mandate Model with TrsLabs
Strategic Investments, Inorganic Growth, Business Model Pivoting are critical activities that business don't do/change everyday. In cases like this, it may benefit your business to choose a temporary external consultant.
An unbiased plan driven by clearcut deliverables, market dynamics and without the influence of your internal office equations empower business leaders to make right choices.
Getting things done within a budget within a timeframe is key to Growing Business - No matter whether you are a start-up or a big company
Talk to us & Unlock the competitive advantage
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc
Most consumers believe they’re making informed decisions about their personal data—adjusting privacy settings, blocking trackers, and opting out where they can. However, our new research reveals that while awareness is high, taking meaningful action is still lacking. On the corporate side, many organizations report strong policies for managing third-party data and consumer consent yet fall short when it comes to consistency, accountability and transparency.
This session will explore the research findings from TrustArc’s Privacy Pulse Survey, examining consumer attitudes toward personal data collection and practical suggestions for corporate practices around purchasing third-party data.
Attendees will learn:
- Consumer awareness around data brokers and what consumers are doing to limit data collection
- How businesses assess third-party vendors and their consent management operations
- Where business preparedness needs improvement
- What these trends mean for the future of privacy governance and public trust
This discussion is essential for privacy, risk, and compliance professionals who want to ground their strategies in current data and prepare for what’s next in the privacy landscape.
37. GoalsIn this session you will learn about the new VS2010 extensions for WSSYou will learn how to migrate your existing solutions into the new environment reducing the migration process time to minimum.This session will allow you to make better decisions on your current solutions for 2007 today that will make the transition to 2010 easy and simple.
38. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
39. Building a New Solution Before you begin…Is your team ready for 2010?Silverlight, Ajax, JSONVisual web parts! (or is it?)Prepare to be hosted!Limit customization to site collection levelPrefer to support sandboxed solutions*
40. Building a New Solution Before you begin…SharePoint web parts are still supported for backwards compatibility
41. Do not change base for existing web parts!!!Creating a new web part?Inherit from ASP.NET!
43. Building a New Solution Before you begin…Install all components on developer machine
44. Building a New Solution Before you begin…Install developer components on development client and use remote debugger to connect to development server (not so bad, but still…)
45. Building a New Solution Before you begin…Virtualize! (Recommended)
46. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
47. Building a New SolutionCreating a new solutionOpen VS2010
48. Building a New SolutionCreating a new solutionClick on new project. Go to:C# -> SharePoint -> 2010 templates
49. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
50. Building a New SolutionChoose a project templateThere are a lot of new project templates to choose from!But fear not – You can easily add any component to any project later
60. Building a New SolutionChoose template: BCS modelThis project template can be sandboxed
61. Building a New SolutionChoose template: BCS modelBCS editing tools
62. Building a New SolutionChoose template: BCS modelPackaged and deployed as a farm level feature
63. Building a New SolutionChoose template: content typeThis project template can be sandboxed
64. Building a New SolutionChoose template: content type“Create content type” WizardMore work needed on the wizard though…
65. Building a New SolutionChoose template: list definitionThis project template cannot be sandboxed
66. Building a New SolutionChoose template: list definition“Create List Def.” Wizard
67. Building a New SolutionChoose template: content typeSchema FileCreate Elements file for featureOptional: Create list instance XML
68. Building a New SolutionChoose template: content typePackaged and deployed as a web feature
69. Building a New SolutionChoose template: workflowThis project template cannot be sandboxed
70. Building a New SolutionChoose template: workflowSequential workflow is designed to execute a series of predefined steps to accomplish a certain taskState machine workflows are designed to work in event-driven scenarios. A state machine workflow contains two or more states, with one state being the active state at any given time
71. Building a New SolutionChoose template: workflow“State machine” wizardChoose history and tasks lists.* Also choose a list if you selected a list workflow typeWorkflow initiation options
72. Building a New SolutionChoose template: workflowDesigner has different options for site and list workflows
73. Building a New SolutionChoose template: workflowAdd sequential workflow, with its own designer
74. Building a New SolutionChoose template: workflowCreates separate elements file for each workflow
75. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
77. Building a New SolutionSetup trust levelChoose your destiny
78. Building a New SolutionSetup trust levelTo trust, or not to trust?Sandbox solutions is a way for you to deploy a set of features and components to your SharePoint site collection that will have no effect on other site collectionsSandbox solutions have limited support for extensibility and not all SharePoint customizations are allowedSandboxed solutions can be installed and deployed by site owner from site settings
79. Building a New SolutionSetup trust levelWhat does this setting change?This setting does not get written to WSP package, but will allow VS to validate your content is supported within a sandboxes solutionSolution assemblies within a sandboxed solution are not installed to GAC/Bin, and not running on W3WP process. Instead they run under SPUCWorkerProcessSandboxed solutions can be deployed as a full-trusted solution as well
80. Building a New SolutionSetup trust levelWhat is supported within a sandbox solution?List Definitions, List Instances, Content Types/FieldsWeb Parts (non visual)Event receivers: Item, List or WebDeclarative workflows, Custom Actions (Ribbon)Onet.xml, WebTemplate feature element (instead of Webtemp.xml) allows for site collection level site definitions!More…
81. Building a New SolutionSetup trust levelWhat is not supported within a sandbox solution?Mapped folders (14 hive)Some API will not work in sandboxed modeVisual Web PartsApplication PagesCustom Action GroupHideCustomAction elementWeb Application/Farm-scoped featuresWorkflows with code
82. Building a New SolutionSetup trust levelHow do I deploy a sandbox solution?Upload to Solutions galleryActivate
83. Building a New SolutionSetup trust levelCannot activate solution?Go to central administration and make sure windows SharePoint user code service is started
84. Building a New SolutionSetup trust levelKeep in mind:Deploying a sandbox solution automatically activates features within (unless specifically specified not to in the feature)To disable support for sandbox solutions simply stop the user code serviceUpgrading sandbox solutions are done manually site collection at a time
85. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
86. Building a New SolutionAdding new componentsIt is extremely easy to add any component to any project you likeThis allows you to easily create more complex solutions that includes several types of customizations such as:Feature – for activationWeb parts – for visual UILists and list definitions for storing dataField types, event handlers, workflows and much more!
87. Building a New SolutionAdding new componentsAdd mapped folder
88. Building a New SolutionAdding new componentsAdd other components
89. ContentBuilding a new solutionCreating a new solutionChoose a project templateSetup trust levelAdding new componentsOne-click deploy or packageUpgrading an existing solutionVersion management
90. Building a New SolutionOne-click deploy or packageFeature and Package editors available
91. Building a New SolutionOne-click deploy or packageProject menu allows you to build, deploy to development server, and to package using a WSPBuild = compile code onlyPackage = compiles and builds the WSP packageDeploy = compile, package anddeploy the package (customizable!)Retract = removes the solutionpackage from server
92. ContentBuilding a new solutionUpgrading an existing solutionUpgrading a non-VSeWSS solutionUpgrading a 2005/2008 VSeWSS solutionUpgrading a WSP packageVersion management
94. ContentBuilding a new solutionUpgrading an existing solutionUpgrading a non-VSeWSSsolutionUpgrading a 2005/2008 VSeWSS solutionUpgrading a WSP packageVersion management
95. Upgrading an Existing SolutionUpgrading non-VSeWSS solutionCase study: Upgrading KWizCom SharePoint List Forms ExtensionsWhat we had in 2007:controltemplates ASCX files. New control templates and updating existing ones*Application settings pagesList settings linkFeature activated, MSI installerExternal references to utilities/shared resources
97. Upgrading an Existing SolutionUpgrading non-VSeWSS solutionWhat we added in 2010:List settings ribbon buttonsAdd CSS file using DelegateWSP packaging
101. Upgrading an Existing SolutionUpgrading non-VSeWSS solutionConclusionIn order to make the most of VS2010 and VS2010 extensions for WSS its best to build a new project skeleton and import existing code into it.If you already have a WSP package you can use it to build your project skeleton from it (reverse engineer) but your .NET code will not be included!
102. Upgrading an Existing SolutionUpgrading non-VSeWSS solutionSteps for upgrading a projectEstimated ~1 hour to 4 hours of 1 developer to have the solution ready for packaging.
103. ContentBuilding a new solutionUpgrading an existing solutionUpgrading a non-VSeWSSsolutionUpgrading a 2005/2008 VSeWSSsolutionUpgrading a WSP packageVersion management
104. Upgrading an Existing SolutionUpgrading 2005/2008 VSeWSSUnfortunately, you cannot convert VS2005/2008 projects using visual studio aloneTrying to do so will invoke this error:“The project type is not supported by this installation.”
105. Upgrading an Existing SolutionUpgrading 2005/2008 VSeWSSBut fear not! VSeWSS2010 comes with a conversion tool (VSeWSS 2008 only).For all other projects that used WSP for deployment - This next option might be what you are looking for!
106. ContentBuilding a new solutionUpgrading an existing solutionUpgrading a non-VSeWSSsolutionUpgrading a 2005/2008 VSeWSSsolutionUpgrading a WSP packageVersion management
107. Upgrading an Existing SolutionUpgrading a WSP packageIf you have a WSP packaged solution, you can import it into 2010!
108. Upgrading an Existing SolutionUpgrading a WSP packageImport wizardYour code doesnot getimported!
109. Upgrading an Existing SolutionUpgrading a WSP packageThe import process will build your skeleton for youAfter the import is done, some work is needed
112. ContentBuilding a new solutionUpgrading an existing solutionVersion managementHow can I mark versionsShared resourcesUpgrade / downgrade solution version
113. Version ManagementVersion managementWhy do we need version management?Tractability of bugs or changesPerform upgrade operations on existing installations (add a field, create hidden list etc.)Monitor Dev, Staging and production deployment running codeNot for ISV only!In house development team? Get used to working with versioned packages!
114. ContentBuilding a new solutionUpgrading an existing solutionVersion managementHow can I mark versionsShared resourcesUpgrade / downgrade solution version
115. Version ManagementHow can I mark versionsCannot change assembly version!Currently no supportfor marking package,but you can markfeatures:Mark versionnumber in yourcode:
116. ContentBuilding a new solutionUpgrading an existing solutionVersion managementHow can I mark versionsShared resourcesUpgrade / downgrade solution version
117. Version ManagementShared resourcesYou may need to add shared resources to your projectsDLL’s (utility classes, base classes)Sandbox – no problemGAC – no problemBIN deployment – version collisions may occur.Shared resources (Images/CSS files)Use sub folders with utilities version number.For example:/_layouts/KWizCom_Shared_2.0.01
118. ContentBuilding a new solutionUpgrading an existing solutionVersion managementHow can I mark versionsShared resourcesUpgrade / downgrade solution version
119. Version ManagementUp/downgrade solution versionBuilt in support for upgrade operations!SharePoint will allow mark if feature requires upgradeMany upgrade operations supported, and custom upgrade handlers can be coded
120. Version ManagementUp/downgrade solution versionUpgrading / downgrading is easy!Once you deploy several versions of same solution you will be able to upgrade instead of activate!
122. SummaryYou now have real-world experience in upgrading components into 2010There is a lot more to seeCome visit us at our booth for more information and for 1 on 1 talks!Overall, It’s been a pleasure!
123. Contact UsFor more information on SharePoint 2010 please don’t hesitate to contact us!At our booth out side
#2: Upgrading Philly Office Geeks in DecemberWorld-class speakersFocus on SharePoint 2010 and 2007Jump start Philly SharePoint communityRegional focus – looking into different meeting locations/optionsInvestigating various virtual meeting options
#3: This is my personal experience upgrading SLFE from 2007 to 2010.(what will be different in my presentation is that it is based on actual migration I did and the lessons I learned, hope it can save you some time and allow to you take the right decisions on your projects today that will prepare you for the future)
#4: These are the topics…1st quick overview on VSeWSS2010, allow us to prepare for the next topic, which is the main one…Last – versioning, my personal goal to make all my customer work like an ISV
#9: Farm level resources:SQL, file system, 14 hive, schema filesEasy to mess up:Developer has full control and can make his environment. Unusable and cannot revert it back to original form.Hard to backup:Server, not code. For code we use VSS.New: Supported under windows 764bit for developers!!!
#11: No worries environment:(can restore to original state with no problems so feel free to mess up the server!
#16: You will need to decide what type of project you wish to create.(Visual web part, list/site definition, event handler, workflow, BCS and much more)If you are not sure you can start with an empty one.For advanced solutions that has many different customizations (web parts, list definitions and more…) just pick any project and add other components to it after you create the project.
#19: Files:CS file for web partASCX and ASCX.CS file for user control*.webpart XML fileElements XML file for use in featuresNote: All web part related files are created within the same folder to help you keep resources organized.4 clicks
#20: Note:New feature designer!The elements file from within the web part is recognized and added into your feature.
#21: Note:New package designer!All features and elements in this projectare recognized and added into your package.1 click
#23: When creating this type of project there is a wizard to guide you through the creation of the solution.Note: new types of event receivers.Note: New events to handle in existing event receivers!2 clicks
#24: Elements file within the receiver’s folder to be used in features.Receiver’s handler code file.1 Click
#27: BCS – Business connectivity Services (former BDC)1 click
#47: Deploying a sandbox solution that has any of the forbidden content will succeed but that content will not be deployed.Application pages: no pages into layouts since no mapped folders.Pages with embedded code are not supported from data base – security.
#65: Show the new Ribbon UI, and shot settings pagesShow it working in the new item popupShow next / prev item based on view in tasksShow groupingShow disabled field
#72: After import is done – still need to import code manually and set namespace / assembly evidence
#73: Import SLFE WSP package,Show what is created (skeleton),Manually add code files and set namespace, assembly evidence.
#75: Pages, web parts, event handlers – do not support assembly version changes.Version in features for upgrade operations if needed. Change only when needed.Version in code, to show in about to identify current running version easily. Change every time.