Tagged Questions
The system tag has no wiki summary.
48
votes
9answers
26k views
Getting output of system() calls in ruby
If I call a command using system() in ruby, how do I get its output?
e.g.
system("ls")
30
votes
3answers
6k views
Why doesn't System.out.println work? (in Android)
I want to print something in console so I can debug it. But for some reason, nothing prints in my Android application. How do I debug then?
public class HelloWebview extends Activity {
WebView ...
23
votes
7answers
21k views
How to get current CPU and RAM usage in Python?
What's your preferred way of getting current system status (current CPU, RAM, free disk space, etc.) in Python? Bonus points for *nix and Windows platforms.
There seems to be a few possible ways of ...
13
votes
2answers
127 views
php recursive folder readdir vs find performance
i came across few articles about performance and readdir
here is the php script:
function getDirectory( $path = '.', $level = 0 ) {
$ignore = array( 'cgi-bin', '.', '..' );
$dh = @opendir( ...
12
votes
8answers
10k views
C#: GPS Tracking system
How do I go about building a GPS tracking system with mobile (with GPS) in C#.net ?
The scenario is
Track a user (service engineer, nothing illegal here) via a GPS enabled mobile Phone. What ...
11
votes
2answers
378 views
Java system properties and environment variables
What's the difference between system properties System.getProperties() and environment variables System.getenv() in a JVM?
10
votes
5answers
2k views
How to implement tag system
i was wondering what the best way is to implement a tag system, like the one used in SO. I was thinking of this but i can't come up with a good scalable solution.
The things i was thinking was is the ...
10
votes
5answers
1k views
Can I use perl's switches with /bin/env in the shebang line?
I want to run perl -w using env. That works fine on the command line:
$ /bin/env perl -we 'print "Hello, world!\n"'
Hello, world!
But it doesn't work on the shebang line in a script:
#!/bin/env ...
9
votes
3answers
626 views
Getting user Idle time in C#?
I found this tutorial on how getting Idle time of the user Idle Time.
The problem is that it will only work if the application runs on the user.
And my application runs on SYSTEM.
Anyone know how ...
9
votes
4answers
725 views
9
votes
4answers
7k views
Adding system header search path to Xcode
(Posting this question for reference purpose, I'll answer immediately)
How to add header search paths to Xcode?
Especially using include it this syntax:
include <myheader.h>
Adding path ...
9
votes
4answers
722 views
Issuing native system commands in Scala
I want to issue a native system command from a Scala program, and perhaps trap the output. ("ls" comes to mind. There may be other ways to get directory information without issuing the command, but ...
9
votes
6answers
2k views
Why does an 8-bit field have endianness?
See the definition of TCP header in /netinet/tcp.h:
struct tcphdr
{
u_int16_t th_sport; /* source port */
u_int16_t th_dport; /* destination port */
tcp_seq th_seq; ...
9
votes
4answers
15k views
C: Run a System Command and Get Output? [closed]
Possible Duplicate:
How can I run an external program from C and parse its output?
i want to run a command in linux, and get the text returned of what it outputs...but i DO NOT want this ...
9
votes
5answers
5k views
Java System-Wide Keyboard Shortcut
Is there any way to get a system-wide (global) keyboard shortcut to
perform an action in a Java application?
Any AWT/Swing bindings?
8
votes
3answers
214 views
Haskell type system nuances
I've been getting into the nitty gritty of the haskell typesystem and trying to get at the fine points of type classes. I've learned a heap, but I'm hitting a wall on the following pieces of code.
...
8
votes
1answer
164 views
How to setup a private API-System (like google-api)
I'm looking for a web-based system to simply manage libraries (files) as a private api
(like google's framework api). The system (/or framework-module) should have the ability of managing files and ...
8
votes
1answer
165 views
Capture both exit status and output from a system call in R
I've been playing a bit with system() and system2() for fun, and it struck me that I can save either the output or the exit status in an object. A toy example:
X <- system("ping ...
8
votes
6answers
245 views
return code of system()
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
int main() {
int res = system("ps ax -o pid -o command | grep sudoku | grep gnome > /dev/null");
printf("res = %d ...
8
votes
14answers
1k views
PHP system() - return status is always 0
I need to get the following scripts running.
// File: script_a.php
<?php exit(1); ?>
// File: script_b.php
<?php
system('php script_a.php', $return);
var_dump($return);
?>
...
8
votes
5answers
452 views
How can I tell if a user is using a laptop
I need a way for my .Net Winform app to detect if my app is opened on a Laptop or a Workstation.
I have looked at Environment and SystemInformation but to no avail. Would WMI do the trick?
Thanks ...
8
votes
2answers
107 views
Question about Windows Events
I was talking with an employee the other day and I remember them mentioning a tool that we use that enables you to see what messages the OS sends/receives when an event occurs (for example, when a ...
8
votes
6answers
4k views
get unique machine id
hi all
I want to get unique unchangeable Machine id Like Processor serial number of the computer for distribute a software with out copying.I tried with processor serial number and hard disk serial ...
8
votes
10answers
2k views
Always check malloc'ed memory?
I often catch myself doing the following (in non-critical components):
some_small_struct *ptr=(some_small_struct *) malloc(sizeof(some_small_struct));
ptr->some_member= ...;
In words, I allocate ...
8
votes
12answers
839 views
Is system programming dead?
I am asking here from the perspective of a C programmer using mostly Unix. Is it still worth it to do system programming in C?
8
votes
5answers
3k views
how to put an .net application in system tray when minimized?
can anyone please suggest a good code example of vb.net/c# code to put the application in system tray when minized.
7
votes
3answers
111 views
Java - why System and Runtime classes has identical methods?
I was wondering recently why do both java.lang.Runtime and java.lang.System have the same methods for library loading, garbage collecting and similar operations. Is it because of historical reasons, ...
7
votes
1answer
284 views
Cross platform and language plugin system
I'm looking for a good, cross platform and cross language plugin system in C++.
I'm currently using Qt as a framework.
I need the plugins to be cross platform, and to be able to be created in ...
7
votes
2answers
654 views
Forming sanitary shell commands or system calls in Ruby
I'm building a daemon that will help me manage my server(s). Webmin works fine, as does just opening a shell to the server, but I'd prefer to be able to control server operations from a UI I design, ...
7
votes
1answer
537 views
Scope of System.setProperty
What's the scope of System.setProperty in Android?
If I set a property (say System.setProperty("http.keepAlive", "false")), does it affect all apps in the system, the current app, the current task ...
7
votes
2answers
596 views
How can I specify timeout limit for Perl system call?
Sometimes my system call goes into a never ending state. To, avoid that I want to be able to break out of the call after a specified amount of time.
Is there a way to specify a timeout limit to ...
7
votes
9answers
1k views
How do I find my “computer description” in a Java application on Windows and/or Mac?
I have been struggling to find the "description" of the computer on which my Java application is running.
What I'm after is the name used for DNS when advertising my computer on the local network ...
7
votes
2answers
6k views
android get version of system
Does anyone know how can I check system version (1.0 .. 2.2) in run-time?
Thanks
7
votes
5answers
3k views
How can I store Perl's system function output to a variable?
I have a problem with the system function. I want to store the system functions output to a variable.
For example,
system("ls");
Here I want all the file names in the current directory to store in ...
7
votes
16answers
612 views
Small company of 150 employees needs inexpensive Issue Tracking system
We are a small company of 150 employees and I am searching for a hosted, inexpensive Issue Tracking system for all employees, both in the office and who work remote. Does anyone know a reliable ...
7
votes
6answers
1k views
What would it take to write my own database system?
What would it take to write my own database system?
I would want to make it a server type system.
Have any successful database systems been written by one person?
7
votes
4answers
2k views
What's the differences between system and backticks and pipes in Perl?
Perl supports three ways (that I know of) of running external programs:
system:
system PROGRAM LIST
as in:
system "abc";
backticks as in:
`abc`;
running it through a pipe as in:
open ...
7
votes
1answer
151 views
Is there a good tool for documenting/monitoring System Tests?
I'm looking for a tool to design, document, and monitor System Tests for a product.
The basics of what I need are:
1) A tool that can represent some kind of Inheritance between tests (i.e., one test ...
6
votes
1answer
92 views
When and how are system calls interrupted?
This is a followup question to Is a successful send() "atomic"?, as I think it actually concerns system calls in general, not just sends on sockets.
Which system calls can be interrupted, ...
6
votes
4answers
201 views
Functions not executing before Sys.sleep()
I am writing a function that needs to catch a rate-limiting error while pinging a web-based API.
I am using tryCatch to catch the error, and inside this function I specify the following error ...
6
votes
4answers
492 views
what happens in the kernel during malloc?
I was asked this question during an interview. What they wanted to know was when the user calls malloc(4) to allocate 4 bytes of memory how does the operating system (Linux) respond? Which subsystem ...
6
votes
5answers
161 views
Why is it good to avoid instruction branching where possible?
I've often read that it's bad from a perf perspective that branching, kind of at an assembly instruction level, is bad. But I haven't really seen why it's so. So, why?
6
votes
2answers
566 views
Python: Failing to open a file using os.system()
I'm coding a Python script which is using the application pdftk a few times to perform some operations.
For example, I can use pdftk in the windows command line shell to merge two pdf files like ...
6
votes
7answers
174 views
Block potentially malicious R calls
Let's presuppose that you have R running with root/admin privileges. What R calls do you consider harmful, apart from system() and file.*()?
This is a platform-specific question, I'm running Linux, ...
6
votes
5answers
291 views
Advice on which language to use
I'm trying to create a web application which will get input from system.
What this application should do is to listen what happens when some shell scripts are executing and reporting the status ...
6
votes
3answers
320 views
Is it possible to unpage all memory in Windows?
I have plenty of RAM, however, after starting and finishing a large number of processes, it seems that most of the applications' virtual memory has been paged to disk, and switching to any of the ...
6
votes
2answers
2k views
Why fork() before setsid()
Why fork() before setsid() to daemonize a process ?
Basically, if I want to detach a process from its controlling terminal and make it a process group leader : I use setsid().
Doing this without ...
6
votes
4answers
5k views
How to list out all Foreign Keys with “WITH NOCHECK” in SQL Server
Does anyone know a query for listing out all foreign keys in a database with "WITH NOCHECK" description applied to it? (removing them will boost performance and stability).
6
votes
2answers
339 views
portable system/process information library
I need to retrieve process information in a C/C++ program. I need at least basic things like CPU% and memory usage, but additional details would be useful as well.
The problem is that I need to use ...
6
votes
8answers
16k views
PHP exec() will not execute shell command when executed via browser
I have a certain PHP script that calls exec() to execute a command to convert a PDF to JPG. This command works fine in bash.
To preempt your initial troubleshooting guesses, note the following:
...