<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><channel rdf:about="https://www.bibsonomy.org/tag/examples"><title>BibSonomy bookmarks for /tag/examples</title><link>https://www.bibsonomy.org/tag/examples</link><description>BibSonomy RSS Feed for /tag/examples</description><items><rdf:Seq><rdf:li rdf:resource="https://tldr.inbrowser.app/"/><rdf:li rdf:resource="https://www.pement.org/sed/sed1line.txt"/><rdf:li rdf:resource="https://goessner.net/articles/JsonPath/index.html#e2"/><rdf:li rdf:resource="https://www.pinterest.com/mikiarian/"/><rdf:li rdf:resource="https://www.tungsteno.io/topic/geometry/"/><rdf:li rdf:resource="https://html5up.net/"/><rdf:li rdf:resource="http://kagglesolutions.com/"/><rdf:li rdf:resource="https://sketchpunk.bitbucket.io/"/><rdf:li rdf:resource="https://iquilezles.org/www/index.htm"/><rdf:li rdf:resource="https://forschungsdaten-thueringen.de/geschichten.html"/><rdf:li rdf:resource="https://www.devlinpeck.com/xapi-lrs"/><rdf:li rdf:resource="http://www.alpha-processor.com/developers/api_developer_form.shtml"/><rdf:li rdf:resource="http://home.k-town.de/~bloedow/main.html"/><rdf:li rdf:resource="http://www.evolution7.com/clients.html"/><rdf:li rdf:resource="http://animetheme.vill.edu/"/><rdf:li rdf:resource="https://www.heise.de/select/ct/2019/21/softlinks/yze3?wt_mc=pred.red.ct.ct212019.026.softlink.softlink"/><rdf:li rdf:resource="https://scikit-image.org/docs/dev/auto_examples/"/><rdf:li rdf:resource="https://ai.google/healthcare/"/><rdf:li rdf:resource="https://www.intel.ai/powering-precision-medicine-artificial-intelligence/#gs.ez1qrc"/><rdf:li rdf:resource="https://www.ibm.com/watson-health/products#1750196"/></rdf:Seq></items></channel><item rdf:about="https://tldr.inbrowser.app/"><title>tldr InBrowser.App</title><description>tldr InBrowser.App is an offline-capable PWA for tldr-pages. Fully runs in your browser. Zero API latency.</description><link>https://tldr.inbrowser.app/</link><dc:creator>acka47</dc:creator><dc:date>2025-11-14T10:51:57+01:00</dc:date><dc:subject>bash examples linux manpages </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;tldr InBrowser.App is an offline-capable PWA for tldr-pages. Fully runs in your browser. Zero API latency.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/bash"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/linux"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/manpages"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.pement.org/sed/sed1line.txt"><title>sed1line.txt</title><description></description><link>https://www.pement.org/sed/sed1line.txt</link><dc:creator>jil</dc:creator><dc:date>2023-05-17T12:55:11+02:00</dc:date><dc:subject>examples liner one sed </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2023-05-17T12:55:11+02:00&#034; href=&#034;https://www.pement.org/sed/sed1line.txt&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;https://www.pement.org/sed/sed1line.txt&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/liner"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/one"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/sed"/></rdf:Bag></taxo:topics></item><item rdf:about="https://goessner.net/articles/JsonPath/index.html#e2"><title>JSONPath - XPath for JSON</title><description>/store/book/author 	$.store.book[*].author 	the authors of all books in the store
//author 	$..author 	all authors
/store/* 	$.store.* 	all things in store, which are some books and a red bicycle.
/store//price 	$.store..price 	the price of everything in the store.
//book[3] 	$..book[2] 	the third book
//book[last()] 	$..book[(@.length-1)]
$..book[-1:] 	the last book in order.
//book[position()&lt;3] 	$..book[0,1]
$..book[:2] 	the first two books
//book[isbn] 	$..book[?(@.isbn)] 	filter all books with isbn number
//book[price&lt;10] 	$..book[?(@.price&lt;10)] 	filter all books cheapier than 10
//* 	$..* 	all Elements in XML document. All members of JSON structure. </description><link>https://goessner.net/articles/JsonPath/index.html#e2</link><dc:creator>jil</dc:creator><dc:date>2023-01-26T17:07:32+01:00</dc:date><dc:subject>documentation examples json jsonpath path </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;/store/book/author 	$.store.book[*].author 	the authors of all books in the store
//author 	$..author 	all authors
/store/* 	$.store.* 	all things in store, which are some books and a red bicycle.
/store//price 	$.store..price 	the price of everything in the store.
//book[3] 	$..book[2] 	the third book
//book[last()] 	$..book[(@.length-1)]
$..book[-1:] 	the last book in order.
//book[position()&amp;lt;3] 	$..book[0,1]
$..book[:2] 	the first two books
//book[isbn] 	$..book[?(@.isbn)] 	filter all books with isbn number
//book[price&amp;lt;10] 	$..book[?(@.price&amp;lt;10)] 	filter all books cheapier than 10
//* 	$..* 	all Elements in XML document. All members of JSON structure. &lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/documentation"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/json"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/jsonpath"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/path"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.pinterest.com/mikiarian/"><title>פיתוח סביבות למידה, מינהל הפיתוח, משרד החינוך </title><description>תחום פיתוח סביבות למידה, באגף מיפוי ותכנון, מינהל הפיתוח, חוקר ומקדם את עיצוב מרחב הלמידה, בפנים ומחוץ למבנה החינוכי, כטקסט פדגוגי ובהלימה לאסטרטגיות חינוכיות</description><link>https://www.pinterest.com/mikiarian/</link><dc:creator>yish</dc:creator><dc:date>2022-11-27T12:48:10+01:00</dc:date><dc:subject>classrooms design examples fls learning schools spaces yvc-fls בתי כיתות למידה מרחבי ספר עיצוב </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;תחום פיתוח סביבות למידה, באגף מיפוי ותכנון, מינהל הפיתוח, חוקר ומקדם את עיצוב מרחב הלמידה, בפנים ומחוץ למבנה החינוכי, כטקסט פדגוגי ובהלימה לאסטרטגיות חינוכיות&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/classrooms"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/design"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/fls"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/learning"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/schools"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/spaces"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/yvc-fls"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/בתי"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/כיתות"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/למידה"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/מרחבי"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ספר"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/עיצוב"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.tungsteno.io/topic/geometry/"><title>Geometry | Tungsteno</title><description>Tungsteno is a project whose goal is to make mathematics accessible to everybody, completely free, based on open collaboration and the best pedagogical tools</description><link>https://www.tungsteno.io/topic/geometry/</link><dc:creator>analyst</dc:creator><dc:date>2021-07-01T08:32:28+02:00</dc:date><dc:subject>collection examples geometry visualization </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Tungsteno is a project whose goal is to make mathematics accessible to everybody, completely free, based on open collaboration and the best pedagogical tools&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/collection"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/geometry"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/visualization"/></rdf:Bag></taxo:topics></item><item rdf:about="https://html5up.net/"><title>HTML5 UP! </title><description>Responsive HTML5 and CSS3 Site Templates</description><link>https://html5up.net/</link><dc:creator>analyst</dc:creator><dc:date>2021-06-09T10:27:07+02:00</dc:date><dc:subject>css examples html template web-dev </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Responsive HTML5 and CSS3 Site Templates&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/css"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/template"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/web-dev"/></rdf:Bag></taxo:topics></item><item rdf:about="http://kagglesolutions.com/"><title>Kaggle Past Competitions</title><description>Winning solutions of Kaggle&#039;s past competitions from grandmasters. If you are facing a data science problem, there is a good chance that you can find inspiration here!</description><link>http://kagglesolutions.com/</link><dc:creator>analyst</dc:creator><dc:date>2021-03-15T18:55:49+01:00</dc:date><dc:subject>examples kaggle </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Winning solutions of Kaggle&amp;#039;s past competitions from grandmasters. If you are facing a data science problem, there is a good chance that you can find inspiration here!&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/kaggle"/></rdf:Bag></taxo:topics></item><item rdf:about="https://sketchpunk.bitbucket.io/"><title>SketchpunkLabs - Prototypes</title><description>This site contains many samples and prototypes that I have developed. All the code for the samples are available on bitbucket and people are free to do with it what they will. Ideally its best if you use the latest version of the Chrome browser, I tend to use the latest available APIs and features as I prototype and learn new subjects.

* 2D Prototypes 
* 3D Fungi Prototypes 
* SDF / Ray Marching Prototypes 
* Three.js Prototypes 
* 3D Shader Prototypes 
* UI Web Components 
* Misc</description><link>https://sketchpunk.bitbucket.io/</link><dc:creator>analyst</dc:creator><dc:date>2021-01-20T20:25:45+01:00</dc:date><dc:subject>3D collection examples graphics </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;This site contains many samples and prototypes that I have developed. All the code for the samples are available on bitbucket and people are free to do with it what they will. Ideally its best if you use the latest version of the Chrome browser, I tend to use the latest available APIs and features as I prototype and learn new subjects.

* 2D Prototypes 
* 3D Fungi Prototypes 
* SDF / Ray Marching Prototypes 
* Three.js Prototypes 
* 3D Shader Prototypes 
* UI Web Components 
* Misc&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/3D"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/collection"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/graphics"/></rdf:Bag></taxo:topics></item><item rdf:about="https://iquilezles.org/www/index.htm"><title>Inigo Quilez :: fractals, computer graphics, mathematics, shaders, demoscene and more</title><description>These are articles about the techniques I develop and lessons I learnt while toying or working with computer graphics. Most of it is self-taught and there&#039;s lots of reinventing the wheel (which I recommend) but also some innovative and new discoveries that often times are not documented anywhere else (and if any of this content becomes part of your paper or the center of your PhD thesis, I feel it&#039;d be fair to mention this website). </description><link>https://iquilezles.org/www/index.htm</link><dc:creator>analyst</dc:creator><dc:date>2021-01-20T20:19:43+01:00</dc:date><dc:subject>2020 collection examples fractal graphics shader </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;These are articles about the techniques I develop and lessons I learnt while toying or working with computer graphics. Most of it is self-taught and there&amp;#039;s lots of reinventing the wheel (which I recommend) but also some innovative and new discoveries that often times are not documented anywhere else (and if any of this content becomes part of your paper or the center of your PhD thesis, I feel it&amp;#039;d be fair to mention this website). &lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/2020"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/collection"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/fractal"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/graphics"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/shader"/></rdf:Bag></taxo:topics></item><item rdf:about="https://forschungsdaten-thueringen.de/geschichten.html"><title>Geschichten - Kompetenznetzwerk Forschungsdatenmanagement Thüringen</title><description></description><link>https://forschungsdaten-thueringen.de/geschichten.html</link><dc:creator>blostben</dc:creator><dc:date>2020-10-28T14:49:17+01:00</dc:date><dc:subject>Beispiele Datenkompetenz data-literacy examples </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2020-10-28T14:49:17+01:00&#034; href=&#034;https://forschungsdaten-thueringen.de/geschichten.html&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;https://forschungsdaten-thueringen.de/geschichten.html&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Beispiele"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Datenkompetenz"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/data-literacy"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.devlinpeck.com/xapi-lrs"><title>xAPI + LRS: Everything You Need to Know in 2020</title><description>Learn everything you need to know about the Experience API (xAPI, previously known as Tin Can API) and Learning Record Stores (LRSs) in 2020.</description><link>https://www.devlinpeck.com/xapi-lrs</link><dc:creator>ereidt</dc:creator><dc:date>2020-08-02T12:56:12+02:00</dc:date><dc:subject>LRS adoption examples learninganalytics resources statement tools xAPI </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Learn everything you need to know about the Experience API (xAPI, previously known as Tin Can API) and Learning Record Stores (LRSs) in 2020.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/LRS"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/adoption"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/learninganalytics"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/resources"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/statement"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/tools"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xAPI"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.alpha-processor.com/developers/api_developer_form.shtml"><title>API&#039;s_Developer_Program</title><description></description><link>http://www.alpha-processor.com/developers/api_developer_form.shtml</link><dc:creator>selm</dc:creator><dc:date>2020-07-25T23:13:23+02:00</dc:date><dc:subject>Lesezeichen-Symbolleiste public eL3€7 code xml html examples </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2020-07-25T23:13:23+02:00&#034; href=&#034;http://www.alpha-processor.com/developers/api_developer_form.shtml&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.alpha-processor.com/developers/api_developer_form.shtml&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Lesezeichen-Symbolleiste"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/public"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/eL3€7"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/code"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xml"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/></rdf:Bag></taxo:topics></item><item rdf:about="http://home.k-town.de/~bloedow/main.html"><title>C.WINDOWSNETSCAPEUSERFRANZ</title><description></description><link>http://home.k-town.de/~bloedow/main.html</link><dc:creator>selm</dc:creator><dc:date>2020-07-25T23:13:23+02:00</dc:date><dc:subject>Lesezeichen-Symbolleiste public eL3€7 code xml html examples </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2020-07-25T23:13:23+02:00&#034; href=&#034;http://home.k-town.de/~bloedow/main.html&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://home.k-town.de/~bloedow/main.html&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Lesezeichen-Symbolleiste"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/public"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/eL3€7"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/code"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xml"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/></rdf:Bag></taxo:topics></item><item rdf:about="http://www.evolution7.com/clients.html"><title>Evolution_7_-_Clients</title><description></description><link>http://www.evolution7.com/clients.html</link><dc:creator>selm</dc:creator><dc:date>2020-07-25T23:13:23+02:00</dc:date><dc:subject>Lesezeichen-Symbolleiste public eL3€7 code xml html examples </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2020-07-25T23:13:23+02:00&#034; href=&#034;http://www.evolution7.com/clients.html&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://www.evolution7.com/clients.html&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Lesezeichen-Symbolleiste"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/public"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/eL3€7"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/code"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xml"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/></rdf:Bag></taxo:topics></item><item rdf:about="http://animetheme.vill.edu/"><title>Welcome_to_Anime_Theme!</title><description></description><link>http://animetheme.vill.edu/</link><dc:creator>selm</dc:creator><dc:date>2020-07-25T23:13:23+02:00</dc:date><dc:subject>Lesezeichen-Symbolleiste public eL3€7 code xml html examples </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2020-07-25T23:13:23+02:00&#034; href=&#034;http://animetheme.vill.edu/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;http://animetheme.vill.edu/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/Lesezeichen-Symbolleiste"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/public"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/eL3€7"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/code"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/xml"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/html"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.heise.de/select/ct/2019/21/softlinks/yze3?wt_mc=pred.red.ct.ct212019.026.softlink.softlink"><title>KI Examples collected by Heise Magazine</title><description></description><link>https://www.heise.de/select/ct/2019/21/softlinks/yze3?wt_mc=pred.red.ct.ct212019.026.softlink.softlink</link><dc:creator>tomhanika</dc:creator><dc:date>2019-12-18T09:35:27+01:00</dc:date><dc:subject>AI KI examples play </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2019-12-18T09:35:27+01:00&#034; href=&#034;https://www.heise.de/select/ct/2019/21/softlinks/yze3?wt_mc=pred.red.ct.ct212019.026.softlink.softlink&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;https://www.heise.de/select/ct/2019/21/softlinks/yze3?wt_mc=pred.red.ct.ct212019.026.softlink.softlink&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/AI"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/KI"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/play"/></rdf:Bag></taxo:topics></item><item rdf:about="https://scikit-image.org/docs/dev/auto_examples/"><title>General examples — scikit-image</title><description>General-purpose and introductory examples for scikit-image.</description><link>https://scikit-image.org/docs/dev/auto_examples/</link><dc:creator>analyst</dc:creator><dc:date>2019-12-11T19:37:19+01:00</dc:date><dc:subject>examples image-processing library python </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;General-purpose and introductory examples for scikit-image.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/image-processing"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/library"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/python"/></rdf:Bag></taxo:topics></item><item rdf:about="https://ai.google/healthcare/"><title>Healthcare and biosciences – Google AI</title><description></description><link>https://ai.google/healthcare/</link><dc:creator>nosebrain</dc:creator><dc:date>2019-11-07T15:48:49+01:00</dc:date><dc:subject>ai examples medicine </dc:subject><content:encoded>&lt;a itemprop=&#034;url&#034; data-versiondate=&#034;2019-11-07T15:48:49+01:00&#034; href=&#034;https://ai.google/healthcare/&#034; rel=&#034;nofollow&#034; class=&#034;description-link&#034;&gt;https://ai.google/healthcare/&lt;/a&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ai"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/medicine"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.intel.ai/powering-precision-medicine-artificial-intelligence/#gs.ez1qrc"><title>Powering Precision Medicine with Artificial Intelligence - Intel AI</title><description>identify 23 subjects at risk for cardiovascular disease that were not detected by traditional statistical methods</description><link>https://www.intel.ai/powering-precision-medicine-artificial-intelligence/#gs.ez1qrc</link><dc:creator>nosebrain</dc:creator><dc:date>2019-11-07T15:20:07+01:00</dc:date><dc:subject>ai examples medicine </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;identify 23 subjects at risk for cardiovascular disease that were not detected by traditional statistical methods&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ai"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/medicine"/></rdf:Bag></taxo:topics></item><item rdf:about="https://www.ibm.com/watson-health/products#1750196"><title>Watson Health Healthcare Products listing | IBM</title><description>Get a view of the full spectrum of IBM Watson Health products. These products are addressing healthcare’s biggest challenges.</description><link>https://www.ibm.com/watson-health/products#1750196</link><dc:creator>nosebrain</dc:creator><dc:date>2019-11-07T15:18:01+01:00</dc:date><dc:subject>ai examples medicine </dc:subject><content:encoded>&lt;span itemprop=&#034;description&#034;&gt;Get a view of the full spectrum of IBM Watson Health products. These products are addressing healthcare’s biggest challenges.&lt;/span&gt;</content:encoded><taxo:topics><rdf:Bag><rdf:li rdf:resource="https://www.bibsonomy.org/tag/ai"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/examples"/><rdf:li rdf:resource="https://www.bibsonomy.org/tag/medicine"/></rdf:Bag></taxo:topics></item></rdf:RDF>