Skip to content

Commit

Permalink
Merge pull request #4607 from szarnyasg/ams-meetup2
Browse files Browse the repository at this point in the history
Add meetup placeholder
  • Loading branch information
szarnyasg authored Jan 20, 2025
2 parents 0a357f1 + 9680524 commit ce19470
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 1 deletion.
37 changes: 37 additions & 0 deletions _events/2025-02-20-duckdb-amsterdam-meetup-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: post
event: true
title: "DuckDB Amsterdam Meetup #2"
author: "DuckDB meetup organizers"
thumb: "/images/blog/thumbs/duckdb-amsterdam-meetup-2.svg"
image: "/images/blog/thumbs/duckdb-amsterdam-meetup-2.png"
excerpt: ""
tags: ["meetup"]
---

<img src="/images/blog/thumbs/duckdb-amsterdam-meetup-2.svg"
alt="DuckDB Amsterdam Meetup Splashscreen"
width="680"
/>

We are excited to announce the [second DuckDB Amsterdam meetup](https://www.meetup.com/duckdb/events/304415344/), co-organized by [DuckDB Labs](https://duckdblabs.com/) and [Xebia](https://xebia.com/).

### Timetable

| Time | Title | Presenter(s) |
|------:|:--------|:-------------|
| 18:00 | _Venue opens_ | |
| 18:15 | **Ducklake: A modern data platform combining DuckDB with the governance capabilities of Unity Catalog** | Daniel Tom and Frank Mbonu _([Xebia](https://xebia.com/))_ |
| 18:40 | **Using DuckDB in a spreadsheet with WASM** | Chris Laffra _([PySheets](https://pysheets.app/))_ |
| 19:05 | **TBA** | Marco Slot _([Crunchy Data](https://www.crunchydata.com/))_ |
| 19:30 | _Drinks and snacks_ | |

The venue is provided by [Xebia](https://xebia.com/).

### Registration Process

Attendance is free. Please RSVP on [meetup.com](https://www.meetup.com/duckdb/events/304415344/).

### Inquiries

Please contact Kelly de Smit at [[email protected]](mailto:[email protected]) if you have any questions.
9 changes: 8 additions & 1 deletion docs/configuration/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@ The values of configuration options can be queried via the [`current_setting()`

```sql
SELECT current_setting('memory_limit') AS memlimit;
SELECT value AS memlimit FROM duckdb_settings() WHERE name = 'memory_limit';
```

Or:

```sql
SELECT value AS memlimit
FROM duckdb_settings()
WHERE name = 'memory_limit';
```

## Examples
Expand Down
Binary file added images/blog/thumbs/duckdb-amsterdam-meetup-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit ce19470

Please sign in to comment.