13,880 questions
1
vote
1
answer
152
views
Format() Entire Strings (Rather Than Characters)
Background
VBA has a Format() function which converts any value to its textual representation. This is useful for numbers and Dates and times, but it can also be used on Strings.
Debug.Print Format(&...
0
votes
0
answers
21
views
in SQLFluff, How can I configure newlines with operators to be indented?
SQLFluff has a rule for choosing either of
SELECT
a +
b
FROM
or
SELECT
a
+ b
FROM
The docs give the examples exactly those two ways. But, to my eye those are both clearly wrong! The problem ...
0
votes
0
answers
12
views
XDCAM formatting SDK
I am currently developing an application that manages multiple drives
and among them would be an XDCAM drive media.
This application main function is to format the drives.
For other drives I am using ...
0
votes
0
answers
48
views
links in HTML text in jspdf
I'm using jspdf to render text that I get from a text editor (which means the text has HTML tags and styles and classes), i'm using the method .html
when the note is basic text and it's working fine, ...
0
votes
1
answer
78
views
Markdown Table Displays Correctly in Console but Misaligned in Mezon
I am working on a C# application that generates a Markdown table to summarize project timesheet data. I want to send it to a Discord like platform called Mezon. The table displays correctly (with ...
0
votes
1
answer
46
views
How do I change the axis in excel from mmm-yy to qq-yy? [duplicate]
I want to change the format of an axis from mmm-yy to qq-yy. Example, I want "Dec-22" to be "Q4-22". The dates are NOT in the data, so I can't change the date format in the data ...
0
votes
2
answers
59
views
How do I make the image in these divs align to the bottom of the container
enter image description here
I want the image below the text to be aligned to the bottom instead of directly under it, both containers are the exact same with formatting.
they are in this container :
....
0
votes
1
answer
60
views
In CSS how to left-align the marker of a list item in an <ol> at .375", the text at .75", and the second (wrap-around) line of the list item at 0.0"?
How do you format an Ordered list so that each list marker (a., b.,) begins at .375in, and the list item text begins at .75 inches.
the second line of the list item (wrap-around text) should begin to ...
1
vote
1
answer
88
views
Formatting a word table created in excel using VBA
I have a table like this excel table and I want to create a Word Table to look like this
I am a novice user of VBA so this is genuinely killing me because I can't figure out how to make this happen.
...
0
votes
0
answers
79
views
How to format brace for array element into new line?
I have the following .clang-format:
---
BasedOnStyle: WebKit
BreakBeforeBraces: Attach
BreakConstructorInitializers: BeforeColon
ColumnLimit: 0
ContinuationIndentWidth: 4
Cpp11BracedListStyle: false
...
1
vote
1
answer
192
views
handle dbt variables while using sqlfluff
I'm using VS Code on macOS. I installed sqlfluff locally using pip. I also installed it via the extensions UI.
I am trying to format my code manually via the UI. When I select my code, do a left click ...
0
votes
0
answers
66
views
How to make PEP8 formatter vscode extension to allow long lines?
How to make PEP8 formatter vscode extension to allow long lines for python? Currently the formatting enforce too short lines.
Furthermore, I really like the auto-formatting in pycharm. Is there a way ...
0
votes
0
answers
102
views
VS Code does not correctly indent closing parenthesis in Go import() or func(){} statement
I'm using VS Code on Nobara Linux (a Fedora-based distro) and working with the Go programming language.
When I type the following and press Enter after import(: import(⏎)
The result I get is:
import(
)...
1
vote
1
answer
55
views
Can I tell if the previous line on a text console wrapped around?
In writing a C# console app's log output, I am sometimes overwriting the previous line for aesthetic purposes. I'm currently doing this by using the command:
Console.SetCursorPosition(0, Console....
1
vote
1
answer
114
views
Is there a way to partially remove minted highlighting in LaTex?
I am using LaTeX for writing a thesis, including the package minted to highlight code. In my case, it is Razor code, which means a mixture of html and C#.
The following code is an example for my ...