# live code

Published articles for live code.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Intro to Compose - Live code

DevFeed: [Intro to Compose - Live code](<https://devfeed.tech/articles/intro-to-compose-live-code-32061.md>)

Original publisher: [Read original article](<https://www.maiatoday.net/p/intro-to-compose-live-code/>)

Published: 2022-02-16T18:51:01Z

Content type: tutorial

Language: en

Sources: [maiatoday](<https://devfeed.tech/sources/maiatoday.md>)

Topics: [Jetpack Compose](<https://devfeed.tech/topics/jetpack-compose.md>), [Framework](<https://devfeed.tech/topics/framework.md>), [material-components](<https://devfeed.tech/topics/material-components.md>)

Tags: [animation](<https://devfeed.tech/tags/animation.md>), [code](<https://devfeed.tech/tags/code.md>), [components](<https://devfeed.tech/tags/components.md>), [compose](<https://devfeed.tech/tags/compose.md>), [demo](<https://devfeed.tech/tags/demo.md>), [framework](<https://devfeed.tech/tags/framework.md>), [jetpack](<https://devfeed.tech/tags/jetpack.md>), [jetpack-compose](<https://devfeed.tech/tags/jetpack-compose.md>), [live](<https://devfeed.tech/tags/live.md>), [live-code](<https://devfeed.tech/tags/live-code.md>), [material-components](<https://devfeed.tech/tags/material-components.md>)

### AI overview

An introductory Jetpack Compose session combines a broad overview with a live coding demonstration covering basic usage, Material components, and a small animation. It also summarizes what is new in Jetpack Compose 1.1.

### Source excerpt

A broad strokes intro to Jetpack Compose followed by a live code demo taster of what it is like to use this framework. The demo ranges from basic use, a bit of Material components and one small animation. Hosted by DevUG. In the second part of the event, Thomas gives us a summary of what's new in Jetpack Compose 1.1 Slides

## Embedded MapReduce with Flambo

DevFeed: [Embedded MapReduce with Flambo](<https://devfeed.tech/articles/embedded-mapreduce-with-flambo-32121.md>)

Original publisher: [Read original article](<https://adambard.com/blog/embedded-mapreduce-with-flambo/>)

Published: 2014-08-18T00:00:00Z

Content type: tutorial

Language: en

Sources: [Adam Bard](<https://devfeed.tech/sources/adam-bard.md>)

Topics: [Clojure](<https://devfeed.tech/topics/clojure.md>), [Apache Spark](<https://devfeed.tech/topics/spark.md>), [data-processing](<https://devfeed.tech/topics/data-processing.md>), [Library](<https://devfeed.tech/topics/library.md>), [Code](<https://devfeed.tech/topics/code.md>), [IO](<https://devfeed.tech/topics/io.md>), [Job](<https://devfeed.tech/topics/job.md>), [Scala](<https://devfeed.tech/topics/scala.md>)

Tags: [clojure](<https://devfeed.tech/tags/clojure.md>), [code](<https://devfeed.tech/tags/code.md>), [data-processing](<https://devfeed.tech/tags/data-processing.md>), [io](<https://devfeed.tech/tags/io.md>), [jobs](<https://devfeed.tech/tags/jobs.md>), [live-code](<https://devfeed.tech/tags/live-code.md>), [scala](<https://devfeed.tech/tags/scala.md>), [spark](<https://devfeed.tech/tags/spark.md>)

### AI overview

This tutorial introduces Flambo, a Clojure wrapper for Apache Spark, through a word-count example. It compares a reducers-based implementation with Flambo, noting that Flambo handled a 17.6-million-line dataset without the crash encountered by the reducers version and can also submit jobs to an existing Spark cluster.

### Source excerpt

I recently stumbled across a neat library called Flambo. Flambo is a clojure wrapper for Spark, and it does a really great job keeping everything nice and Clojure-y. I wanted to show you so you can enjoy it too!