Marcus Hof

Results 50 comments of Marcus Hof
trafficstars

fixed in: https://github.com/PostHog/posthog.com/pull/7692

> Would also be interested to hear if it's being fixed! @MarconLP @charlescook-ph It's currently not fixed, but you can apply [this simple workaround](https://github.com/PostHog/posthog/issues/7710#issuecomment-1669996908) to solve the issue right now.

+1 https://posthoghelp.zendesk.com/agent/tickets/13723

+1 https://posthog.com/questions/not-getting-insight-in-slack

+1 https://posthoghelp.zendesk.com/agent/tickets/13961

I liked the idea, but I think for Tablane something like this would make more sense: ``` This is a top-level task. - This is a subtask. - And a...

Multi-line paste has been added in this PR: https://github.com/Tablane/tablane/pull/24 ![image](https://user-images.githubusercontent.com/13001502/214375985-4c823cdc-f8cb-451b-882a-a889935b8c53.png) It does not detect subtasks, yet

@Bernice55231 The frontend is supposed to run on port 3000 and the backend is supposed to run on port 3001 The `.env.example` for the frontend: ``` ... # server hosts...

The backend start logic: ``` http.listen(process.env.PORT || 3001, () => { console.log(`Listening on port ${process.env.PORT || 3001}`) }) ``` It uses the .env.PORT or 3001 and console.log it accordingly ![image](https://user-images.githubusercontent.com/13001502/233311353-180f1e80-ca15-46af-b3f9-1579a4d46575.png)...

> > The backend start logic: > > ``` > > http.listen(process.env.PORT || 3001, () => { > > console.log(`Listening on port ${process.env.PORT || 3001}`) > > }) > >...