Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
22 views

I’m working with GT-SUITE 2016 (GT-ISE) and want to automate creating and running CFD-coupled simulations using the GT Automation / Scripting API. The official docs mainly cover manual setup for ...
Masoud kamju's user avatar
0 votes
1 answer
70 views

I'm trying to inject my script into the sender tab but in service worker console there is an error: Uncaught (in promise) Error: Could not load file: 'chrome-extension://...'. But when I fetch() this ...
Grisha_Crysta's user avatar
2 votes
1 answer
66 views

Environment Azure DevOps Classic UI Task: PowerShell@2 (Windows PowerShell, not pwsh) Agent: Windows (Microsoft-hosted and self-hosted both repro) PowerShell version: Windows PowerShell 5.1 Script ...
alexis19apl's user avatar
0 votes
0 answers
28 views

I accidentally ran an infinite loop Elisp code, and the buffer size became too large, resulting in a warning. Warning (undo): Buffer ‘foo.ass’ undo info was 24054654 bytes long. The undo info was ...
gt ykm's user avatar
  • 1
-2 votes
1 answer
126 views

Attempting to solve the "Lonely Integer" problem HackerRank problem statement: My solution declare -i n read n declare -a numbers read numbers n=${#numbers[@]}-1 while [ $n -ge 0 ]; do echo ...
smophos's user avatar
  • 339
0 votes
2 answers
133 views

I am running my python script through the gdb via gdb -x py_script.py. The only program I can't seem to be able to work around is the fact that editing and history of the built-in python readline ...
Alex000001's user avatar
1 vote
0 answers
57 views

I remember (from around 10 years ago) that in GeoGebra I could save the commands I would normally type into the Input Bar into a textual file, and then open/load/run them all at once, without having ...
Foad S. Farimani's user avatar
2 votes
4 answers
162 views

I'm learning bash from a book and just wanted to see if there is a more efficient way to do this. The output of cat /proc/acpi/wakeup is multiple lines, but I only care about this one: GPP0 S4 ...
dbaser's user avatar
  • 327
0 votes
0 answers
61 views

I have written a script that works as expected with a specific workbook and I now want to save it to that workbook and ideally would like to make a button to run the script. However I do not get the ...
Frans Kampers's user avatar
3 votes
3 answers
88 views

I have this simple script in powershell. # Save the non-running services to a variable $nonrunningServices = Get-Service -Name "*sql*" | Where-Object { $_.Status -ne 'Running' } #Check the ...
Marcello Miorelli's user avatar
0 votes
0 answers
50 views

I have embedded Groovy 4.0.9 in my application as a scripting language, and I want to be able to provide helpful feedback to my users when their scripts don't compile. This works ok with a basic ...
user3760601's user avatar
-1 votes
1 answer
84 views

In the below batch script, the script exits right after the datapatch command. The datapatch command executes successfully but none of the code in the if/else clause is executed. :: Define env ...
user13708337's user avatar
2 votes
0 answers
70 views

The problem I am implementing an out-of-process C# REPL for a Unity game. I tried an in-process REPL at first, but couldn't get it to work because of some weird VTable related exceptions when loading ...
Dark Daskin's user avatar
  • 1,564
1 vote
1 answer
138 views

I was trying to upload a video to a Facebook Page using the Graph API and kept encountering the error: (#100) No permission to publish the video Despite having the app in Live mode, proper permissions ...
Manan Patel's user avatar
1 vote
1 answer
37 views

I'm working on a native Android application where screens need to be rendered dynamically based on data received at runtime. The application is database-driven, and we aim to support customization for ...
Rohan Pande's user avatar
0 votes
1 answer
63 views

In ROBLOX studio, I'm trying to make a part that when you touch it, it will remove your hats, but not your hair. The way it will detect the hat from the hair is checking if the accessory has a ...
grace's user avatar
  • 9
0 votes
0 answers
47 views

$user = [System.Security.Principal.WindowsIdentity]::GetCurrent() $userSID = $user.User.Value $user2 = "$env:COMPUTERNAME\$env:USERNAME" New-NetFirewallRule -DisplayName "aaa_test"...
IT_DUDE9999's user avatar
0 votes
1 answer
66 views

So I'm trying to make a LocalScript that connects to a ServerScript through a remote event which makes a Gui appear. The error is that every time I fire the remote event I need it to happen for one ...
Ministry Ray21's user avatar
0 votes
1 answer
43 views

I am using the command in following types: Commands are: ps -ef | awf-F "" '{print $2}' ps -ef | grep python3 | awk-F "" '{print $3}' Both the commands give the error: awk -F ...
ayush_octt's user avatar
1 vote
1 answer
133 views

I want to write a Snowflake scripting block where I embed some text, then do some cosine similarity search. Ideally I would like to be able to assign the embedded text to a variable so I can re-use in ...
Xedni's user avatar
  • 4,791
2 votes
1 answer
87 views

I thought my script worked in test environment (it prompted me for credentials again and again when I mistyped, but accepted them after I typed them correctly). But when I tried to use it in ...
skysthelimit91's user avatar
0 votes
0 answers
21 views

I'm attempting to install this tool by logging into the remote server using SSH. Although upon doing so it returns this error; Will not apply HSTS. The HSTS database must be a regular and non-world-...
user avatar
0 votes
1 answer
42 views

I have a task to replace several tags in big project (2000+ xml pieces of code), basically changing: <tag1>abc</tag1> ==> <tag1>XYX99</tag1> Is this can be done inside of ...
Mich28 's user avatar
  • 504
0 votes
1 answer
110 views

I am in the process of writing a windows batch file to simplify the generation of some documentation, I am relatively new to this. Part of this involves interrogating my git repository to find the two ...
Erebus1841's user avatar
2 votes
1 answer
55 views

I am following a tutorial I found on youtube for a file integrity monitor. The code is messy but im trying to add my own twist and clean it up. I just added input validation and now the code won't run ...
Trystan Williams's user avatar
0 votes
1 answer
63 views

I followed a tutorial to learn how to create a trigger event that adds a Torch to your inventory via a click detector that was attached to the chest. I tried using the same system to a sand pile for ...
AnnaWantsToCode's user avatar
1 vote
1 answer
74 views

I am trying to use a PowerShell script to transfer a file from a NAS location to a group of remote servers. I am using Copy-Item to transfer the file. I am getting the error - Cannot find path because ...
Yashbhatt's user avatar
  • 111
-1 votes
1 answer
102 views

I am trying to create a script that reads the contents of a file and reacts to certain error messages. So far everything is working as intended; however, I cannot get the 'If' statement to perform any ...
Terrence Busby Terrence209's user avatar
2 votes
1 answer
163 views

I am working to write some simple powershell scripts to verify account status and inactivity. I am running into an issue where the Inactivity is not returned due to a non-existent registry key. Is ...
Average Joe's user avatar
0 votes
0 answers
37 views

I tried to use the following agent disguise: "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36" I also ...
Shidoitzka YT's user avatar
0 votes
1 answer
116 views

Wondering if anyone has the setup instructions for the Eclipse to work with Sabre Scripts? The one I have is outdated. Or in general the steps to setup eclipse to work with Sabre Red Apps
Kevin Pulido's user avatar
-3 votes
1 answer
90 views

for the game I'm working on I had my groups write multiple scripts that I would be implementing into the project. Each script would contain the dialogue for the game. It was a rushed solution and very ...
Juan Alarcon's user avatar
0 votes
0 answers
36 views

I have built the ARCore Depth Lab application from Google’s GitHub repository in Unity. The application runs fine, and I have added a new feature to export the point cloud data to a .ply file. I ...
Jaydeep Jogdand's user avatar
0 votes
1 answer
77 views

I want a LLDB breakpoint callback to add another breakpoint on the next frame in the callstack. For this I have a file trace_mvp.py with the following code: import lldb def syscall_callback(frame: ...
Billbucket's user avatar
0 votes
0 answers
213 views

I run powershell as an admin. I am able to delete the user account without issue via: Remove-LocalUser -Name "PcMethod" But then when I try to remove PcMethod’s folder in C:\users via: if (...
skysthelimit91's user avatar
1 vote
1 answer
97 views

I'm trying to write a simple .zsh script to start my webservers upon computer boot. This works well: #!/bin/zsh cd /Users/me/Sites/Vue/mysite && npm run dev & But this doesn't work: #!/...
thiebo's user avatar
  • 1,467
0 votes
0 answers
53 views

Summary When an operator is run multiple times successively in blender, report messages (generated by report() API) from previous runs are also showing up in present run. What is the reason behind it ...
Rivu Bhattacharya's user avatar
-2 votes
1 answer
70 views

I am trying to extract the -D port entries from a bunch of java process for monitoring purpose. So I did ps -ef and grep for java process and also after some massaging am left with a list of strings ...
Sudharsan Simhan's user avatar
3 votes
0 answers
276 views

I am developing an application in Delphi that needs to interact with SAP GUI via Scripting to automate some material control operations. However, I am facing difficulties in establishing the correct ...
Mieli Jr.'s user avatar
0 votes
0 answers
85 views

I am trying to deploy HP Support Assistant on Windows 10 machines using KACE or Lansweeper. I have placed the installer (installer file name) on a shared network drive and tried using the following ...
Ciana Rodrigues's user avatar
-1 votes
3 answers
158 views

(would post on dev forum but I'm not accepted in yet) I have put a part in workspace with a surface GUI then textbox and then this LOCAL script inside it: script.Parent:GetPropertyChangedSignal("...
TheStickminKing's user avatar
1 vote
1 answer
55 views

I am having trouble execting the below command on remote SSH. Trying to execute 3 commands on remote server and returning its output as CSV value. If the run the command on the command line it works ...
Sudharsan Simhan's user avatar
0 votes
0 answers
87 views

I am simply trying to get a FluentButton OnClick event to fire and have no luck. Nothing. Any events are not firing. There are errors I've never seen in the browser that concern me. I'm hoping someone ...
Woodman's user avatar
  • 11
3 votes
2 answers
219 views

I have a report that I have automated. the report is a CSV file, and it is split every 80,000 lines, so I regularly end up with reports in multiple parts. I have a large function that processes the ...
Kain's user avatar
  • 33
0 votes
1 answer
51 views

When using the FlagSmith User Interface, I couldn't find any way to select all the identities and delete them at once. As you can see in the image attached, we are forced to click the trash icon ...
Soldeplata Saketos's user avatar
1 vote
0 answers
131 views

I'm working on automating Windows Update management using a PowerShell script. The script resumes updates by modifying the registry and restarting the relevant services (wuauserv and UsoSvc), and it ...
214 7B11's user avatar
0 votes
1 answer
237 views

I have a powershell script that I'm trying to run from a shortcut on macOS (as in the Shortcuts app/widget, not the Dock). I have the mac version of powershell installed and the script runs fine if I ...
Hypersapien's user avatar
0 votes
0 answers
60 views

I'm learning Lua, and set up a script in the Logitech software when I hit mouse button 9. I would like to abort this script when hitting the button again while running, but after multiple attempts, I ...
Peter Bergloff's user avatar
-1 votes
1 answer
278 views

In Uxp Developer Tools, you can connect to Photoshop, but cannot connect to Premiere Pro 2025 and Illustrator 2025. Uxp Developer Tools prompts 'No applications are connected to the service. Make sure ...
user10325492's user avatar
1 vote
0 answers
75 views

I am now creating a MATLAB script to read the release versions in which a sldd object is created in Simulink/MATLAB. For example, An SLX file activeSuspension.slx's matlab version it has been saved in ...
Akhil Nandan's user avatar

1
2 3 4 5
355