13,162 questions
-4
votes
0
answers
27
views
Export the mesh to WRL color not working in Meshlab [closed]
I'm new to the Meshlab software, Converting mesh to WRL format. Color not exporting with WRL format( i have opened the WRL in CATIA, color not exported, shows as a black color product)
Let me know ...
0
votes
2
answers
63
views
Highlighting excel cells based on matching other cells that meet a separate criteria
I have a spreadsheet that identifies highlights and gives text when a set of conditions are met.
Basic data sample is (Sorry, unsure how to make it look like it does in excel with formatting and ...
0
votes
2
answers
118
views
Struggling to understand how to print numerous columns with similar data
Basically, I need to print out random temperatures for each day of the year (1 through 365). It needs to be formatted like so:
How would I do this? I'm not exactly sure what this kind of data "...
0
votes
1
answer
76
views
MuleSoft DataWeave Date Time Formatting
Using input payload of
{
"Date": "2025-09-09T18:03:06.830"
}
I'm trying to get an output of
"2025-09-09T18:03:06.830Z"
I've tried this DataWeave
%dw 2.0
output ...
0
votes
0
answers
65
views
Can I get the Eclipse Java Formatter to properly handle variable declarator lists
Whenever, and only whenever, I have multiple field declarators in a list, I want this style:
private static final String
CONSTANT_STRING_1 = "foobar",
CONSTANT_STRING_2 = "...
1
vote
1
answer
35
views
Emphasizing asciidoctor literal parts
I'd like to to highlight a part of a literal/listing/source block "manually" in AsciiDoctor. Is there any way to do so?
E.g. I'd like to add a class or just a single "strong/b" to ...
1
vote
2
answers
109
views
What are the correct parameters and return types for std::formatter::format specialization?
#include <format>
#include <print>
#include <array>
struct Point {
int x = 0;
int y = 0;
int z = 0;
};
template <>
struct std::formatter<Point> : std::...
0
votes
2
answers
87
views
Is there a way to "configure" formatting at compile time? [duplicate]
I have struct/class that formats numbers. I want to tune its formatting parameters how i like. And this means I "need"(could be not, if there's another much more clever way of doing it?):
&...
1
vote
1
answer
56
views
Changing the Font on part of the body of my email
I have the below script that works fine but I am wanting the four numbers and post code in the body (an example is 3260 TA4 33Q) to be bold and red but the rest is fine as it is.
I have read a lot of ...
3
votes
2
answers
83
views
What's the OCaml equivalent of C's printf("%.3s"), i.e, specifying a maximum width for a string argument?
In C, one can write:
printf("%.3s", "foobar");
To get foo printed as a result (that is, print the initial part of a string).
In OCaml, Printf.printf "%.3s" "foobar&...
0
votes
1
answer
74
views
Problem with formatting a cell to text in Excel
CellStyle textStyle = workbook.createCellStyle();
textStyle.setDataFormat(format.getFormat("@"));
Set<Integer> forceTextIndexes = new HashSet<>();
if ("LE_27"....
0
votes
0
answers
30
views
how to remove vertical lines in gutter after adding a change
I just recently reinstalled VS Code on my Mac. Before when I added changes from Explorer, the lines in the gutter would disappear. Now, after staging, the lines are still there. The only way to ...
0
votes
1
answer
78
views
Text-formatting: Replace tabs with spaces in text/config file and keep the pretty formatting / reformat it via script (Python or BASH)
not sure how to categorize the following issue, I thought about relating it to BASH or Python first, but actually it's rather language-independent imo...
Anyway, I was searching but couldn't find any ...
-4
votes
1
answer
97
views
Numbers format on Excel
I've got a job which I am not allowed to use SQL/BigQuery to analyze data, because of the compliance/data security, so I must download data from a dashboard.
In the dashboard I just can download in a ...
0
votes
0
answers
77
views
dart format of ternary operators in dart 2.7.0+
After upgrading dart to 2.7.0+ (2.8.0 has the same problem), a nested ternary operator is being dart formatted the following way:
final initialLocation = isAuthenticated
? AppRoute.root
:...