Bridger Maxwell

Results 18 issues of Bridger Maxwell

When I deploy to production I'd like to exclude the sourcemap files in my static directory. I'd like a config option to exclude any "*.js.map" files so they aren't ever...

Amazon's Application Load Balancers are configured to shut down connections that haven't had traffic. Sending a ping on the connection every so often is enough to keep the connection alive....

enhancement

I'm curious if compression support has been considered in this package. I'd be interested in using it in my server-side app. Kitura developed this package for websocket compression which is...

enhancement

### What were you trying to do? I'm trying to generate a PDF with user-generated text in a lot of different languages / scripts. I'm using a font that includes...

bug
needs-triage

### What were you trying to do? I'm trying to generate a PDF with emojis. I'm using an embedded font, but if it is possible to use the system's emoji...

bug
needs-triage

I just spent a while debugging a recent change in behavior. It seems that `viewsPath` must be set before calling `add(templateEngine:)` or the `viewsPath` will be ignored. This was my...

I have a column declared to be of type Int64. However, this line doesn't compile: ``` let deviceID: Int64 = 3 let deviceUpdate = Update(devices, set: [(devices.name, name)]).where(devices.deviceId == deviceID)...

enhancement

I've got an array of strings I'd like to use as a single parameter for for a `WHERE IN` clause. `let documentIds: [String] = [....]` When I tried: ``` let...

enhancement

From the Postgres docs there are two ways to handle equality of columns, depending on how you'd like to handle null: > Ordinary comparison operators yield null (signifying "unknown"), not...

enhancement

I tried running my server with thread sanitizer enabled and it flagged several data races in InconingSocketManager.swift. My server uses websockets, which might be related to these data races. They...