1,301 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
75
views
Need to fix string in a single block of code DATABRIcKS
I am attempting to proper case the contents of a column that has various erroneous inputs. The code I used worked on everything except where the word is all caps.
I can't do "lower(initcap(field)...
-1
votes
1
answer
128
views
Git push problem because of case-sensitivity
I try to push my changes to a remote repo, but I keep getting the following error:
My git command:
git push --set-upstream origin MyNotYetExistingOnline/Branch
The output:
Enumerating objects: 33, ...
1
vote
2
answers
93
views
How to check if a file/folder with a particular case-sensitive name exists in a particular directory
I have a dart app which is supported for 4 platforms: Windows, MacOS, Android and IOS.
There is a feature for file/directory rename in the app.
In order to achieve this, I am using dart::io's type API ...
1
vote
1
answer
83
views
File reappears after discarding changes in git commit due to folder's name capitalization
I'm managing a repo of a Unity Project. We have three devs working on separate branches. One of the Asset folders for Prefabs files has a weird issue where we are unable to discard a file from the ...
0
votes
2
answers
155
views
VS Code's git integration is looking for filenames with the wrong casing
In VS Code, given a file, managed by git, which has been edited.
I can select the file from the Source Control sidebar and see the diff highlighted.
When I right-click on a change and select "...
1
vote
0
answers
76
views
Why doesn't the Java compiler in IntelliJ IDEA complain about filename case mismatches? [duplicate]
I'm learning Java and experimenting with compiling source files. I understand that Java is case-sensitive, and that the filename must match the public class name exactly — including the case.
public ...
1
vote
1
answer
94
views
Use the INTERSECT operator in a case-sensitive manner [duplicate]
I have a number of system-versioned tables in my database. Microsoft notes here that...
When you run any data modification queries on a temporal table, the Database Engine adds a row to the history ...
8
votes
1
answer
165
views
Given various locales like "turkish", should a "\xFD" "nfinity" match "infinity" in strtod()?
Note that locales are a part of C that has evolving support.
Following is about C23 and maybe back to C99.
This is about an minor corner case in strtod().
With locales like "turkish", should ...
3
votes
1
answer
121
views
How to implement a case-sensitive `Equals` for operators as `-ceq`
An Equals method on a specific class might be used to implement a PowerShell operator as -eq:
class TestClass {
hidden [String] $_Value
TestClass([String]$Value) { $this._Value = $Value }
[...
1
vote
2
answers
730
views
Is there a way to make text searches case-insensitive?
I've just checked, and DuckDB performs text searches case-sensitively. SELECT * FROM bar WHERE foo = 'My name'; only matches My name, not my name.
Never, in the long history of ever, have I had a user ...
5
votes
1
answer
232
views
Case sensitive in VB.NET
I have a project in VB.NET where I have installed the Microsoft.Graph NuGet package (v5.58.0). This package contains two classes with nearly the same name, differing only by one capital letter: ...
1
vote
1
answer
68
views
VS code terminal appears case sensitive?
I've just started learning python on the ATBS course and have been going for almost 2 months. I'm having trouble with the terminal and command prompt on my PC which is running on windows 10
I have a ...
0
votes
1
answer
113
views
Servlet URL pattern case sensitivity
I have the following code
@WebFilter(urlPatterns = "/path/to/directory/*")
public class PageFilter extends MyBaseFilter {
}
It works as expected if I do "http://localhost/path/to/...
1
vote
2
answers
71
views
Can't delete parent node from XML file with a special character [closed]
I have this XML:
<Configuration>
<Files>
<File>
<filename>"%test%\PKI\U"</filename>
</File>
<File>
<filename>"%...
1
vote
2
answers
1k
views
Bun/Vite build failing in GitHub Actions/Ubuntu — "undefined" error message
When I run it on my Mac, bunx --bun vite build does this:
vite v5.4.2 building for production...
✓ 2951 modules transformed.
dist/index.html 1.03 kB │ gzip: 0.56 kB
dist/assets/...