Harshdeep Singh

Results 7 issues of Harshdeep Singh

Here I am, the person who has to request a self-hosted solution for anything that relies on a 3rd party ^^ The feature I'd like to request is to allow...

The SDK is unnecessarily allocating 2kb of garbage every API call for a simple URL building operation. Replaced the allocation of a new `StringBuilder` each time with a `ThreadStatic` cached...

Relevant Article: https://martinjoo.dev/laravel-pipelines Illuminate pipelines look like: ```php app(Pipeline::class) ->send('This is the HTML content of a blog post') ->through([ ModerateContent::class, RemoveScriptTags::class, MinifyHtml::class, ]) ->then(function (string $content) { return Post::create([ 'content'...

enhancement

In my application, I have to manually get the route binding-resolved model from the `ActionRequest` in the `authorize` method. ```php public function authorize(ActionRequest $request): void { Gate::authorize('view', [$request->route('attempt')]); } public...

### What it does Allows the user to override the zod schema generated for an openapi schema via an extension property: ```yml NullableDateTime: description: Date and time in ISO 8601...

https://plane.so/ is a self-hosted/cloud open source project management tool intended for use by developers. I have been using it for a while and I quite like it. 1. If I...

enhancement
help wanted

### Feature description Switch user during files widget remote connection. Use Case: On our prod server, we allow SSH into non-root users that are responsible for the deployment of a...

enhancement
triage