SlideShare a Scribd company logo
1 of 80
Download to read offline
Mustafa Furniturewala
Evernote
Mobile SDKs: Getting Started
with the Evernote API
Monday, September 30, 13
#EC2013
Evernote API
• Access to a user’s Evernote account/business
• Read/Create/Find notes
• FindRelated/Reminders
Monday, September 30, 13
#EC2013
Mobile SDK’s
Monday, September 30, 13
#EC2013
Mobile SDK’s
• Easy to use - hide complexities
Monday, September 30, 13
#EC2013
Mobile SDK’s
• Easy to use - hide complexities
• Local API’s
Monday, September 30, 13
#EC2013
Mobile SDK’s
• Easy to use - hide complexities
• Local API’s
• Support popular environments (cocoapods/
maven)
Monday, September 30, 13
#EC2013
Mobile SDK’s
• Easy to use - hide complexities
• Local API’s
• Support popular environments (cocoapods/
maven)
• Wrappers
Monday, September 30, 13
#EC2013
Getting started
Monday, September 30, 13
#EC2013
Getting started
Monday, September 30, 13
#EC2013
Getting started
1. Create an account on sandbox.evernote.com
Monday, September 30, 13
#EC2013
Getting started
1. Create an account on sandbox.evernote.com
2. Get your consumer key
Monday, September 30, 13
#EC2013
Getting started
1. Create an account on sandbox.evernote.com
2. Get your consumer key
3. Download the SDK
Monday, September 30, 13
#EC2013
Getting started
1. Create an account on sandbox.evernote.com
2. Get your consumer key
3. Download the SDK
4. Start using the API’s
Monday, September 30, 13
#EC2013
Authentication
Monday, September 30, 13
#EC2013
Authentication
1. OAuth 1.0a
Monday, September 30, 13
#EC2013
Authentication
1. OAuth 1.0a
2. Mobile SDK’s handle everything for you
Monday, September 30, 13
#EC2013
Authentication
1. OAuth 1.0a
2. Mobile SDK’s handle everything for you
3. Github
Monday, September 30, 13
#EC2013
Yinxiang Biji
Monday, September 30, 13
#EC2013
Yinxiang Biji
1. Evernote’s China service
Monday, September 30, 13
#EC2013
Yinxiang Biji
1. Evernote’s China service
2. Bootstrapping
Monday, September 30, 13
#EC2013
Yinxiang Biji
1. Evernote’s China service
2. Bootstrapping
3. Mobile SDK’s handle
everything for you
Monday, September 30, 13
#EC2013
Yinxiang Biji
1. Evernote’s China service
2. Bootstrapping
3. Mobile SDK’s handle
everything for you
Monday, September 30, 13
#EC2013
Getting started
Monday, September 30, 13
#EC2013
Getting started
Monday, September 30, 13
#EC2013
Getting started
•[EvernoteSession sharedSession]
Monday, September 30, 13
#EC2013
Getting started
•[EvernoteSession sharedSession]
•- (void)authenticateWithViewController:completionHandler:
Monday, September 30, 13
#EC2013
Getting started
•[EvernoteSession sharedSession]
•- (void)authenticateWithViewController:completionHandler:
•[EvernoteUserStore userStore]
Monday, September 30, 13
#EC2013
Getting started
•[EvernoteSession sharedSession]
•- (void)authenticateWithViewController:completionHandler:
•[EvernoteUserStore userStore]
•[EvernoteNoteStore noteStore]
Monday, September 30, 13
#EC2013
Getting started
•[EvernoteSession sharedSession]
•- (void)authenticateWithViewController:completionHandler:
•[EvernoteUserStore userStore]
•[EvernoteNoteStore noteStore]
Monday, September 30, 13
#EC2013
Note
Metadata
Body
Attachments
Monday, September 30, 13
#EC2013
ENML
• Markup language for the body of a note
• Rich content
• Based on XHTML
• Validate against the DTD
Monday, September 30, 13
#EC2013
ENML
Monday, September 30, 13
#EC2013
ENML
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd">
<en-note>
<div><en-todo></en-todo>Checkbox 1</div>
<div><en-todo checked="true"></en-todo>Checkbox 2</div>
<div><br clear="none"/></div>
<div><ol><li>Number 1</li><li>Number 2</li></ol></div>
</en-note>
Monday, September 30, 13
#EC2013
ENML
Monday, September 30, 13
#EC2013
ENML
en-note
Monday, September 30, 13
#EC2013
ENML
en-note
en-media
Monday, September 30, 13
#EC2013
ENML
en-note
en-media
en-crypt
Monday, September 30, 13
#EC2013
ENML
en-note
en-media
en-crypt
en-todo
Monday, September 30, 13
#EC2013
Write ENML
Monday, September 30, 13
#EC2013
Write ENML
ENMLWriter - iOS only
Monday, September 30, 13
#EC2013
Write ENML
ENMLWriter - iOS only
(void) writeResource:(EDAMResource *)resource;
Monday, September 30, 13
#EC2013
Write ENML
ENMLWriter - iOS only
(void) writeResource:(EDAMResource *)resource;
(void) writeEncryptedInfo:
(ENEncryptedContentInfo *)encryptedInfo;
Monday, September 30, 13
#EC2013
Write ENML
ENMLWriter - iOS only
(void) writeResource:(EDAMResource *)resource;
(void) writeEncryptedInfo:
(ENEncryptedContentInfo *)encryptedInfo;
(void) writeTodoWithCheckedState:
(BOOL)checkedState;
Monday, September 30, 13
#EC2013
ENML Writer
EDAMData *edamData = [[EDAMData alloc]
initWithBodyHash:dataHash size:myFileData.length
body:myFileData];
EDAMResource* resource = [[EDAMResource alloc] init];
[resource setData:edamData];
[resource setMime:@"image/png"];
ENMLWriter* myWriter = [[ENMLWriter alloc] init]
Monday, September 30, 13
#EC2013
ENML Writer
[myWriter startDocument];
[myWriter startElement:@"span"];
[myWriter startElement:@"br"];
[myWriter endElement];
[myWriter writeResource:resource];
[myWriter endElement];
[myWriter endDocument];
Monday, September 30, 13
#EC2013
View ENML
ENML -> HTML
- (void) convertENMLToHTML:enmlContent completionBlock:
Monday, September 30, 13
#EC2013
Sharing and Business
Monday, September 30, 13
#EC2013
Sharing and Business
• Share notes/notebooks
Monday, September 30, 13
#EC2013
Sharing and Business
• Share notes/notebooks
• Business API
Monday, September 30, 13
#EC2013
Sharing and Business
• Share notes/notebooks
• Business API
• SDK’s help you out
Monday, September 30, 13
#EC2013
Helpful SDK functions
• List notes for a shared notebook
• List all the business notebooks
• Create a business notebook
• Create a note in a business notebook
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[noteFilter setWords:@"sourceApplication:postit"];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[noteFilter setWords:@"sourceApplication:postit"];
EDAMNotesMetadataResultSpec* metadataResultSpec =
[[EDAMNotesMetadataResultSpec alloc] init];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[noteFilter setWords:@"sourceApplication:postit"];
EDAMNotesMetadataResultSpec* metadataResultSpec =
[[EDAMNotesMetadataResultSpec alloc] init];
[metadataResultSpec setIncludeTitle:YES];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[noteFilter setWords:@"sourceApplication:postit"];
EDAMNotesMetadataResultSpec* metadataResultSpec =
[[EDAMNotesMetadataResultSpec alloc] init];
[metadataResultSpec setIncludeTitle:YES];
[noteStore findNotesMetadataWithFilter:noteFilter offset:0 maxNotes:
100 resultSpec:metadataResultSpec success:^(EDAMNotesMetadataList
*metadata)} failure:^(NSError *error) {}];
Monday, September 30, 13
#EC2013
Example - Get all the Post-it®
notes
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[noteFilter setWords:@"sourceApplication:postit"];
EDAMNotesMetadataResultSpec* metadataResultSpec =
[[EDAMNotesMetadataResultSpec alloc] init];
[metadataResultSpec setIncludeTitle:YES];
[noteStore findNotesMetadataWithFilter:noteFilter offset:0 maxNotes:
100 resultSpec:metadataResultSpec success:^(EDAMNotesMetadataList
*metadata)} failure:^(NSError *error) {}];
Monday, September 30, 13
#EC2013
Example - List notes from a
shared notebook
Monday, September 30, 13
#EC2013
Example - List notes from a
shared notebook
EvernoteNoteStore *defaultNoteStore = [EvernoteNoteStore
noteStore];
Monday, September 30, 13
#EC2013
Example - List notes from a
shared notebook
EvernoteNoteStore *defaultNoteStore = [EvernoteNoteStore
noteStore];
[defaultNoteStore listLinkedNotebooksWithSuccess:^(NSArray
*linkedNotebooks) {
Monday, September 30, 13
#EC2013
Example - List notes from a
shared notebook
EvernoteNoteStore *defaultNoteStore = [EvernoteNoteStore
noteStore];
[defaultNoteStore listLinkedNotebooksWithSuccess:^(NSArray
*linkedNotebooks) {
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
Monday, September 30, 13
#EC2013
Example - List notes from a
shared notebook
EvernoteNoteStore *defaultNoteStore = [EvernoteNoteStore
noteStore];
[defaultNoteStore listLinkedNotebooksWithSuccess:^(NSArray
*linkedNotebooks) {
EDAMNoteFilter* noteFilter = [[EDAMNoteFilter alloc] init];
[defaultNoteStore
listNotesForLinkedNotebook:linkedNotebooks[0]
withFilter:noteFilter success:^(EDAMNoteList *list) { }
failure:^(NSError *error) { }];}
Monday, September 30, 13
#EC2013
Interact with the Evernote app
Monday, September 30, 13
#EC2013
Interact with the Evernote app
1. Create notes
Monday, September 30, 13
#EC2013
Interact with the Evernote app
1. Create notes
2. View a note
Monday, September 30, 13
#EC2013
Interact with the Evernote app
1. Create notes
2. View a note
3. Authentication
Monday, September 30, 13
#EC2013
Interact with the Evernote app
1. Create notes
2. View a note
3. Authentication
4. Intents on Android
Monday, September 30, 13
#EC2013
Wrappers - Local API
Monday, September 30, 13
#EC2013
Wrappers - Local API
- (void)viewNoteInEvernote:
Monday, September 30, 13
#EC2013
Wrappers - Local API
- (void)viewNoteInEvernote:
- (void)saveNewNoteToEvernoteApp:
Monday, September 30, 13
#EC2013
Wrappers - Local API
- (void)viewNoteInEvernote:
- (void)saveNewNoteToEvernoteApp:
Monday, September 30, 13
#EC2013
Open source
Monday, September 30, 13
#EC2013
Open source
Submit pull requests
Monday, September 30, 13
#EC2013
Open source
Submit pull requests
Open issues
Monday, September 30, 13
#EC2013
Open source
Submit pull requests
Open issues
Github.com/evernote
Monday, September 30, 13
#EC2013
Popular apps
Pocket Lightly
Monday, September 30, 13
#EC2013
Popular apps
Dolphin Browser
Monday, September 30, 13
#EC2013
Thank you!
mustafa@evernote.com
Questions?
Monday, September 30, 13

More Related Content

Recently uploaded

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Recently uploaded (20)

Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Evernote Mobile SDKs: Getting Started with the Evernote API