Skip to content

Commit

Permalink
add events config
Browse files Browse the repository at this point in the history
  • Loading branch information
softinio committed Sep 22, 2024
1 parent c73c22b commit e3b4c84
Show file tree
Hide file tree
Showing 2 changed files with 132 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![GitHub Pages](https://github.com/softinio/scalanews/actions/workflows/ci.yml/badge.svg)

# Scala News
# Scala News

For more information have a look at our [about us](docs/Resources/About.md)

Expand All @@ -13,7 +13,10 @@ Add yourself with details of your rss path to our directory (see next section be

Create a PR adding your blog to the `bloggers` array in our [config.json file](config.json)

## Created By
## Do you organize a scala meetup or conference? Want to add it to our upcoming meetup and events directory?

[Salar Rahmanian](https://www.softinio.com)
Create a PR adding your meetup or conference to the `meetups` or `conferences` array in our [events.json file](events.json)

## Created By

[Salar Rahmanian](https://www.softinio.com)
126 changes: 126 additions & 0 deletions events.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
{
"meetups": [
{
"name": "Bay Area Scala",
"meetup_url": null,
"luma_url": "https://lu.ma/scala",
"other_url": "https://bayareascala.com",
"locations": [
{
"city": "San Francisco",
"state": "California",
"country": "USA"
},
{
"city": "Berkeley",
"state": "California",
"country": "USA"
},
{
"city": "Walnut Creek",
"state": "California",
"country": "USA"
},
{
"city": "San Jose",
"state": "California",
"country": "USA"
},
{
"city": "Mountain View",
"state": "California",
"country": "USA"
},
{
"city": "Cupertino",
"state": "California",
"country": "USA"
},
{
"city": "Palo Alto",
"state": "California",
"country": "USA"
}
],
"description": "Bay Area Scala is a group for functional programmers who use Scala to build software who are based in San Francisco Bay Area or nearby. We welcome programmers of all skill levels to our events."
},
{
"name": "SF Scala",
"meetup_url": "http://www.meetup.com/SF-Scala/",
"luma_url": "https://lu.ma/scala",
"other_url": "https://www.sfscala.org/",
"locations": [
{
"city": "San Francisco",
"state": "California",
"country": "USA"
}
],
"description": "SF Scala is a group for functional programmers who use Scala to build software who are based in San Francisco or nearby. We welcome programmers of all skill levels to our events."
},
{
"name": "Scala Bay",
"meetup_url": "https://www.meetup.com/scala-bay/",
"luma_url": "https://lu.ma/scala",
"other_url": "https://bayareascala.com",
"locations": [
{
"city": "Palo Alto",
"state": "California",
"country": "USA"
},
{
"city": "Mountain View",
"state": "California",
"country": "USA"
},
{
"city": "Cupertino",
"state": "California",
"country": "USA"
},
{
"city": "San Jose",
"state": "California",
"country": "USA"
}
],
"description": "Scala Bay is a group for functional programmers who use Scala to build software are based near Palo Alto / Mountain View / Cupertino (South of Bay Area). We welcome programmers of all skill levels to our events."
}
],
"conferences": [
{
"name": "Scale By The Bay",
"conference_url": "https://scale.bythebay.io/",
"luma_url": null,
"other_url": "http://functional.tv/",
"locations": [
{
"city": "San Francisco",
"state": "California",
"country": "USA"
}
],
"description": "Scale By the Bay is a developers' own conference. It is a community conference with the best Bay Area meetups and technologies powering the global leaders in data, operations, ML, and the art and craft of software engineering."
},
{
"name": "Scala Days",
"conference_url": "https://scaladays.org",
"luma_url": null,
"other_url": "https://www.youtube.com/c/ScalaDaysConferences",
"locations": [
{
"city": "Seattle",
"state": "Washington",
"country": "USA"
},
{
"city": "Madrid",
"state": null,
"country": "Spain"
}
],
"description": "Scala Days brings developers from around the globe to share their experiences and new ideas around creating applications with Scala and related technologies, like Spark, Kafka, and Akka. Scala Days provides a unique opportunity for Scala users to interact with the contributors to the language and related technologies and connect with fellow developers."
}
]
}

0 comments on commit e3b4c84

Please sign in to comment.