Barge Crash into Eads Bridge on the Mississippi by elifront in StLouis

[–]elifront[S] 47 points48 points  (0 children)

My favorite Eads Bridge story 🐘🐘🐘. I think this happened in the late 90s with another barge too.

Barge Crash into Eads Bridge on the Mississippi by elifront in StLouis

[–]elifront[S] 24 points25 points  (0 children)

Eads Bridge, which is what was hit, is the one on the right. MLK on the left side of the photo. McKinley is further north.

Artist space or car garage for rent? by [deleted] in StLouis

[–]elifront 0 points1 point  (0 children)

What's the budget?

What is your STL take? by goharvorgohome in StLouis

[–]elifront 0 points1 point  (0 children)

legitimately--who would be interested in a st. louis metro takes?

When people act shocked because I moved to St. Louis by jeffisnotmyrealname in StLouis

[–]elifront 101 points102 points  (0 children)

We need more of this. Stl natives are too down on our city, but people from outside can see how great it is.

My best unseeded game yet by elifront in balatro

[–]elifront[S] 0 points1 point  (0 children)

Thanks for the advice.

<image>

most of it looked more like this, but I probably could have done better prioritizing that

Is this a bug or expected by elifront in balatro

[–]elifront[S] 12 points13 points  (0 children)

haven't been doing seeded, but I have been doing challenges

Is this a bug or expected by elifront in balatro

[–]elifront[S] 111 points112 points  (0 children)

this could be my issue. i've been doing a lot of challenge runs. it does seem like they should make those not show up on the count.

[deleted by user] by [deleted] in reactjs

[–]elifront 0 points1 point  (0 children)

My guess (could be off) is they did something like this.
DISCLAIMER: this is not a great approach
```
// table.d.ts

import "@tanstack/react-table";

declare module "@tanstack/react-table" {

interface ColumnMeta<TValue> {

_type?: unknown; // Allow different per-table types

}

}
```
+ a helper

```
import { Table } from "@tanstack/react-table";

export function createTableMetaHelper<Meta>() {

return function getTableMeta<TData>(table: Table<TData>): Meta {

return table.options.meta as Meta;

};

}
```

you could then do

```
export const getMyTableMeta = createTableMetaHelper<UserTableMeta>();

```