All Questions
20,893,689
questions
0
votes
0answers
2 views
Encode/decoded a randomized, fixed-length string to and from a 64 bit integer
I want to convert a fixed-length, say 50 character long randomized string into a 64 bit integer and be able to convert it back to original text given the 64 bit integer.
Does an algorithm exist for ...
0
votes
0answers
2 views
ssh and apache working great inside the network…I cant access em form outside my localhost
So I just set up a server with Debian using VirtualBox. I tried using bridged Adapter as a network setting. Inside the network I used for tesking 3 machine they all work perfectly with ssh n apache. ...
0
votes
0answers
2 views
Domain Forwarding for Squarespace
I am wondering if anyone has any experience forwarding Squarespace sites to unsupported .end formats.
I have a .nyc domain I would like to use with a Squarespace (I kno its not real coding) site and I ...
0
votes
0answers
2 views
SwiftUI's views, not releasing sub-properties
I noticed a problem when playing with SwiftUI's List, when I build my row views I create a view model like so:
struct MyListView: View {
var body: some View {
NavigationView {
...
0
votes
0answers
3 views
Angular ngrx: Access to an adjacent slice of store
When my component inits, I want to dispatch an action to create the "campaignDraft" object.
If the "CampaignOverview" exists, I need to make "campaignDraft" the same, if ...
0
votes
0answers
3 views
confused about reactivity of object data
I am a little confused a question about reactivity. I found that if I have a component that has this data below:
props: {
['user']
},
data() {
return {
name: '',
person: {
...
0
votes
0answers
2 views
Rest Assured ordered tests
I'm using Rest Assured in order to test my API, and i noticed that the tests are not running in order.
Is there any solution that allows me to run my tests in the same order as i implemented them.
...
0
votes
0answers
2 views
Iterating through table rows text with Python Selenium
Trying to iterate each row to create list for all rows separately.
HTML table is;
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<...
0
votes
0answers
2 views
Reading strings with whitespaces after integers from a file C++
I am trying to read a file that has been written in the following format.
Aggokk the Brutal
70 50 90 10
0 Hammer of Smashing
10 Orcish Helm
30 Orcish Cuirass
20 Orcish Greaves
I am trying to read and ...
0
votes
0answers
5 views
Function, Method objects in Java, alternatives
I am trying to do some functional programming with java.
Function Objects takes one value and returns one value. Method takes no arguments.
Is there a default Object which takes one argument and ...
0
votes
0answers
2 views
Do I need to normalize dataset after performing LabelEncoder technique on categorical columns?
I have a dataset. This Dataset contains both numerical and categorical variable columns. I have performed the LabelEncoder technique on categorical variable columns to convert them into numerical ...
0
votes
0answers
4 views
How to fix CORS Proxy error while deploying to With Netlify
When deploying React app that calls an external Api, you get a cors erros. How to fix it?
-1
votes
0answers
5 views
The difference between loops, using examples in python
In programming there is an iteration part .....
Explain with examples how could this apply separately (use python examples)
0
votes
0answers
2 views
How to connect npm with NuGet packages?
I've started a Fable project using a starter template. In order to run it, I was previous successfully using npm run build.
Using Visual Studio, I installed some NuGet packages (Serilog, Dapper) but ...
-1
votes
0answers
3 views
How to do A-B in dataframe in Spark Scala
I have below 2 dataframes . I need to get the data that are in dataframe1 with 3 columns but not in dataframe2 with 1 column. The result should be something like below