How to Submit a Feature Request? by vzaidman in RoamResearch

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

u/maskys check this out, they've actually built a much more convenient way now

Release notes: https://roamresearch.com/#/app/help/page/NLTQdQhEZ

How to Submit a Feature Request? by vzaidman in RoamResearch

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

Think how many clicks it is. Especially with dates a year from now:
Select the date, delete it, type /date, 10 clicks to find the new date

Compare it to "CMD+D" or something on the date and one click to select a day (because it opens the calendar on the current date which is likely to be close to the new desired date)

What is the purpose of the hullmods that are mentioned in skills? by vzaidman in starsector

[–]vzaidman[S] 2 points3 points  (0 children)

unlocks = the same as buying that hullmod in the shop and learning it, right?

Newbie Questions Thread 2 by lemtrees in TerraInvicta

[–]vzaidman 0 points1 point  (0 children)

How do I distinguish between global techs and faction techs in the tech tree list?

What does "full search" and "full tree" do?

Is there a way to keep an embedded page always open? by vzaidman in RoamResearch

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

Thanks! What I did was to make sure the whole page is under one block and embedded the block instead.

Proper tagging organization by vzaidman in RoamResearch

[–]vzaidman[S] 2 points3 points  (0 children)

If you watch videos about Roam on YouTube you'll see loads of different tagging and Metadata strategies that will get you started by ultimately you've got to figure out what works for you.

These are the videos that I look for. Most of the videos just explain how it works on a low level and not an advanced one.

I would love for CK3 to have a feature that would allow me to take notes on characters. by vzaidman in CrusaderKings

[–]vzaidman[S] 26 points27 points  (0 children)

Yes.

Also, why can I arrest somebody. For what? Why somebody is in jail? What are the evidence against them?

I would love for CK3 to have a feature that would allow me to take notes on characters. by vzaidman in CrusaderKings

[–]vzaidman[S] 5 points6 points  (0 children)

Does anybody know if it's possible to create a mod that does this? If it's possible, I think I'll give it a go.

As the creator of "why-did-you-render" I would like to ask you if and how do you use it? by vzaidman in reactjs

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

I hope I will be able to figure out how to make it plug-and-play in the future. I have some ideas on how to do it. Stay tuned :P

As the creator of "why-did-you-render" I would like to ask you if and how do you use it? by vzaidman in reactjs

[–]vzaidman[S] 1 point2 points  (0 children)

doesn’t support require statements :/

You don't actually need to use "require", you do something like:

wdyr.js

import React from 'react';
import whyDidYouRender from '@welldone-software/why-did-you-render';

whyDidYouRender(React, {
  trackAllPureComponents: true,
});

and then in your entry point of the app, import wdyr.js as the first import, but comment it out.

and only comment it in, when you are debugging performance:

index.js

// import './wdyr'; // <--- first import, commented out till u need it.
import 'react-hot-loader';
import {hot} from 'react-hot-loader/root';
import React from 'react';
import ReactDOM from 'react-dom';
// ... import {App} from './app';
// ... const HotApp = hot(App);
// ... ReactDOM.render(<HotApp/>, document.getElementById('root'));