All Questions
20,805,091
questions
-1
votes
0answers
3 views
Regular Expression for Words with 4 different characters
I want to check whether a word contains 4 different characters (, or more than 4 different characters if convenient), like "AAATAA" is not and "GATCA" is.
Can I use regex to do ...
0
votes
0answers
3 views
Change default port for django swagger-ui
I want to change the default port of swagger-ui to 8080 but my main Django API should listen on a different port.
I have tried this in setting.py :
SWAGGER_SETTINGS = {
"base_path": '...
0
votes
0answers
4 views
CSS Transform (Scale + Origin) achieve the same effect with height
I was wondering if there is a way to do this with height, so basically this puts an anchor to the bottom so the element can move up when scale is changed:
position: absolute;
top: calc(50% - 100px)...
0
votes
0answers
2 views
How make a route like with 2 “slug” ? (React-Router-Dom)
I asking this question because i create an back-office and some component make the same thing but not in the same API route.
For example i have 4 theme:
-History
-Actuality
-Product
-Method
In each ...
0
votes
0answers
2 views
AWS SES Incoming Transactional Email
I am currently working on a Lead Management project which needs to handle the sending and receiving of emails. We are using AWS SES by default for sending normal transactional emails, however I'm not ...
0
votes
0answers
3 views
iOS App Action Extension: How can I get the URL shared from Safari
I am following this Apple Guideline on creating Action Extensions and there isn't enough context on how to get the URL from the Safari through Action extension.
I would like to get the URL if possible ...
0
votes
0answers
5 views
How to setValue of a complex FormArray reactive form
I want to set the value a complex FormArray but setValue didn't work !
This is my component.ts :
coveragestypes : Array<ItemPolicyModel>= [{'id':'1','name':'type1'}, {'id':'2','name':'type2'}];
...
-1
votes
0answers
4 views
Building an array in the shell script
Experts, while i'm learning, I have wrote a shell script below to determine read-only filesystem on the linux servers where I borrowed some pieces from the google search and using as below which works....
0
votes
0answers
4 views
Laravel Sail SQL Connection timed out
I just started using Laravel Sail, but Laravel can't connect to the MySQL server. Even Artisan in the container gives Connection timed out. I can connect from MySQL Workbench on my host machine.
My ....
0
votes
0answers
3 views
Can't install libraries via conda because of invalid syntax
I'm trying to install selenium for in my conda environment(3.6), but it keeps saying that there is an invalid syntax. But it does not only give me an error when i download selenium, it gives me an ...
0
votes
0answers
2 views
SceneKit custom clipping plane by shader modifiers
I would like to know how I can perform the clipping plane at SceneKit SCNScene by using the shaderModifiers property of the SCNMaterial object stored at the SCNNodes.
According to the official ...
0
votes
0answers
3 views
perforce p4 with the -x option performance
I was using the p4 -x file.txt option to sync a lot of files.
And I noticed that the performance suffered.
the files inside file.txt has like around 500k lines.
and i compared between these 2 commands:...
-2
votes
0answers
9 views
using rest api and show data in console.log
I am showing data using rest api in console.log() but data not show
0
votes
0answers
5 views
Google has compressed your app. With size compression certain configurations are now within the 0MB size limit
I am trying to upload an apk to google play console but I am getting this warning
"Google has compressed your app. With size compression certain
configurations are now within the 0MB size limit.&...
0
votes
0answers
7 views
Fetching the value of variable stored in a file
I am trying to fetch the output of a variable stored in a file in another shell script.
Example:
cat abc.log
var1=2
var2=2
var3=25
I am writing a script to fetch the value of var3.
Thank you in ...