Aryk Grosz

Results 30 issues of Aryk Grosz

When my model refreshes, I'm getting this error sometimes: ```ruby def read_point i = @position @position += 16 fail EWKBFormatError.new('Truncated data') if @ewkb.length < @position @ewkb.unpack("@#{i}#{@double_mark}#{@double_mark}@*") end ``` I'm getting...

If you don't put `initial: true`, it will still make the first one the initial state *magically*. What was the logic to requiring users to populate the aasm column with...

I know you can do through associations where the central table is a join table and you have two foreign keys, but what if you want to two levels on...

If you want to add and remove records to the redux-orm, you have to do it one-on-one. However it is a common use case that you would want to add...

type: Enhancement
layer: Database
layer: Model

Is this possible to do? Seems like redux-orm would be confused if there were multiple records with the same ID since it wouldn't know which one to fetch. Do you...

type: Enhancement
good first issue
layer: Database

Two questions: 1. Has anyone started writing types for the _newer_ version of this package? Maybe we can share in this doc and/or get something up on DefinitelyTyped. I know...

I believe it's coming from here: ```ts // 保存 imageSize const saveImageSize = () => { // 如果已经 success 了,就不做处理 if (this!.state!.imageSizes![index] && this!.state!.imageSizes![index].status !== 'loading') { return; } const...

Is there anyway to decouple the tab header from the tab body? What I mean is, one can create an Animated.Value and pass it in both to the header and...

```ruby class Entity < Grape::Entity expose :car, documentation: { type: String, values: ["foo", "bar"] } end ``` And then use it as validation with ```ruby params do requires :all, using:...

[Current Discussion](https://forums.expo.dev/t/branch-nativelink-is-it-supported/57157/4) [Ticket on Expo](https://github.com/expo/expo/issues/14631) I've read through the only other [ticket regarding Nativelink support](https://github.com/BranchMetrics/react-native-branch-deep-linking-attribution/issues/668). I'm on Expo Managed SDK 42, soon to be upgrading to SDK 43. **Even** SDK...