1,171 questions
2
votes
1
answer
74
views
TextInput on SpinBox with custom inputMask
I have a SpinBox with a custom TextInput as contentItem. I want it to display a quantity, so it want to display something like "10 / 20 pc." for example. The minimum value is always 1, the ...
-1
votes
1
answer
126
views
how to draw border to a masked image using swift?
I have created below masked image and I have masked image like this
Here is my code
//
// Collage_Layout_1.swift
// Snapcial
//
// Created by Jecky Modi on 15/02/25.
//
class Collage_Layout_1: ...
0
votes
1
answer
101
views
Masked aggregations in pytorch
Given data and mask tensors are there a pytorch-way to obtain masked aggregations of data (mean, max, min, etc.)?
x = torch.tensor([
[1, 2, -1, -1],
[10, 20, 30, -1]
])
mask = torch.tensor([
...
1
vote
1
answer
285
views
how to combine VueDatePicker and v-maska
I'm trying to apply a mask to a VueDatePicker input. The mask works, but you need to double-click on the date in the calendar for it to apply. However, if you remove the mask, everything will be fine. ...
0
votes
0
answers
52
views
react-text-mask the cursor behaves incorrectly
Я использую react-text-mask и Input antd.
I have a problem. When I want to use a phone number mask, when I delete a character from the middle of the line, my cursor moves to the beginning of the line. ...
1
vote
0
answers
116
views
What is the correct way to create a mask for decimal numbers in Windows Forms?
$txtValue = New-Object System.Windows.Forms.MaskedTextBox
Using the mask $txtValue.Mask = "999,999,999.9999" doesn't allow me to enter, for example, 1.333 without typing 000,000,001.333 (or ...
0
votes
1
answer
273
views
DevExtreme: TextBox: Set Mask to a Model property
Is it possible to set the mask of a devextreme textbox field to a model's property? As in bind the mask property to a model's property value?
For example:
Model:
public MyClass{
public string ...
0
votes
0
answers
62
views
Oracle PL/SQL - Changing Number formats using Numeric masks
I am having requirement where customer can enter a number in any format and I need to convert it into valid number format using plsql code dynamically. could you please guide me.
Test case1# (200....
0
votes
1
answer
60
views
Masking an Input to show "placeholder" text as user types - React
I need to create a phone number input with special input masking. The input will have a placeholder like this: (___) ___-____. As the user types, the "placeholder" text should slowly be ...
0
votes
2
answers
140
views
How to mask the values in query params of URL for Refit API Call in Logs
This is my request :
public class GenerateTokenRequest
{
[AliasAs("code")]
public string Code { get; set; } = string.Empty;
[AliasAs("secret")]
public string ...
0
votes
0
answers
23
views
Deletion of entered characters according to a predefined mask
After replacing the mask with the entered characters, I want to delete the entered characters, but it does not allow me. I can only delete the last one.
I would also like if you think this could be ...
0
votes
0
answers
455
views
Snowflake Data Masking Issue. With view and table
So I have a table which have masking on its columns so I got my roles added to masking policy of that particular view.
I created a view and a table from dbt including data from that particular masked ...
0
votes
0
answers
55
views
SQL Server : consistent data encryption/masking while read
I would like to check with you regarding dynamic data encryption/masking when reading from a SQL Server database.
To elaborate further, the data elements should be encrypted/masked when a set of users ...
0
votes
0
answers
27
views
Python ValueError in broadcasting although right shapes
I have a problem in a bigger python project.
This ist the code I'm trying to implement. I'm trying to find out in which interval of a0 the points in a lie (there will be a lot more points in the ...
0
votes
0
answers
58
views
Change in line slope affecting fill_between
I currently have a curve defined by (x_orig, y_orig), and I want to plot the shaded region between two new curves defined by (x_orig - c, y_orig) and (x_orig + c, y_orig). When using matplotlib's ...
1
vote
1
answer
69
views
htaccess rewrite to subfolder not masking
I want to redirect https://example.com/folder to https://example.com/otherfolder/anotherfolder but have the address bar still display https://example.com/folder.
None of the .htaccess tutorials on ...
1
vote
4
answers
329
views
Create an alternative ID in query Oracle SQL
I am trying to add a column in a SQL query to use as an alternative ID.
The data has this format:
UserID | Value
---------------
1 | 23
2 | 10
1 | 45
I'd like to create another column ...
0
votes
1
answer
80
views
The given code fails for larger values even after changing variable from int to double to long
This was the problem statement.
*Complement of Base 10 Integer
The complement of an integer is the integer you get when you flip all the 0's to 1's and all the 1's to 0's in its binary representation.
...
0
votes
1
answer
596
views
Use github secret in Ansible play without making it clear text
How can I use github secrets in Ansible play without them being visible in clear text?
Currently, I invoke ansible play using the “oracle linux automation manager” API from github actions.
While ...
1
vote
1
answer
104
views
Python equivalent of Matlab's createMask() function
I want to create a Python equivalent of a Matlab code that creates a filtering mask. In the Matlab version, I have a variable position that maintains xy values for a polygon which I am creating the ...
1
vote
0
answers
2k
views
How to mask user input for password field in github workflow_dispatch
Below is the github actions workflow:
name: CALLERDB - AD
on:
workflow_dispatch:
inputs:
DBLoginID:
description: 'Enter the user id'
required: true
type: string
...
2
votes
0
answers
108
views
Overflow:hidden breaks z-index and translateZ but 'visible' does not. Why?
I'm trying to make a 3D art piece that has some layers in front of the frame layer and some layers behind the frame layer. I want the frame to mask off the layers behind it, and still be able to see ...
1
vote
1
answer
884
views
Masking logs in delegating handler using Serilog and Destructurama.Attributed
I am trying to log all of the requests hitting my endpoints using a delegating handler. As there are sensitive information in the request and response body, I would like to mask them in my logs. I ...
1
vote
0
answers
1k
views
springboot logging and masking with logback multiple sensitive data in different log files
I am working with logback with springboot project first time; and I have tried to look references online. I am dealing with masking sensitive data on different log files.
In this project data is ...
0
votes
0
answers
2k
views
NGX-Mask special characters
I have a functionality where I defined custom pattern and it should allow user to enter any alphabets, numbers, spaces and special characters. In this example lets say $
At the same time I have '$' as ...