Affan Shahid
Affan Shahid
#### Current Behavior The prompt does not take input on a new line. Behaves as if $line_break was not there #### Expected Behavior The prompt should take input on the...
I have added context to the global logger using ```go log.Logger = log.With().Str("component", "Global").Logger() ``` Right now the log will read something like: ```go ... some message component=Global ``` When...
Given a schema: ``` type Subscription { status(acdEngineId: Int!): JobStatus! } type JobStatus { jobStatus: String! } ``` and types: ``` export interface JobStatus { jobStatus: string; } ``` The...
I see colWidth is referenced in the docs, is there some way to get the colWidth value?
## Problem statement I was trying to create something similar to what was listed in the docs at: https://github.com/go-swagger/go-swagger/blob/master/docs/use/spec/params.md However I kept getting strange errors, I ended up copying the...
Is it possible to generate unexported mock types? i.e input: ```go package user type userRepo interface {} ``` output: ```go package user type mockUserRepo struct {} ``` This way mocks...
Tools like EncloseJS take V8 snapshots for compilation, thus code optimization is not possible while running and performance is degraded. Using node-packer what would be the performance difference between running...
Using the default typings (no codegen) with the `Prisma` class. When I trying to run a query, I get the following type error, even though the code runs as expected....
The settings are not listed in the defaults and when added manually complain about being unrecognized. I see this was maybe fixed in another issue? VSCode: 1.30.2 Ext: 0.2.3
I know this library has very little to do with log4j but it had a nice feature where you can color throwables (errors) differently from regular messages. Is that possible...