SlideShare a Scribd company logo
Kaushik Patidar
THE STANDARDS
Global Area
THE main() FUNCTION
Variables
Use meaningful identifier names conveying
their uses and contents
Never use abbreviations, if required:1. Remove all vowels, unless they start or end
a word
2. Represent double consonant by a single

Avoid single character identifiers except for
loop counters
Functions
Use comments to describe its purpose and
parameters
Describe inputs and outputs
Always mark start and end of a function
Always explicitly use return type
Miscellaneous Styles
 Never crowd the code
 Group all identifiers by type in ascending order
 Identifiers are in lower case ,each new segment starting
with capital
e.g. stdntNm
 Adopt consistent naming conventions as an alternative
e.g. stdntNme
teacherName
 Use brackets for neater , easy to understand
 If you've got a lot of if / else statements try to put the one
most likely to be met first
Use of Naming Conventions
Use the naming conventions and different
styles consistently
E.g. FooDoo a class
fooDoo a function
foo_doo a variable
 Easier to spot simple mistakes
 Easy to remember capitalized names
Indentation
 Align all the components of the program
 Start a new compound statement just below
the end of defining keyword or differentiate
by three spaces from other statements
 Provide space between operator and operands
 Provide space at start and end of every
expression
 Align all assignment statements
Indentation : Advantages
Enhances the readability
Easy to debug complex programs
Provides vital information regarding the flow
of program control
Starter for Projects
Represent logic on paper reducing logical
errors in due course of development
Match the outside world ideas to logical
design
Sequence into logical snippets
Always keep an updated backup
Make libraries of frequently used codes
Initialize variables with default values
Use multiple files
Break program into functional groups ,each
in it's own file
Develop each part ,test and debug it
independently
Feasible to work with a smaller chunk of
code
Easier to reuse components from your old
code
Subtle Differences
Tips
Tips(contd.)
Tips(contd.)
Tips(contd.)
 You can use sscanf to convert a string to an
integer:
int main()
{
char *str="12";
int i;
sscanf(str, "%d", &i);
printf("%dn", i);
return 0;
}
Tips(contd.)
 To swap two nos
void swap(int &a, int &b)
{
a ^= b;
b ^= a;
a ^= b;
}
Tips(contd.)
 To find whether number is even/odd
int main()
{
char *res[2] = { "Even", "Odd" };
int no;
scanf( "%d", &no );
printf( res[no%2] );
return 0;
}
Tips(contd.)
To find whether number is even/odd
int main()
{
int no;
scanf( "%d", &no );
no&1 ? printf(“Odd"):printf("Even");
}
Ultimate Words
Follow “Look Before you Leap ” as an
initiative
Implement “Divide and Conquer ” while
development and debugging
Try to be nearer to the “Nature ”
A
An
Any
Any Q
Any Qu
Any Que
Any Quer
Any Queri
Any Querie
Any Queries
Any Queries…
Any Queries……
Any Queries………
Any Queries…………
Any Queries…………..
Any Queries……………
Any Queries……………?
Any Queries……………?
Exercise
Write a C/C++ program to maximum
of two numbers
Input : 2 3
Output : 3
Exercise
Write a C/C++ program to rotate a
user specified string for a given
number of times
Input : “Hello” 3
Output : “lloHe”
Exercise
Write a C/C++ program to reverse a
user specified string
Input : “Hello”
Output : “olleH”
1

“I never compete
against the
competition. The
only one I
compete against is
myself ,because
one day, I will

beat the
competition

then what next?”
2

“Keep your
head and
heart in the
right direction
and you will
never worry
about your

feet”
3

“ A Minute’s
success pays the
failure of the
years ”
and the
most important
of

all
4

“In three
words, I can
sum up
everything I’ve
learned about
the short life -

It Goes On”
What to do to
learn

C
?
Books:
1. B.Forozouan
2. C:The Complete
Reference
3. Yeshwant Kanetkar
Series
4.Schaum Series
THANK
YOU

More Related Content

What's hot

C material
C materialC material
C material
tarique472
 
Structure of c_program_to_input_output
Structure of c_program_to_input_outputStructure of c_program_to_input_output
Structure of c_program_to_input_output
Anil Dutt
 
Constants in C Programming
Constants in C ProgrammingConstants in C Programming
Constants in C Programming
programming9
 
Chapter 3.1
Chapter 3.1Chapter 3.1
Chapter 3.1sotlsoc
 
Control Structures: Part 1
Control Structures: Part 1Control Structures: Part 1
Control Structures: Part 1
Andy Juan Sarango Veliz
 
Programming in C Session 1
Programming in C Session 1Programming in C Session 1
Programming in C Session 1
Prerna Sharma
 
C tokens
C tokensC tokens
C tokens
Manu1325
 
Complete Tokens in c/c++
Complete Tokens in c/c++Complete Tokens in c/c++
Complete Tokens in c/c++
Shobi P P
 
Python syntax
Python syntaxPython syntax
Python syntax
Learnbay Datascience
 
C presentation! BATRA COMPUTER CENTRE
C presentation! BATRA  COMPUTER  CENTRE C presentation! BATRA  COMPUTER  CENTRE
C presentation! BATRA COMPUTER CENTRE
jatin batra
 
Control Structures
Control StructuresControl Structures
Control StructuresGhaffar Khan
 
Strings-Computer programming
Strings-Computer programmingStrings-Computer programming
Strings-Computer programming
nmahi96
 
Variables in C and C++ Language
Variables in C and C++ LanguageVariables in C and C++ Language
Variables in C and C++ Language
Way2itech
 
Module 1:Introduction
Module 1:IntroductionModule 1:Introduction
Module 1:Introduction
nikshaikh786
 
Commenting Best Practices
Commenting Best PracticesCommenting Best Practices
Commenting Best Practices
mh_azad
 
Data type in c
Data type in cData type in c
Data type in c
thirumalaikumar3
 

What's hot (18)

C material
C materialC material
C material
 
Structure of c_program_to_input_output
Structure of c_program_to_input_outputStructure of c_program_to_input_output
Structure of c_program_to_input_output
 
Constants in C Programming
Constants in C ProgrammingConstants in C Programming
Constants in C Programming
 
Chapter 3.1
Chapter 3.1Chapter 3.1
Chapter 3.1
 
Control Structures: Part 1
Control Structures: Part 1Control Structures: Part 1
Control Structures: Part 1
 
Programming in C Session 1
Programming in C Session 1Programming in C Session 1
Programming in C Session 1
 
Savitch Ch 17
Savitch Ch 17Savitch Ch 17
Savitch Ch 17
 
C tokens
C tokensC tokens
C tokens
 
Complete Tokens in c/c++
Complete Tokens in c/c++Complete Tokens in c/c++
Complete Tokens in c/c++
 
Python syntax
Python syntaxPython syntax
Python syntax
 
Lesson 3 php numbers
Lesson 3  php numbersLesson 3  php numbers
Lesson 3 php numbers
 
C presentation! BATRA COMPUTER CENTRE
C presentation! BATRA  COMPUTER  CENTRE C presentation! BATRA  COMPUTER  CENTRE
C presentation! BATRA COMPUTER CENTRE
 
Control Structures
Control StructuresControl Structures
Control Structures
 
Strings-Computer programming
Strings-Computer programmingStrings-Computer programming
Strings-Computer programming
 
Variables in C and C++ Language
Variables in C and C++ LanguageVariables in C and C++ Language
Variables in C and C++ Language
 
Module 1:Introduction
Module 1:IntroductionModule 1:Introduction
Module 1:Introduction
 
Commenting Best Practices
Commenting Best PracticesCommenting Best Practices
Commenting Best Practices
 
Data type in c
Data type in cData type in c
Data type in c
 

Viewers also liked

2013학년도 창업대학원 신입생 모집요강
2013학년도 창업대학원 신입생 모집요강2013학년도 창업대학원 신입생 모집요강
2013학년도 창업대학원 신입생 모집요강GNTECH_ceomba
 
Branded presentation new-1
Branded presentation new-1Branded presentation new-1
Branded presentation new-1wbneverman
 
FUNCION DE LOS DOCENTES
FUNCION DE LOS DOCENTESFUNCION DE LOS DOCENTES
FUNCION DE LOS DOCENTES
DENISSE0710
 
Odesk html set 2
Odesk html set 2Odesk html set 2
Odesk html set 2
Nirbanjyoti das
 
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะเอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
Kan Pan
 
The main principles of education by Jessica Salguero
The main principles of education by Jessica SalgueroThe main principles of education by Jessica Salguero
The main principles of education by Jessica SalgueroJessgsm
 
Contratación Electrónica & Contratación Informática
Contratación Electrónica & Contratación InformáticaContratación Electrónica & Contratación Informática
Contratación Electrónica & Contratación Informática
Alessandra Luque
 
Week 7 Commodity Crops and CAFOs
Week 7   Commodity Crops and CAFOsWeek 7   Commodity Crops and CAFOs
Week 7 Commodity Crops and CAFOsJenSantry
 
Will Phillips: Interim Portfolio Deck Autumn 2013
Will Phillips: Interim Portfolio Deck Autumn 2013Will Phillips: Interim Portfolio Deck Autumn 2013
Will Phillips: Interim Portfolio Deck Autumn 2013
Will Phillips
 
Blogging to Get Found Online for Job Search and Personal Branding
Blogging to Get Found Online for Job Search and Personal Branding Blogging to Get Found Online for Job Search and Personal Branding
Blogging to Get Found Online for Job Search and Personal Branding
Ali Powell
 
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
LEPARC AT BRICKELL
 
창의적아이디어는 반복에서 나온다. 박승훈
창의적아이디어는 반복에서 나온다. 박승훈창의적아이디어는 반복에서 나온다. 박승훈
창의적아이디어는 반복에서 나온다. 박승훈
GNTECH_ceomba
 
ANIEnergia - Trasformatori per efficientamento energetico
ANIEnergia - Trasformatori per efficientamento energeticoANIEnergia - Trasformatori per efficientamento energetico
ANIEnergia - Trasformatori per efficientamento energetico
ANIE Energia
 

Viewers also liked (15)

2013학년도 창업대학원 신입생 모집요강
2013학년도 창업대학원 신입생 모집요강2013학년도 창업대학원 신입생 모집요강
2013학년도 창업대학원 신입생 모집요강
 
Shot types
Shot typesShot types
Shot types
 
Branded presentation new-1
Branded presentation new-1Branded presentation new-1
Branded presentation new-1
 
FUNCION DE LOS DOCENTES
FUNCION DE LOS DOCENTESFUNCION DE LOS DOCENTES
FUNCION DE LOS DOCENTES
 
Odesk html set 2
Odesk html set 2Odesk html set 2
Odesk html set 2
 
Maja
MajaMaja
Maja
 
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะเอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
เอกสารประกอบการเรียน เรื่อง พลังงานแสงและระบบสุริยะ
 
The main principles of education by Jessica Salguero
The main principles of education by Jessica SalgueroThe main principles of education by Jessica Salguero
The main principles of education by Jessica Salguero
 
Contratación Electrónica & Contratación Informática
Contratación Electrónica & Contratación InformáticaContratación Electrónica & Contratación Informática
Contratación Electrónica & Contratación Informática
 
Week 7 Commodity Crops and CAFOs
Week 7   Commodity Crops and CAFOsWeek 7   Commodity Crops and CAFOs
Week 7 Commodity Crops and CAFOs
 
Will Phillips: Interim Portfolio Deck Autumn 2013
Will Phillips: Interim Portfolio Deck Autumn 2013Will Phillips: Interim Portfolio Deck Autumn 2013
Will Phillips: Interim Portfolio Deck Autumn 2013
 
Blogging to Get Found Online for Job Search and Personal Branding
Blogging to Get Found Online for Job Search and Personal Branding Blogging to Get Found Online for Job Search and Personal Branding
Blogging to Get Found Online for Job Search and Personal Branding
 
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
Le Parc Fact Sheet - Choose the perfect luxury condo & townhome for sale (ven...
 
창의적아이디어는 반복에서 나온다. 박승훈
창의적아이디어는 반복에서 나온다. 박승훈창의적아이디어는 반복에서 나온다. 박승훈
창의적아이디어는 반복에서 나온다. 박승훈
 
ANIEnergia - Trasformatori per efficientamento energetico
ANIEnergia - Trasformatori per efficientamento energeticoANIEnergia - Trasformatori per efficientamento energetico
ANIEnergia - Trasformatori per efficientamento energetico
 

Similar to StandardsandStylesCProgramming

Back-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real WorldBack-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real World
David McCarter
 
Back-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real WorldBack-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real World
David McCarter
 
Coding standards for java
Coding standards for javaCoding standards for java
Coding standards for javamaheshm1206
 
Coding standards
Coding standardsCoding standards
Coding standards
BishalAryal8
 
Cnotes
CnotesCnotes
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
Jayfee Ramos
 
Programming style guideline very good
Programming style guideline very goodProgramming style guideline very good
Programming style guideline very good
Dang Hop
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c language
Rai University
 
Language tour of dart
Language tour of dartLanguage tour of dart
Language tour of dart
Imran Qasim
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
Rai University
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c language
Rai University
 
Naming standards and basic rules in .net coding
Naming standards and basic rules in .net codingNaming standards and basic rules in .net coding
Naming standards and basic rules in .net coding
Naga Harish M
 
N E T Coding Best Practices
N E T  Coding  Best  PracticesN E T  Coding  Best  Practices
N E T Coding Best Practices
Abhishek Desai
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
Aiman Hud
 
Coding Best Practices
Coding Best PracticesCoding Best Practices
Coding Best Practices
mh_azad
 
C introduction
C introductionC introduction
C introduction
AswathyBAnil
 

Similar to StandardsandStylesCProgramming (20)

Back-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real WorldBack-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real World
 
Back-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real WorldBack-2-Basics: .NET Coding Standards For The Real World
Back-2-Basics: .NET Coding Standards For The Real World
 
Coding standards for java
Coding standards for javaCoding standards for java
Coding standards for java
 
Coding standards
Coding standardsCoding standards
Coding standards
 
Introduction to C#
Introduction to C#Introduction to C#
Introduction to C#
 
Cnotes
CnotesCnotes
Cnotes
 
Coding standard
Coding standardCoding standard
Coding standard
 
Java fundamentals
Java fundamentalsJava fundamentals
Java fundamentals
 
Programming style guideline very good
Programming style guideline very goodProgramming style guideline very good
Programming style guideline very good
 
Lập trình C
Lập trình CLập trình C
Lập trình C
 
Chap 1 and 2
Chap 1 and 2Chap 1 and 2
Chap 1 and 2
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c language
 
Language tour of dart
Language tour of dartLanguage tour of dart
Language tour of dart
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c language
 
Naming standards and basic rules in .net coding
Naming standards and basic rules in .net codingNaming standards and basic rules in .net coding
Naming standards and basic rules in .net coding
 
N E T Coding Best Practices
N E T  Coding  Best  PracticesN E T  Coding  Best  Practices
N E T Coding Best Practices
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Coding Best Practices
Coding Best PracticesCoding Best Practices
Coding Best Practices
 
C introduction
C introductionC introduction
C introduction
 

Recently uploaded

Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 

Recently uploaded (20)

Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 

StandardsandStylesCProgramming