Cris Ward

Results 66 comments of Cris Ward

- Version of dokku you use: 0.2.? - 0.4.13 (older one being retired next week) - Non-core plugins you use - dokku-apt - mariadb - redis - lets encrypt -...

@asterite the only addition may be to include the version. Npm does this with the @ symbol so ```bash crystal add https://github.com/kemalcr/[email protected] ``` No version gets latest. Prefer the crystal...

``` crystal deps add https://github.com/kemalcr/[email protected] ``` Seems pretty nice to me. I realise install is already there, but if `add` became `install` it would mimic npm even more, which could...

Ok. Thought it just did the same as `crystal deps`. But if that's what it does, make sense to use `add`. Thanks for the clarification.

Wrapping this component in the component outlined here - `ViewPagerAndroidContainer` https://github.com/facebook/react-native/issues/13463#issuecomment-296423537 Worked for me.

There are some short codes sometimes used for emojis `:smile:` = :smile: but I also think this would be good.

When a database is created, the 'Encoding' and 'Collation' are set. The driver should probably detect this and set it to be the same, instead of being hard coded. I'll...

Something like this give us the correct settings for the database. `SELECT DEFAULT_CHARACTER_SET_NAME, DEFAULT_COLLATION_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = 'db_name'` We just then need to convert the names to the...

The full list for the connected database can be found with `SHOW COLLATION`, the id column just needs converting to a Unit8 based on the result from the above query.

It look like this info may already be retrieved during the handshake - https://github.com/crystal-lang/crystal-mysql/blob/master/src/mysql/packets.cr#L20 however I've done some manual testing and the handshake seems to return 33 / utf8_general_ci even...