1,671 questions
0
votes
1
answer
37
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
6
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
119
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
54
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
110
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
22
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
117
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 ...
0
votes
0
answers
20
views
Sonarqube ignore rules parameter for goto statatement in the code
What is the command line line parameter that i can use to ignore the GOTO statement usage in plsql code
for example we have used below to ignore the forloop block in the code
-Dsonar.issue.ignore....
-1
votes
1
answer
84
views
Fix one rule using Eslint (semi-colon)
I'm trying to eliminate all the semi-colons of my Vue project and I've searched how to do it with eslint command line. I've fount this pattern :
eslint --no-eslintrc --fix --rule 'rule definition here'...
0
votes
0
answers
19
views
Dynamic GitlabCI repo selection
I've been trying to configure gitlab-ci.yml so as to get a specific branch, dependent on the commit-branch naming convention.
We have a project group named "cfe" and both project-to-commit &...
1
vote
2
answers
122
views
For Each loop results in "Automation Error = For Loop not Initialized"
I am looking to run all my Outlook rules from one button. I have the following code from another site.
It generates an error:
Run-time error -2146664191 (800c8101)
Automation Error
I have 22 rules ...
1
vote
0
answers
92
views
Update existing rule group of the network firewall of aws using terraform
I have two seperate and different terraform codes the first repo is used to create a network firewall with a policy attached to it using this code :
resource "aws_networkfirewall_firewall_policy&...
0
votes
0
answers
61
views
Create conditional formatting in pandas dataframe column
I have created the following pandas dataframe:
import pandas as pd
from matplotlib import pyplot as plt
ds = {'col1' : ['(-inf, 0.0]','(0.0, 4.0]','(4.0, 50.0]'], ...
2
votes
1
answer
169
views
THINGSBOARD: How to modify (simple math) a value before I show it in a dashboard
I just landed into the thingsboard world, and so far I've been able to integrate it with our Chirpstack server and show a very basic dashboard with the received telemetry. All good for now, but I ...
0
votes
1
answer
44
views
Drools Speadsheet syntax to generate OOPATH format drl file
Is it possible to generate drl file in OOPATH format from a spreadsheet?
Is there a flag to switch?
I don't find any examples.
This spreadsheet
generates a traditional syntax drl:
package com....;
...