96 questions
-1
votes
1
answer
195
views
Not able to see all objects under a folder in Pimcore. Communication failure occuring
In pimcore there are 10 million objects. When i click on the folder to show in grid view it shows error:
Timestamp: Fri Nov 08 2024 10:02:01 GMT+0530 (India Standard Time)
Status: 0 | communication ...
1
vote
1
answer
145
views
PyG graph autoencoder loss is frozen, possible Data object assembly issue
I'm trying to use Graph Autoencoder on a custom PyG Data object, but when I attempt to train it, the loss, AUC and AP do not change. The exact same autoencoder works when using PyTorch Geometric's ...
0
votes
1
answer
130
views
Silverstripe 4 bulk image upload and create Dataobject from each image
This is a question about creating DataObjects from bulk-Uploaded images.
Normally i use Colymba\BulkUpload\BulkUploader in this way:
(all pseudo code)
e.g.:
And a normal setup with
(Modeladmin)
...
0
votes
0
answers
66
views
Silverstripe 4.7 let member view, edit, delete only own data objects
In Silverstripe (4.7) how can i manage the member only to view, edit and delete its own created Dataobjects? I thought i could use canView() but no success.
Ive tried with PermissionProvider and ...
0
votes
1
answer
213
views
Pasting an Excel File to my program which is running on an remote computer doesn't work
I have my Computer on which I have an Excel File. This File I want to copy and Paste to my program which is running on a Remote Computer.
After that Copy I want to use this file and make Excel.Interop ...
0
votes
1
answer
212
views
Silverstripe 4 PaginatedList get Page-number - Link (Backlink)
In Silverstripe 4 I have a
DataObject 'PublicationObject',
a 'PublicationPage' and
a 'PublicationPageController'
PublicationObjects are displayed on PublicationPage through looping a PaginatedList. ...
-1
votes
1
answer
178
views
How to convert Data Object { "key.subkey": "value" } to { "key" : "subkey": { "value" } } [closed]
I want to convert data object from:
let data = {
"data.name" : "michael",
"data.email" : "[email protected]",
"person.gender" : &...
1
vote
0
answers
3k
views
Terraform aws_security_group: How do you pass ingress and egress blocks from variables?
My main goal is to remove hardcoded ingress and egress configuration blocks from our aws_security_group resources in our terraforms modules. I instead want to pass in one ingress and one egress input ...
0
votes
2
answers
1k
views
JSON How to search keys name value and print the objects that contains a string or set of strings with case insensitivity?
Goal:
Search the keys actual name value for a string or set of strings
search using case insensitive values
return the object(s) containing the values
Un-sanitized test data:
{
"PassworD&...
1
vote
1
answer
1k
views
Pimcore database imported but no Data Objects available
I recently installed a copy of an existing Pimcore-environment on my local machine with XAMPP.
I am able to log into the admin interface. The database and all class-definitions are imported.
The Data ...
0
votes
0
answers
113
views
Transform tuple shape
I'm attempting to run a loop faster by using the code to below to create a tuple quickly but can't iterate through the tuple
import pandas as pd
Channel = pd.DataFrame()
for row in Channel.itertuples(...
0
votes
1
answer
434
views
JS same function different parameters in every object value. How can I write less?
What I did
I call a function in objects' value.
And this function would be called in every object as much as users add an absent data.
What I want to do
Hence I recognize that I could have thousands ...
0
votes
1
answer
151
views
Is there a data object that is not a variable or a constant?
I am a student studying programming.
I'm studying programming linguistics, and I'm asking for help because there's a part that doesn't work out well while solving the problem.
The problems are as ...
2
votes
1
answer
56
views
How to yield a nilable shared object in Chapel?
Currently, I am working on Chapel Data Objects and I am facing some issues. I have a class named Row which can be nil.
I have these three methods:
override iter these()ref {
for row in this....
0
votes
2
answers
167
views
Django: Correct way of passing data object from view to template to view?
From a template users can upload a csv file which gets parsed in
def parseCSV(request):
magic happens here (conforming date formats and all such fun things)
return column names to template
This ...