indeyets
Repos
82
Followers
112
Following
9

Events

Created at 1 day ago
issue comment
Lora name

Thanks for pointing this out! I wasn't aware of the other usage when I first wrote the paper. Hopefully the context will make it clear.

context will make it clear, but it will still be a confusion because search-engines would mix the results. please consider using different name in the long term

Created at 5 days ago
indeyets delete branch ci-make-use-of-push-variable-input
Created at 1 week ago

ci: make use of inputs.push in docker workflow

Merge pull request #1593 from FreeFeed/ci-make-use-of-push-variable-input

ci: make use of inputs.push in docker workflow

Created at 1 week ago
pull request closed
ci: make use of inputs.push in docker workflow
Created at 1 week ago
delete branch
indeyets delete branch ci-fix-github-action-syntax
Created at 1 week ago

ci: fix github action syntax

Merge pull request #615 from FreeFeed/ci-fix-github-action-syntax

ci: fix github action syntax

Created at 1 week ago
pull request closed
ci: fix github action syntax
Created at 1 week ago
indeyets delete branch move-docker-images-to-ghcr.io
Created at 1 week ago

move docker images to ghcr.io

Merge pull request #75 from FreeFeed/move-docker-images-to-ghcr.io

move docker images to ghcr.io

Created at 1 week ago
pull request closed
move docker images to ghcr.io
Created at 1 week ago
indeyets delete branch ci-push-images-to-ghcr.io
Created at 1 week ago

ci: push images to ghcr.io

Merge pull request #1591 from FreeFeed/ci-push-images-to-ghcr.io

ci: push images to ghcr.io

Created at 1 week ago
pull request closed
ci: push images to ghcr.io
Created at 1 week ago
pull request closed
Fix unwanted page reload after group settings change
Created at 4 weeks ago
pull request closed
Don't hide replyes to banned users in groups with disabled bans
Created at 4 weeks ago

Add currentRoute reducer with the current route metadata

It includes route name, path and params.

Reload after ban actions only when we are on 'userFeed' page

Don't hide replyes to banned users in groups with disabled bans

Merge origin/fix-group-reload into stable

Merge origin/fix-reply-to-banned into stable

Created at 4 weeks ago
issue comment
Request from ServerContext doesn't have host/hostname in case of http2 requests

I also see this warning. Must be related: (node:90487) UnsupportedWarning: Status message is not supported by HTTP/2 (RFC7540 8.1.2.4)

Created at 1 month ago
issue comment
Request from ServerContext doesn't have host/hostname in case of http2 requests

Is it this place? https://github.com/solidjs/solid-start/blob/main/packages/start/node/fetch.js#L140-L152

Created at 1 month ago
opened issue
Request from ServerContext doesn't have host/hostname in case of http2 requests

This is tested for local development. HTTPS enabled.

HTTP/1 works fine. HTTP/2 is broken in the following way (host/hostname equal to "undefined" string):

I literally had to implement the following workaround. I think it's quite descriptive:

  const serverContext = useServerContext();

  // …

  if (isServer) {
    currentURL = new URL(serverContext.request.url);

    // solid-start has a bug with http/2 requests. try to "fix" it
    if (currentURL.host === "undefined") {
      const authority = serverContext.request.headers.get(":authority");
      if (!authority) {
        throw new Error("Can't find hostname in request");
      }

      currentURL.host = authority;
    }
  }
Created at 1 month ago
migrate to isImportOrExportDeclaration

related to #259

Created at 1 month ago

Use Suspense properly

Add page to the key

Add links

Created at 1 month ago
issue comment
Weird behaviors with streaming renderer and Suspend/ErrorBoundary, am I doing it wrong?

I see similar problem with Suspense. here's the repo which can be used to reproduce behavior:

https://github.com/indeyets/solid-bug

  1. yarn
  2. yarn dev
  3. open http://localhost:5173/s/test
  4. refresh page (Cmd-R)
Created at 1 month ago
issue comment
Broken CSS imports in lazy loaded components in SSR

Looks like this pretty-much prohibits usage of CSS-Modules and lazy-pages at the same time

Created at 1 month ago