Alexander Mills

Results 295 issues of Alexander Mills

I assume with golang, finding the file/line number is more expensive. Is there a way to turn that off somehow in production?

This worked fine for me so far. Just curious why the use for namespaces? when I ran this: ```bash schemats generate -c 'postgres://postgres:postgres@localhost/postgres' -t 'user_table' -o schemas/user.ts ``` I got:...

I used this command: schemats generate -c 'postgres://postgres:postgres@localhost/postgres' -t 'user_map_table' -o schemas/user-map.ts and I got: ![Screenshot from 2020-02-23 23-04-53](https://user-images.githubusercontent.com/11139560/75133790-ed049000-5690-11ea-8536-526b555f571f.png) but shouldn't it be `object` not `Object`? ![Screenshot from 2020-02-23 23-05-11](https://user-images.githubusercontent.com/11139560/75133803-f68df800-5690-11ea-8f88-246d5dba9e9c.png)...

I am looking forward to using this plugin for Mozilla, so far it is sort of working!! Btw I am using RequireJS. Everything is symettrical. Views, collections, models are all...

Can someone just create a Github repo that we can clone that has everything setup? with a couple bash scripts? It would really help people so they can get started...

Is NAN still the state of the art way to create Node.js addons? Looking at a repo like this: https://github.com/nodejs/node-addon-examples/tree/master/1_hello_world it looks like NAPI has overtaken NAN, or? this info...

I have this in my html ```html ``` on the front-end, I cannot find a global variable, that I can use to generated formatted strings. is there a global variable?

implementation: python
type: bug
type: breaking change
implementation: javascript
help wanted

in a docker-compose.yml file, you can use: `depends_on` to declare dependencies between containers, which should affect the booting order which may make it more efficient and less error prone: https://docs.docker.com/compose/compose-file/

It would be nice to see how to safely remove replicas from the cluster. I only need 1 or 2 replicas in my case. For whatever reason, ChangeStreams seem to...

Can this lib convert from RGB to HSL too? by the way I saw this answer: https://stackoverflow.com/questions/8022885/rgb-to-hsv-color-in-javascript I converted the function to TS and there is a bug: ```typescript export...