Skip to main content
Filter by
Sorted by
Tagged with
-3 votes
0 answers
36 views

I'm trying to build a Docker image for a Node.js + React application and keep getting this error during the build: COPY failed: file not found in build context or excluded by .dockerignore: stat src: ...
Mina Golzari Dalir's user avatar
-1 votes
1 answer
58 views

I am working in Jupyter Notebook with pandas, and I noticed something strange. In one cell , I did this: import pandas as pd df1 = pd.DataFrame({"A":[1,2,3]}) df2 = df1 Then in another ...
Gouri Phadnis's user avatar
0 votes
1 answer
112 views

I am working on a project where I frequently filter my DataFrame and then return it for further processing. For example, in one file I have this code: df = df[df['Ticker'].str.startswith("...
its m's user avatar
  • 49
-1 votes
1 answer
147 views

I'm facing a frustrating system-wide issue related to copy-paste, which only begins after using Visual Studio for a while. Problem Description I open Visual Studio and start working on code (sometimes ...
Shaaib Ba Shaaib's user avatar
0 votes
1 answer
156 views

In short, I'm trying to understand why copying, which is such a fundamental thing in C++ (fundamental in the sense that you, as the programmer, have quite a lot of power in writing code to permit or ...
Enlico's user avatar
  • 30.2k
0 votes
1 answer
126 views

I am working on a PnP.PowerShell script to copy a local folder to a specific SharePoint site (each client has a SharePoint site). The connection between our local server and SharePoint works, but some ...
Green BreiZH's user avatar
0 votes
0 answers
89 views

I'm trying to source from a S3 Bucket into my Fabric OneLake. I have set up a successful managed connection that I am able to succesfully create a shortcut in my Lakehouse utilizing. When I try to use ...
chris fowler's user avatar
0 votes
0 answers
42 views

I am using Fabric.js in an Angular application and trying to implement copy-paste functionality for text inside a Textbox. However, I am facing the following issues: Fabric.js does not provide a ...
Brijesh Shah's user avatar
1 vote
1 answer
70 views

I have two text files, File 1 is a list of names of meshes with a path sometimes the name is the same as the path name and can contain numbers. I need is to insert File 1 filename/path onto every ...
S.T.A.L.K.E.R's user avatar
0 votes
0 answers
18 views

I need to read from the following public REST API via Azure Data Factory copy activity: https://api.data.fca.org.uk/fca_data_firds_files?q=((file_type:FULINS)%20AND%20(publication_date:[2024-12-15%...
Sara's user avatar
  • 9
1 vote
1 answer
86 views

I am using the function copyData below within another script and it works great in the original script but for another one it is only copying the first line. I would like it to copy all line within a ...
Vicki Allan's user avatar
0 votes
1 answer
22 views

I'm trying to write a PL/SQL program to COPY a JPG files from one directory to another. The file names themselves are the id's in a table that I fetch and make a variable photo_file_name := lower(...
vswindell's user avatar
0 votes
0 answers
26 views

I have an Excel column where some cells are locked and others unlocked. Say my column is B, then B1 to B4 are unlocked, B5 is locked and B6 to B7 is unlocked. I am copying data from another sheet but ...
Nisha's user avatar
  • 417
1 vote
2 answers
121 views

I have setup for my django project using nginx and uwsgi, similar to what is described here I am now trying to use docker / docker compose to maintain it. For the container with the django application,...
Matthieu's user avatar
  • 16.5k
0 votes
1 answer
97 views

I'm completely new to ADF. I'm working with an existing ADF set-up, and need to modify it to fulfill new requirements due to a modified source folder structure. Previously, the source folder contained ...
sdvd's user avatar
  • 3
1 vote
1 answer
95 views

I display a grid, there are two rows in the grid. I have a button called "Copy", when user click on the Copy button, all the data from first row will copied, then paste it into second row. ...
Hung Pham's user avatar
0 votes
0 answers
15 views

I'm fairly new to using PowerShell and doing something like this. I'd like to create a PowerShell script that I can share with other to copy over specific app data folder to an alternative drive. I ...
Steven Ford's user avatar
0 votes
0 answers
9 views

Compare data per ROW starting with ROW CELL A2 thru F2 one at a time with the data starting in CELL A5 thru CELL F5, that fall within +2,+1,0,-1,-2 of the data as a RANGE. When parameters are met, and ...
BobbyBobbyZ's user avatar
0 votes
0 answers
108 views

Inside S3 event integration, have created one AUTO COPY JOB which detects new file upload in S3 bucket and loads data into Amazon Redshift. Its observed that after 1 hour this job doesn't do anything (...
alpesh pradhan's user avatar
-4 votes
1 answer
70 views

In a 2016 blogpost, it is claimed: def notActuallySafeCopy(srcfile, destfile): if os.path.exists(destfile): raise IOError('destination already exists') shutil.copy(srcfile, ...
Atomic Tripod's user avatar
0 votes
0 answers
26 views

As per title, I am randomizing animation using the following script: private IEnumerator RandomizeAnimation() { while (true) { var rand = Random.Range(0, 100); switch (rand) ...
Krzysztof's user avatar
0 votes
0 answers
33 views

I want to copy the object of a variable to assign to another variable and only change some properties in the object of the new variable without changing the old object. I create new object for new ...
Duy Anh Nguyễn Phúc's user avatar
0 votes
1 answer
83 views

I am creating a program that runs solver and then copy pastes the results of multiple runs to a summary page. Due to some bugs with excel I previously asked about on here, there is a loop to detect an ...
Clay Reakes's user avatar
0 votes
0 answers
15 views

Gradle sync replaceTokens for UTF-8 files: task syncFiles(type: Sync) { from("/path") into "/path2" filesMatching (['**/*.xml']) { filter(...
eastwater's user avatar
  • 5,808
-2 votes
1 answer
97 views

I have a code for copying rows from a sheet (Parks) to another (Report) in google sheet. It works fine but the problem is, I have 335 rows in sheet 'Parks' and I don't want all of these rows in my ...
Kimiagar's user avatar

1
2 3 4 5
227