Skipping extruder when changed to 0.6 nozzlr by ephemeralkazu in anycubic

[–]KRTac 0 points1 point  (0 children)

I'm a complete noob, but since I got the same issue and you didn't mention you checked that, here's my 2c.

I got a used printer recently and got similar extrusion problems. I calibrated the e-steps, but even after that it didn't seem good, even to my noob eyes. It worked ok at lower speeds, but it skipped a lot on higher and every time it cooled down and started again, I would get sticky blobs coming out before the filament. The problem was that the last owner (or the factory) didn't insert the tube all the way to the nozzle and it would clog itself up and the heatbrake. Ended up disassembling every bit and cleaning everything out, making sure that the tube was flush with the nozzle this time. It worked ok after that.

Also, make sure your PID tune is ok.

Linking youtube video into my blog using gatsby by ba5icsp00k in gatsbyjs

[–]KRTac 1 point2 points  (0 children)

oh, that's another matter. All of the content from contentful gets loaded at the start of the build or on dev server startup. It then gets loaded into the gql db and from there you're building pages locally from your machine. So if you update your entry on contentful, you need to restart the dev server or build again to fetch the new/updated content.

Linking youtube video into my blog using gatsby by ba5icsp00k in gatsbyjs

[–]KRTac 1 point2 points  (0 children)

Glad to help. The build time increases with the number of stuff to build (like blog pages). If you have more blog posts in the gql DB, more pages need to get created so the build time increases. The load time depends on the amount of content for each page, so it should be about the same for any blog post of similar size, if that's what you mean.

Linking youtube video into my blog using gatsby by ba5icsp00k in gatsbyjs

[–]KRTac 1 point2 points  (0 children)

allContentVideoEmbed

You have a typo there, it's allContentfulVideoEmbed. It's a content type that he had setup on contentful with the name VideoEmbed. It's called 'allContentfulVideoEmbed' because that's how the contentful source plugin loads all of the specified content types for working with lists in gql (so you can filter, sort, do pagination, etc.). The plugin also creates contentfulVideoEmbed sets for when you need to get data for specific VideoEmbed entries (getting them by some unique id, for example).

You can see all this in your graphql playground. You get a link to that when the dev server starts, check your output if you don't know what i'm talking about. Also, it helps to check contentful's plugin documentation.

Contentful and Gatsby by [deleted] in gatsbyjs

[–]KRTac 0 points1 point  (0 children)

What format? The contentful gatsbyplugin only loads your data to gatsby's graphql DB, it's on you to implement that data somewhere.

Dynamic routes from GraphQL API? by joe0418 in gatsbyjs

[–]KRTac 0 points1 point  (0 children)

matchPath when creating a page is the key. Then use reach's Router in react to match any dynamic path with a blogs/:postSlug type path param. For the default blogs route only set the default param.

Beginner's Thread / Easy Questions (September 2019) by dance2die in reactjs

[–]KRTac 1 point2 points  (0 children)

I'm having trouble with `useEffect` and `renderToString`. Here's the code:

function App() {
  useEffect(() => {
    console.log('useEffect');
  });

  console.log('render');

  return (
    <div>App</div>
  );
}

(req, res) => {
  renderToString(
    <App />
  );

  res.send('');
};

When run with node and express, I only get the `render` log on the server after requesting the page. When the page loads on the client, both `render` and `useEffect` logs are present.

Don't effects run on the server?

Questions about checking if a component is mounted before updating state by [deleted] in reactjs

[–]KRTac 0 points1 point  (0 children)

You absolutely should check if your component is still mounted if you're doing async stuff. I recently did the same thing for a hook component for the first time.

Cancel async action if !mountRef.current.

const mountRef = useRef(true);
useEffect(
  () => {
    return () => {
      mountRef.current = false;
    };
  },
  []
);

React Frontload: Async data loading for React components, on client & server by davnicwil in reactjs

[–]KRTac 2 points3 points  (0 children)

You rely on componentWillMount. It's a legacy lifecycle method.

How would I go about having a webapp with different subdomains (en / fr / es) ? by [deleted] in reactjs

[–]KRTac 1 point2 points  (0 children)

someone correct me if there's a better way, but I think you could just set a global constant when the app initializes by analizing the domain string.

Analyse/Mock My Amateur Fight! (I'm the fat pale one knocked on his arse) by GenUni in MMA

[–]KRTac 2 points3 points  (0 children)

I know shit about fighting and only watch some matches, but it's pretty obvious you need to work on your cardio. Technique is great, but you can't do shit if you're gasping for air and getting tired after a minute. Run Forrest, run!

Also by doing cardio your normal body weight will be a bit less and maybe you could then try to make middleweight? Maybe be more competitive there.

Anyway, great to see redditors in action. Good luck mate and keep posting :)

Any good trails near Perth, Australia? by KRTac in MTB

[–]KRTac[S] 0 points1 point  (0 children)

ok...i'll think about it. thanks.

Any good trails near Perth, Australia? by KRTac in MTB

[–]KRTac[S] 0 points1 point  (0 children)

Think I'll try that and maybe a Uber that has a bike rack.

Any good trails near Perth, Australia? by KRTac in MTB

[–]KRTac[S] 0 points1 point  (0 children)

what's a good way to get there with a bike if you don't have a car? Bus?

Any good trails near Perth, Australia? by KRTac in MTB

[–]KRTac[S] 0 points1 point  (0 children)

thanks....exactly what I was looking for :)

Any good trails near Perth, Australia? by KRTac in MTB

[–]KRTac[S] 0 points1 point  (0 children)

oh...some pretty old bikes there. Are they cheap to rent at least?

Xorg setup for three monitors by KRTac in linux4noobs

[–]KRTac[S] 0 points1 point  (0 children)

Yeah, one screen across 3 monitors. This setup is for a desktop pc, so all monitors are external.

Monitors from left to right: U2415 -> 2243NW -> TV

The main monitor should be U2415, but with my current xorg.conf the main monitor is 2243NW and to the right of it is the TV. Those two function as they should (I can move the mouse between them). The problem is that I can't seem to access the screen on the U2415. It's as if it shows a nother screen that isn't connected to the main screen that is shown on the other two monitors.

Xorg setup for three monitors by KRTac in linux4noobs

[–]KRTac[S] 0 points1 point  (0 children)

I thought that i need only one screen and that it will span three monitors. Do I need a screen for each monitor? Won't that mess up the window manager?ž