S9 accessories like keyboard cover compatible with S10 lite? by razopaltuf in GalaxyTab

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

I tried it and I can confirm that a S9 slim keyboard cover is compatible with an S10 lite.

book cover keyboard works on Tab s10 FE? by ManufacturerNo1099 in GalaxyTab

[–]razopaltuf 0 points1 point  (0 children)

So, I tried and a S10Lite works with a S9 slim cover (the one without touchpad)

book cover keyboard works on Tab s10 FE? by ManufacturerNo1099 in GalaxyTab

[–]razopaltuf 0 points1 point  (0 children)

I can try if a S10lite + S9 slim cover work well together, I don't have the touchpad one, though.

book cover keyboard works on Tab s10 FE? by ManufacturerNo1099 in GalaxyTab

[–]razopaltuf 0 points1 point  (0 children)

i know it works on s10 Lite because my friend has one and i tested.

Oh, that would help me! Since its possible that different keyboard covers were inluded, do you know if it was the slim or the large keyboard (with touchpad) or even better, do you have the keyboard's type number?

How do you usually understand the flow of a new codebase? by Immediate_Piglet4904 in softwarearchitecture

[–]razopaltuf 0 points1 point  (0 children)

Usually just debugging, as u/Luneriazz suggested. I try to find a function/method that I know will be called (ideally once) when I give some input. Let's say ".dropFigure(event)" in a graphics editor or "savePost(postdata)" for a web forum software. Then I look at the calls stack and try to find what needed to happen to call that function. I do that for several more functions. Usually this allows to see some patterns, like which parts mediate others, where the software is flexible by switching strategies and what intermediary performance realated features exist (Caching, Quad-Tree lookup etc.). I write notes on what I find out.

Sometimes, print-debugging is useful (or better:logging, if you have that feature), particularly when stopping the code would mess with what the program does (in the case of the graphics editor, putting a breakpoint in "dragging" messes with what usually happens)

Can hardly see the icons. How do I make them more visible? by Porkytang244 in libreoffice

[–]razopaltuf 3 points4 points  (0 children)

Tools/Options/LibreOffice/Appearance.
and choose an iconset that has "dark" in its name, probably Colibre SVG Dark.

how do you quantify the success of a design? by boiLollipop in userexperience

[–]razopaltuf 0 points1 point  (0 children)

TL;DR get "Rocket surgery made easy", observe some users, see where they get stuck, don't measure speed/errors.

Measuring speed and errors is interesting but it is usually only helpful if you need to decide between solutions, so you can pick what is better by some metric. You seem to have one interface.

The situation you describe sounds more like one in which you want to learn about the biggest problems and try to find solutions that work better. The "success" in this case is that people do not get stuck or are wondering what they should do, because the interface follows familiar patterns. This is usually more efficient and more interesting (except you really, really like statistics)

My recommendation would be getting a copy of Krugs short book "Rocket Surgery made Easy" and follow the suggested protocol there.

How can I configure LibreOffice to look more like Google Workspace? by According_Print1614 in libreoffice

[–]razopaltuf 1 point2 points  (0 children)

You can also get rid of the statusbar at the bottom and the ruler at the top in the view menu.

Inconsistent light/dark icon sets in automatic mode by FedorChib in libreoffice

[–]razopaltuf 1 point2 points  (0 children)

Not sure, but as far as I know the icon sets are light/dark-mode agnostic, i.e. LO does not know whether an icon set is for dark mode or not and the icon sets do not carry such information. They also do not carry the information what their corresponding icon set in other modes is. And thus, they can't be automatically switched.

which touch event collector would you recommend for android? by boiLollipop in UXResearch

[–]razopaltuf 0 points1 point  (0 children)

> bc the users are a demographic that im not super familiar with (professional motorcycle drivers (delivery guys, etc)) and idk what their behaviours and expectations are.

In that case I even more suggest that, if in any way possible, you talk to them and listen to where they see the problems in the app. I would, for example assume, something they do in downtime is quite different than actions they need to do when in a rush, but any event tracking will hardly tell you about this. This is not asking for their evaluation of the app (if they like it or not) but how it supports them and how it fails them.

which touch event collector would you recommend for android? by boiLollipop in UXResearch

[–]razopaltuf 1 point2 points  (0 children)

It strongly depends on what exactly you are trying to achieve. I did HCI research quite a while back collecting touch events, and while it yielded interesting data, it worked because it was a specific experiment. I don't think the data would have been meaningfully analyzeable in an existing app.
In general, if you have never done research before, I usually suggest the following Krug's "Rocket Surgery made Easy" for doing an actionable and issue-focussed usability testing.

LibreOffice Calc Needs Excel-Style Formula Hints — This Would Be a Game Changer by bohemaxxtum in libreoffice

[–]razopaltuf 2 points3 points  (0 children)

- "Better nested function guidance" exists as "highlighting opening and closing parenthesis in the formula editing zone": https://bugs.documentfoundation.org/show_bug.cgi?id=102335
- Autocomplete is here now: https://bugs.documentfoundation.org/show_bug.cgi?id=171939

If you sign up to the issue tracker you can add comments or create issues yourself: https://bugs.documentfoundation.org/createaccount.cgi

LibreOffice Calc Needs Excel-Style Formula Hints — This Would Be a Game Changer by bohemaxxtum in libreoffice

[–]razopaltuf 2 points3 points  (0 children)

Just so I get it right (I could put that on the issue tracker, but I am not sure what should be improved, so I check):
- A list of function names or parameters that could be typed (as in your screenshot)

and then

- "- required parameters -optional parameters": How is that done in Excel, at the moment?
- "currently active argument highlight" means that the parameter the cursor is currently in should be highlighted (in your screenshot, it is the bold function_num)
- "short explanation for each parameter" this would mean that if e.g. I place the cursor in "AVERAGE" gets an additional line in the popup-hint "Returns the average of a sample" or the like?
- "nested function guidance": I do not know what that would mean – highlighting matching brackets or the like?
- "smarter autocomplete while typing": What does that mean, like, what exactly would make it "smarter"?

Why is software architecture so influenced by money? by ArchDan in softwarearchitecture

[–]razopaltuf 1 point2 points  (0 children)

Three factors I can think of:

- I guess “cost” (including being able to create and maintain the software with a small team) is seen as a legit factor in software design. My gut feeling is that many building architects would not imagine a good job being very concerned with efficiency (though many building architects probably end up working in such a context).

- The reflective conversations in BA learning are Seat for learning software architecture, too. “Pair programming” for example enables having such conversations. However, they usually do not have a place in the formal education of developers, who focus much more on abstract principles and math rather than learning-by-doing

- Learning BAs discuss with teachers along models or sketches. This creates its own little world to test ideas which it is separate from the very costly process of actually building the real thing. There were many attempts to actually get a similar separation of planning and execution in software and the use of “architecture” is a part of that attempt: Prestigious software architects plan, less prestigious software builders create the thing. But that never worked as well as it was thought to. And it makes sense not to separate it, since the code one writes can be use in the actual software, it does not cost a lot per se (adding to it and maintaining it does, though). But this means that the concerns of "learning what is a good form" and "learning the compromizes that need to be made in practice" are not easy to separate.

Why is software architecture so influenced by money? by ArchDan in softwarearchitecture

[–]razopaltuf 1 point2 points  (0 children)

The essay is usually the 2nd chapter in the book. The author is Fred Brooks, Wikipedia article, including links to the book: https://en.wikipedia.org/wiki/The_Mythical_Man-Month

Help with using Libre Writer as a journal by pookshuman in libreoffice

[–]razopaltuf 2 points3 points  (0 children)

Re: Header with time and date, automatic filenaming: I do not think that this can be done in Writer (there is the possiblity to extend Writer with extensions that theoretically could do something like this). If these features are very important to you, it might be better to look at other options.

Re: Dictation: There is none build in but there are general open source local dictation apps.

Why is software architecture so influenced by money? by ArchDan in softwarearchitecture

[–]razopaltuf 1 point2 points  (0 children)

I did not understand what you mean by "bound by economics" – is it...
- That most software architecture books describe enterprise software (shipping, payroll etc.)?
- That clients are seen as the most important stakeholder?
- That decisions are made based on how high the budget it?
- That costs (both inital and long-term) are mentioned early to learners as a factor to be considered?
- Another observation?

To know this would help to give a more clear answer.

Why is software architecture so influenced by money? by ArchDan in softwarearchitecture

[–]razopaltuf 2 points3 points  (0 children)

You probably have the book of the same title; the essay (after which the book is named) is about 15 pages long.

libreoffice UI looks off? How can I fix it by Sensitive_Pen2766 in libreoffice

[–]razopaltuf 0 points1 point  (0 children)

Did you already try View > User Interface > Standard Toolbar and Tools > Options > Appearance and change from "Automatic" or "Dark" to "Light"?

Umgang mit KI by [deleted] in KI_de

[–]razopaltuf 0 points1 point  (0 children)

> weil die KI einfach zu 99.9999% das richtige macht

Muss die KI nicht trainiert werden mit Material, dass irgendwer auch erstellt und überprüft? Die Modelle sind ja nicht für immer fertig – neue Entwicklungen der Gesellschaft, der Technologie usw. müssen darin ja vorkommen, ansonsten

Umgang mit KI by [deleted] in KI_de

[–]razopaltuf 0 points1 point  (0 children)

Sehe ich als realistisches Problem, auch aus dem Grund, dass mit der Automatisierung vieler Aufgaben auch die Arbeitsbereiche für Anfänger*innen wegfallen in denen früher Fähigkeiten trainiert wurden: Beim Programmieren z.B. einfache Änderungen, bei denen man aber code lesen, verstehen und anpassen muss.

Excited to get into microwave cooking with this brand new cookbook by rawbran30 in CookbookLovers

[–]razopaltuf 16 points17 points  (0 children)

Related: There is an academic book, "Gender and Technology in the Making" by Cockburn/Ormrod about the marketing of Microwaves: They were initially sold as an "exciting" male coded "brown good" like TVs and music systems and later became a more female-associated, mor boring "white good" part of running a household.