SlideShare a Scribd company logo
1 of 37
Download to read offline
.NET Framework での
XML形式へのシリアライズ
HIDARI(ひだり)
@HIDARI0415

13年10月15日火曜日
アプリケーションの状態を
保存したい

13年10月15日火曜日
アプリケーションの状態を
保存したい
(iniファイルという選択肢はないものとして)

13年10月15日火曜日
アプリケーションの状態を
保存したい
(iniファイルという選択肢はないものとして)
まあ順当に考えてXMLで

13年10月15日火曜日
アプリケーションの状態を
保存したい
(iniファイルという選択肢はないものとして)
まあ順当に考えてXMLで
System.Runtime.Seriarization.DataCont
ractSerializer

13年10月15日火曜日
DataContractSerializer
出力したい設定項目を集めたクラスを用意
public class hidari
{
public string Address { get; set; }
public int Age { get; set; }
}
ファイルに書き込み -> WriteObjectメソッド

13年10月15日火曜日
public class hidari
{
public string Address { get; set; }
public int Age { get; set; }
}
var i = new hidari{Address="Osaka", Age=27};
var serializer = new
DataContractSerializer(typeof(hidari));
var fs = new FileStream(@".i.xml",
FileMode.Create);
serializer.WriteObject(fs, i);
fs.Close();
13年10月15日火曜日
<hidari xmlns="http://schemas.datacontract.org/2004/07/_1" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Address>Osaka</Address><Age>

でろーん

13年10月15日火曜日
DataContractSerializer
インデントしてくれないと編集できないじゃん

13年10月15日火曜日
DataContractSerializer
インデントしてくれないと編集できないじゃん
いや,手動で編集すんな

13年10月15日火曜日
DataContractSerializer
インデントしてくれないと編集できないじゃん
いや,手動で編集すんな
System.Xml.XmlWriterに
XmlWriterSettingsをセットして使いましょう

13年10月15日火曜日
var i = new hidari
{
Address = "Osaka",
Age = 27,
};
var serializer = new DataContractSerializer(typeof(hidari));
var fs = new FileStream(@".i", FileMode.Create);
var setting = new XmlWriterSettings();
setting.Indent = true;
var xw = XmlWriter.Create(fs, setting);
//var xw = XmlWriter.Create(fs, new XmlWriterSettings { Indent = true });
serializer.WriteObject(xw, i);
xw.Close();
fs.Close();
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.datacontract.org/2004/07/_2">
<Address>Osaka</Address>
<Age>27</Age>
</hidari>

13年10月15日火曜日
DataContractSerializer
デシリアライズしてみる

13年10月15日火曜日
DataContractSerializer
デシリアライズしてみる
-> ReadObjectメソッド

13年10月15日火曜日
DataContractSerializer
デシリアライズしてみる
-> ReadObjectメソッド
var serializer = new DataContractSerializer(typeof(hidari));
var fs = new FileStream(@"./i.xml", FileMode.Open);
var value = (hidari)serializer.ReadObject(fs);
fs.Close();
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchemainstance" xmlns="http://schemas.datacontract.org/2004/07/
ConsoleApplication7">
<Address>Osaka</Address>
<Age>27</Age>
</hidari>

13年10月15日火曜日
DataContractSerializer
デシリアライズしてみる
-> ReadObjectメソッド
var serializer = new DataContractSerializer(typeof(hidari));
var fs = new FileStream(@"./i.xml", FileMode.Open);
var value = (hidari)serializer.ReadObject(fs);
fs.Close();

やってみましょう

13年10月15日火曜日

<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchemainstance" xmlns="http://schemas.datacontract.org/2004/07/
ConsoleApplication7">
<Address>Osaka</Address>
<Age>27</Age>
</hidari>
DataContractSerializer
項目をネストさせてみましょう

public class hidari
{
public string Address { get; set; }
public int Age { get; set; }
public Favorite Favorite { get; set; }
}
public class Favorite
{
public string Love { get; set; }
}

13年10月15日火曜日

var i = new hidari
{
Address = "Osaka",
Age = 27,
Favorite = new Favorite { Love = "CSharp" }
};
var serializer = new DataContractSerializer(typeof(hidari));
var fs = new FileStream(@".iLove.xml", FileMode.Create);
var xw = XmlWriter.Create(fs, new XmlWriterSettings { Indent = true });
serializer.WriteObject(xw, i);
xw.Close();
fs.Close();
DataContractSerializer
項目をネストさせてみましょう
こんな感じで出力
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.datacontract.org/2004/07/
ConsoleApplication5">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>

13年10月15日火曜日
DataContractSerializer
名前空間が邪魔

13年10月15日火曜日
DataContractSerializer
名前空間が邪魔
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.datacontract.org/2004/07/ConsoleApplication5">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>

13年10月15日火曜日
DataContractSerializer
名前空間が邪魔
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.datacontract.org/2004/07/ConsoleApplication5">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>

13年10月15日火曜日
DataContractSerializer
名前空間が邪魔
DataContract属性とDataMember属性を

public class hidari
{
public string Address { get; set; }
public int Age { get; set; }
public Favorite Favorite { get; set; }
}
public class Favorite
{
public string Love { get; set; }
}
13年10月15日火曜日

[DataContract(Namespace="")]
public class hidari
{
[DataMember]
public string Address { get; set; }
[DataMember]
public int Age { get; set; }
[DataMember]
public Favorite Favorite { get; set; }
}
[DataContract(Namespace="")]
public class Favorite
{
[DataMember]
public string Love { get; set; }
}
DataContractSerializer
名前空間が邪魔
DataContract属性とDataMember属性を
NameSpace空にして
public class hidari
{
public string Address { get; set; }
public int Age { get; set; }
public Favorite Favorite { get; set; }
}
public class Favorite
{
public string Love { get; set; }
}
13年10月15日火曜日

[DataContract(Namespace="")]
public class hidari
{
[DataMember]
public string Address { get; set; }
[DataMember]
public int Age { get; set; }
[DataMember]
public Favorite Favorite { get; set; }
}
[DataContract(Namespace="")]
public class Favorite
{
[DataMember]
public string Love { get; set; }
}
DataContractSerializer
名前空間が邪魔
DataContract属性とDataMember属性を
NameSpace空にして
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>
13年10月15日火曜日
DataContractSerializer
順番がアルファベットじゃイヤ!

13年10月15日火曜日
DataContractSerializer
順番がアルファベットじゃイヤ!
DataMember属性のOrderプロパティを
[DataContract(Namespace="")]
public class hidari
{
[DataMember]
public string Address { get; set; }
[DataMember]
public int Age { get; set; }
[DataMember]
public Favorite Favorite { get; set; }
}

13年10月15日火曜日

[DataContract(Namespace="")]
public class hidari
{
[DataMember(Order=3)]
public string Address { get; set; }
[DataMember(Order=2)]
public int Age { get; set; }
[DataMember(Order=1)]
public Favorite Favorite { get; set; }
}
DataContractSerializer
順番がアルファベットじゃイヤ!
DataMember属性のOrderプロパティを
[DataContract(Namespace="")]
public class hidari
{
[DataMember]
public string Address { get; set; }
[DataMember]
public int Age { get; set; }
[DataMember]
public Favorite Favorite { get; set; }
}

13年10月15日火曜日

[DataContract(Namespace="")]
public class hidari
{
[DataMember(Order=3)]
public string Address { get; set; }
[DataMember(Order=2)]
public int Age { get; set; }
[DataMember(Order=1)]
public Favorite Favorite { get; set; }
}
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>

<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Favorite>
<Love>CSharp</Love>
</Favorite>
<Age>27</Age>
<Address>Osaka</Address>
</hidari>

13年10月15日火曜日
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Address>Osaka</Address>
<Age>27</Age>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</hidari>

<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Favorite>
<Love>CSharp</Love>
</Favorite>
<Age>27</Age>
<Address>Osaka</Address>
</hidari>

13年10月15日火曜日
DataContractSerializer
順番を気にせず並べたい
コレクションなら…

13年10月15日火曜日
[DataContract(Namespace="")]
public class hidari
{
[DataMember(Order=3)]
public string Address { get; set; }
[DataMember(Order=2)]
public int Age { get; set; }
[DataMember(Order=1)]
public List<Favorite> Favorites { get; set; }
}

var i = new hidari
{
Address = "Osaka",
Age = 27,
Favorites = new List<Favorite> {
new Favorite{Love = "CSharp" },
new Favorite{Love = ".NET Framework"},
new Favorite{Love = "Programming"}
}
};

13年10月15日火曜日

<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/
XMLSchema-instance">
<Favorites>
<Favorite>
<Love>CSharp</Love>
</Favorite>
<Favorite>
<Love>.NET Framework</Love>
</Favorite>
<Favorite>
<Love>Programming</Love>
</Favorite>
</Favorites>
<Age>27</Age>
<Address>Osaka</Address>
</hidari>
<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/
XMLSchema-instance">
<Favorites>
<Favorite>
<Love>CSharp</Love>
</Favorite>
<Favorite>
<Love>.NET Framework</Love>
</Favorite>
<Favorite>
<Love>Programming</Love>
</Favorite>
</Favorites>
<Age>27</Age>
<Address>Osaka</Address>
</hidari>

13年10月15日火曜日

<?xml version="1.0" encoding="utf-8"?>
<hidari xmlns:i="http://www.w3.org/2001/
XMLSchema-instance">
<Favorites>
<Favorite>
<Love>.NET Framework</Love>
</Favorite>
<Favorite>
<Love>Programming</Love>
</Favorite>
<Favorite>
<Love>CSharp</Love>
</Favorite>
</Favorites>
<Age>27</Age>
<Address>Osaka</Address>
</hidari>
あとは…
必須項目と必須じゃない項目を作りたい

13年10月15日火曜日
あとは…
必須項目と必須じゃない項目を作りたい
バージョンアップで項目増えたり減ったりしたら
どうすんの?

13年10月15日火曜日
あとは…
必須項目と必須じゃない項目を作りたい
バージョンアップで項目増えたり減ったりしたら
どうすんの?
etc.

13年10月15日火曜日
詳しくはWebで
[データ コントラクトのバージョン管理]
(http://msdn.microsoft.com/ja-jp/
library/ms731138.aspx)
[ベスト プラクティス : データ コントラクト
のバージョン管理](http://
msdn.microsoft.com/ja-jp/library/
ms733832.aspx)

13年10月15日火曜日
5分間休憩
13年10月15日火曜日

More Related Content

Recently uploaded

LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルLoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルCRI Japan, Inc.
 
新人研修 後半 2024/04/26の勉強会で発表されたものです。
新人研修 後半        2024/04/26の勉強会で発表されたものです。新人研修 後半        2024/04/26の勉強会で発表されたものです。
新人研修 後半 2024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NTT DATA Technology & Innovation
 
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
LoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイスLoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイス
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイスCRI Japan, Inc.
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)Hiroshi Tomioka
 

Recently uploaded (7)

LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルLoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
 
新人研修 後半 2024/04/26の勉強会で発表されたものです。
新人研修 後半        2024/04/26の勉強会で発表されたものです。新人研修 後半        2024/04/26の勉強会で発表されたものです。
新人研修 後半 2024/04/26の勉強会で発表されたものです。
 
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
 
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
 
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
LoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイスLoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイス
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
 

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...
 

Xmlシリアライズ