2,219 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
8
votes
2
answers
585
views
Why does the Java collator for the Hungarian locale mix E and É?
I want to order a huge list of countries, and I have noticed that, for example, E and É are treated as equals. But in the Hungarian grammar, E comes before É, so a rule should be added, 'E < É'.
...
2
votes
1
answer
76
views
Portal users can`t see product model
On the website, I want to show users sales orders and products.
The problem I encountered is that Odoo does not want to display both (sales orders and products).
Therefore, I added recording rules and ...
0
votes
0
answers
41
views
Skipping Drools rules with higher salience
I have a following Facts domain ProposedFare and Fare.
The idea here is ProposedFare could be a competitor fare and from that create/clone/update Fare.
A rule can further update Fare which was already ...
1
vote
0
answers
137
views
Avoid PSScriptAnalyzer (self) suppression
Use case:
We are running GitLab Code Quality reports in our pipeline based on the PSScriptAnalyzer results by translating the PSScriptAnalyzer severity results to a Code Quality severity.
But it ...
-2
votes
1
answer
107
views
Expression compiler for .NET [closed]
We have a system with many logic expressions, they're implemented as series of boolean functions operating on variables and the rules are stored as XML. As the XML files are compiled into the assembly ...
0
votes
2
answers
86
views
iis rewrite rule to apply only for base url... (and https too)
This should be easy (if possible), but for some reason, I cannot find an example, and an HTML redirect causes too many redirects. This is for a site with abc.123.whatever binded to it.
I'm looking for:...
0
votes
1
answer
114
views
PSScriptAnalyzer file based custom rule
I am trying to create a (PowerShell based) PSScriptAnalyzer rule that does basically the opposite of the native usebomforunicodeencodedfile rule knowing that we do not allow any Unicode characters in ...
0
votes
1
answer
60
views
How to highlight multiple cells that are blank AND have a table with column names that give the location of the column that is blank
I have an excel sheet with over 250 points and multiple columns - I am trying to automate the file so certain columns (not all columns but few) with blank cells get highlighted yellow and also have a ...
0
votes
1
answer
68
views
GNU make only checks dependency once, whereas the dependency checking rule is a .PHONY and should be called twice?
For the below makefile:
NAME = file1
all: $(NAME)
$(NAME): dep1 dep2
touch $(NAME)
dep1: DEP := folder1
dep1: check_dep
touch dep1
dep2: DEP := folder2
dep2: check_dep
touch dep2
...
0
votes
0
answers
12
views
Enabling Centralized Repository to collect commits from deferent teams for improved security
Can anyone explain the setup/configurations/architecture in the Software House scenario, where different projects are being executed via different teams to maintain security, rules and user ...
0
votes
1
answer
702
views
Gitlab CI Rules: Skip Job for Merge
I use a typical Gitlab-Workflow, where a branch is covered by an Merge-Request and - in case the pipeline runs well - it can be merged into main.
My Issue
I have a job, that checks the commit using ...
0
votes
1
answer
94
views
Python SqlManagementClient Azure MSAL Login: Add Firewall Rules Programmatically Not Working
In Python notebook, I want to connect to my Azure SQL DB using MSAL. In the second step, after logging in successfully, I need to configure the firewall by adding the public IP to the Firewall ...
0
votes
1
answer
279
views
Ansible module selinux implementation
I need to know the underlaying commands executed when using selinux module in Ansible, because the Ansible is using an service account to login to the servers with an SSH key, and then that svc ...
0
votes
0
answers
28
views
How to construct optimal Elastic queries
I have some general questions about designing optimal rules. To my understanding there are three ways of constructing exclusions/filtering:
Directly in the query with "NOT" statements
Add ...
1
vote
1
answer
352
views
Managing Cloudflare Ruleset Order via Terraform
We are currently managing and creating Cloudflare rulesets and rules across multiple zones using Terraform. As you know, the rules in Cloudflare are order-sensitive. Whenever we generate a Terraform ...