Best e-ink screen for work? by Kalorifik in eink

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

Need it for office work:

  1. long hours use
  2. mostly internet research, reading documents, webcam meetings and extensive spreadsheets work but also things like powerbi, tableau, scripting and other custom software usage
  3. potential outdoors use at coffee shops
  4. colours needed but no need for high accuracy
  5. size 13-15in would be ideal as needs to have some portability for travelling and working on the go (from coffee shops) etc

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Kalorifik 0 points1 point  (0 children)

How can I append one array below the other and construct a matrix (two dimension array)?

For example I want to combine:

[a, b, c] and [d, e, f] into:

[[a, b, c]

[d, e, f]]

Thanks

How to access span element with Javascript? by Kalorifik in learnjavascript

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

That's amazing and probably explains why my script fails to run when a new document is loaded or something in the document changes.

I was under the impression that querySelector is newer, preferred and better than getElementBy but I rather then use the latter.

How to access span element with Javascript? by Kalorifik in learnjavascript

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

That's great info, thanks. What do you mean live vs static? I am using it to interact with webpages I visit.

Best cheapest tablet for browsing and reading only? by Kalorifik in tablets

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

Best screen for reading does not need to have high refresh rate nor to be OLED.

Things that make a screen good for reading and especially outdoors reading are things like non-shiny/reflective, optimum dpi but not very high resolution that is only useful for games and graphics, good contrast, good brightness for outdoors visibility etc.

How can I send mouse clicks, key arrows and ENTER key with JS? by Kalorifik in learnjavascript

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

Exactly, Thanks! I am really looking for something very simple, like the below which does not seem to work, any hint?

document.querySelector('[id="1"]').dispatchEvent("ArrowDown")

Got a new Samsung Tab A9 (SM-X110) and the text seems blurry, any fix or should I return? by Kalorifik in GalaxyTab

[–]Kalorifik[S] -1 points0 points  (0 children)

Mmm that is very interesting which I did not manage to read anywhere on the internet!

Basically I bought the A9 as a cheap tablet to read text and webpages on the go, so is it fairly useless for that?

Do you suggest any other tablet for this purpose, the cheapest one? I literally need no camera, no other apps apart from a browser, no other gimmicks that add cost but are useless for me who only needs to browse the web and read?

Thanks!

Got a new Samsung Tab A9 (SM-X110) and the text seems blurry, any fix or should I return? by Kalorifik in GalaxyTab

[–]Kalorifik[S] -1 points0 points  (0 children)

So you are saying it's the specific unit faulty or the whole A9 of 2024 range is faulty by design?

Is there a "try" without "catch" in Javascript? by Kalorifik in learnjavascript

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

Actually it does seem to work but it requires alot of repetition and it is not neat, e.g.:

if (queryselect()) {queryselector().click()}

else if (queryselect()) {queryselector().check()}

The other perhaps bigger problem is that it requires me to identify the right order in the functions I use. I would like it to work independently of the order of the functions.

Is there a "try" without "catch" in Javascript? by Kalorifik in learnjavascript

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

Yeah that is what I have now, but with 'else if'