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

Edit: None, Status or ExecutionState are not implemented so I need an alternative way to check it, but I don't have any clue where I should look. This is what I have: Option Explicit On Error Resume ...
t33st33r's user avatar
  • 301
-2 votes
0 answers
52 views

This is not a code problem. There is no minimal code example. This is problem does not belong to a specific project. This problem is about an interaction between build environment, IDE, and operating ...
Kile Asmussen's user avatar
1 vote
0 answers
137 views

I'm looking for legitimate methods to make a Windows user‑mode process harder to terminate. PPL would be ideal, but Microsoft is very selective about who can use it. What alternative options or best ...
twieczor's user avatar
0 votes
0 answers
71 views

I have cross-compiled GCC to run on Android arm64 device and i can run it on emulator with "adb shell": 130|generic_arm64:/data/data/com.mycompany.myproject/files/sdk/hardware/tools/avr/bin #...
4ntoine's user avatar
  • 20.6k
1 vote
2 answers
116 views

I am working on a project in go (which I am not very familiar with), that runs as a systemd process and spawns child processes, but whenever the systemd service is restarted, I see warnings (sometimes ...
thiago's user avatar
  • 450
0 votes
0 answers
104 views

I am using Android Jetpack Compose to build a little app, and don't seem to be able to run terminal commands. I have tried the following: val cmdExample1 = arrayOf("sudo", "apt", &...
Fi Li Ppo's user avatar
  • 320
0 votes
1 answer
112 views

I've been diving deep on my learning Kubernetes clusters. I want to know how kubeadm starts up each control plane component and in what order? After reading the Kubernetes documents, I wasn't sure. ...
b01's user avatar
  • 4,404
0 votes
2 answers
95 views

I am trying to record CPU and memory utilizations of processes running in my window server using PowerShell. Script is running well but I am not getting anything if Mutiple process are running with ...
Vineet's user avatar
  • 37
1 vote
1 answer
79 views

I am trying to use the multiprocessing module to parallelize a CPU-intensive piece code over multiple cores. This module looks terrific in several respects, but when I try to pass lists and ...
SapereAude's user avatar
1 vote
2 answers
151 views

I'm writing a CLI in Rust, and I want it to work on Windows or Linux. I want it to invoke Maven in order to run a Java program. I already have this working in a Bash script that I can invoke via Git ...
Garret Wilson's user avatar
-2 votes
1 answer
73 views

I've searched around and couldn't quite find and answer to this. I'm trying to get C to open a bash program called L. The I want to be able to run the program using something close to system or popen. ...
ClemsonCoder's user avatar
0 votes
1 answer
179 views

I am following a book on Java 'Java: The Complete Reference, 11th Edition" which has the following code class ExecDemoFini { public static void main(String args[]) { Runtime r = ...
Mrinmoy Sadhukhan's user avatar
-2 votes
2 answers
113 views

so what is the difference between these two vhdl programs: process(clk) begin if(clk=1) q<=d; end if;end process; and this one: process(clk) begin if(rising_edge clk) q<=d; end if;end ...
Gahit Moncef's user avatar
0 votes
1 answer
65 views

I’m trying to understand how operating systems load a program into memory from a hardware perspective. I know that DMA (Direct Memory Access) is used for I/O operations, allowing data transfer between ...
sh1220's user avatar
  • 1
0 votes
0 answers
56 views

I am trying to run a test for my project that will need the whole API app to run by using process to start and run the application on a real TCP socket for eventual pact testing. The API seems to ...
Isaac Richardson's user avatar
0 votes
1 answer
52 views

So I thought I'd have a bit of fun writing a small app in Swift to batch convert .py files to .mpy, using mpy-cross. mpy-cross works fine from the command line - it takes a .py file and outputs a new ....
SomaMan's user avatar
  • 4,174
2 votes
0 answers
108 views

I am new to network programming. I am on Linux, and I am using C++, the sockets API, and process API. I am trying to understand if what I am trying to do is possible or not. The goal of my program is ...
Adam Shkolnik's user avatar
2 votes
2 answers
115 views

I have an executable that does a bunch of processing and then waits for a keypress. I'm trying to run this Powershell script from the Windows scheduler. Here's my original attempt: $logFile = "...
Craig's user avatar
  • 351
0 votes
1 answer
61 views

As title suggests, I was interested into making a process start directly on the host, called inside a Docker container. Do you have any idea on how I could accomplish this goal? To be more precise, ...
Mattia Sospetti's user avatar
0 votes
0 answers
32 views

I'm beginer of electron, and I learned I can execute external program with spawn function. But, when I execute external program, I can't see output data of the program immediately. This is my external ...
JayJay-K's user avatar
5 votes
1 answer
304 views

this behaviour has been driving me crazy, lately, though there is probably a reasonable explanation, maybe even a fix. I am currently learning C and have to write my own shell in school and was ...
user29561092's user avatar
0 votes
0 answers
24 views

I have this command line that someone helped me with: type "\\NetworkDriveLocation\Folder\test.pdf"|find "pdf:Keywords" I want to execute this in C# using System.Diagnostics....
user3121062's user avatar
2 votes
0 answers
109 views

Within my Mac application, I start a long running process (a local server) as so: let process = Process() process.launchPath = "/bin/zsh" process.arguments = ["-c"] + ["'\(...
Guig's user avatar
  • 10.6k
0 votes
0 answers
58 views

I'm having an issue with some code I'm writing. I'm getting this pwntools error about too many files being open. My code looks like. for a in range(0,2**3360): try: with open(&...
Michael Hearn's user avatar
0 votes
0 answers
65 views

I've a custom Windows service (written in C#) which basically I'm using for whitelisting or blacklisting Windows applications. I don't want to use any existing Windows functionality or any commercial ...
Achal Parikh's user avatar

1
2 3 4 5
365