Benjamin Gudehus

Results 79 comments of Benjamin Gudehus

I see a chance, that something similar to module federation will be much easier and more elegant to implement with Deno and Aleph than with Node, Webpack 5 and NextJS...

Maybe `ow.not` can be introduced: ~~~js ow(1, ow.not.undefined) ow(undefined, ow.optional.not.undefined) ~~~ Then again, my usecase might be too specific. Are there any other usecases where `ow.not` might be useful?

My plan is to allow replacement of `` via a new prop. ~~~js // Select.tsx {isLoading ? : } ~~~ Maybe there should also be an `icon` property in the...

**Update:** I've tested if the theme for `Menu.Group.title` is still applied, when `title` is an element/object instead of a string. Seems to work fine. ~~~jsx export const localTheme = ()...

> I always get a client_conversation event. So pretty much with any chat message in any direction. I started coding for my bot a few months ago, based on hangupsjs,...

`GuiTest` is now part of `testfx-legacy` and only available from Maven Central or BinTray's JCenter (i.e. currently not from Sonatype Snapshots).

Here is a very small example for TestFX 4 (it uses `testfx-core` and `testfx-junit`): ![testfx-contacts-01](https://cloud.githubusercontent.com/assets/496255/7208023/0141e974-e53e-11e4-85df-cfa70e4befb7.png) ``` java import java.util.Objects; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.beans.property.SimpleStringProperty; import javafx.beans.property.StringProperty; import javafx.geometry.Insets; import...

You can change the order of these statements in `start()` and see how some tests will fail, because of wrong initialization order: - `activePerson.bind(...)` - `activePerson.addListener(...)` - `peopleList.getItems().setAll(...)` Also: I...

> My application resides in a separate public class and package. I don't want to write tests in the same package as my application and looking for ways to launch...