system

What cocoa applications are using the AquaticPrime Licensing System?

I'm thinking about using the AquaticPrime licensing system for my new mac app. Is the framework popular? What apps are using it? ...

Trouble using command-line when installing SQL Server on Windows 7

I'm having trouble using this command when installing SQL Server 2005 Express with Advanced Services on Windows 7 (French settings): "\\server01\installer\DVD\Component\SQLEXPRESS_ADV\Français\Win7\SQLEXPR_ADV.EXE" -q /norebootchk reboot=ReallySuppress ADDLOCAL=ALL ADDUSERASADMIN=1 SECURITYMODE=SQL DISABLENETWORKPROTOCOLS=0 SQLAUTOSTART...

PHP based in-website mailing system.

Hello everyone, I know this question is rather vague, but how do I proceed about creating a php based in website mailing system in a community website? Any input would be appreciated. I don't know how to start. Thanks in advance. ...

Why doesn't System.out.println work? (in Java)

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 webview; private static final String LOG_TAG = "WebViewDemo"; private class HelloWebViewClient extends WebViewClient { ...

Using 7-zip via system() in c++

I'm trying to use 7-Zip to zip up a file via the system() function in C++ on a windows XP machine. I tried: (formatted to be what system() would have received) "C:\Program Files\7-Zip\7z.exe" a -tzip "bleh.zip" "addedFile.txt" which spat the error 'C:\Program' is not recognized as an internal or external command, operable program or ...

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 link is clicked in Internet Explorer (or another browser)). Can somebody please tell me what this app is called? ...

android emulator copy files in system partition

I need to copy files to the system partition of the emulator. As it is read only by default, I use the command "adb remount" to have write permissions and I can then copy the files. My problem is that when I close the emulator and that I restart it, the copied files were missing. It's very annoying because I must write file permissions t...

XAML: How are the Size and Move commands implemented in a system menu?

I have styled a window to replace the standard window chrome with a standard 'System Menu' popup and I want to implement Size and Move using the keyboard. Anyone done this or have an example? ...

What's the best LMS system out there on the market

The particular comparison points are: Ease of deployment/config. Actual price of the software and infrastructure. Customizability. With the biggest traction out there on the market. Moodle stood out as the most likely best option overall but does anyone have a suggestion of a better system? And why? ...

Is my app in /system ?

Hi! My application can be installed and run on android, in two different places: "/data/MyApplication" and "/system/MyApplication". I need to know where at the moment is my application installed, if it is in "/data/" or if it is in "/system". Can anyone help? Thank you very much ...

Do other tasks while a system() command is being executed

I have this c++ program that is doing a simple ping on a specified ip address. I am not into networking so i'm just using the system() command in c++ to execute the ping from a shell and store the results in a file, that's easy. The problem is that i want some dots to be printed on the screen while the system() command is being execute...

Monitoring and Prevention Of Systems Limit Crashes For Mnesia In An Erlang System

We have a number of cloud servers and I am building a new one to test provision of resources on. I am getting a fatal crash way before I think I ought to, as some sort of system resource is running out. =INFO REPORT==== 14-Feb-2010::12:40:14 === Setting up: "http://sub48.localhost:9000" as pirate Mnesia('[email protected]'): Data may be...

How to create a modul system for a cms?

Im building a CMS (ASP.NET C#) and I am currently looking at how to implement a module system. How is it done with most modularized systems on the web? The most important thing is that I dont want the modules messing with any of the core files. Example of a case: I have an ajax search method that is using a webservice method named Sear...

Win32 API timers....

I was using the system timer (clock() function, see time.h) to time some serial and USB comms. All I needed was approx 1ms accurace. The first thing I noticed is that individual times can be out (plus or minus) 10ms. Timing a number of smaller events led to less accurate timing as events went by. Aggregate timing was slightly better. Aft...

Unix C code cp in system()

I have a C code.. i which I have following code for UNIX: l_iRet = system( "/bin/cp -p g_acOutputLogName g_acOutPutFilePath"); when I am running the binary generated..I am getting the following error: cp: cannot access g_acOutputLogName Can any one help me out? ...

Windows Command Line History

I need to programmatically mount a WebDAV volume in Windows using C, and I think I'm going to use system() to achieve this (via the 'net use' command)... However, since net use requires that the password be written in plain text, I just wanted to make sure there's no logging of commands run in the Windows command line shell... I know in ...

What is a quick ssh command to know the system info/configuration

Ive been googling for quite some while and couldn't find it! I need to know the specs of our hosting server system. And also this command will be quite useful in the future. Thanks ...

Python and NGREP

I want to be able to start and stop an NGREP process from inside my python code. I really dont have experience with python on a system level. Normally I run NGREP from the command line, but I would like to be able to run it from a script every hour and capture the trace and then process the results. Can anyone point me in the direction...

C++/CLI Converting System::String to const char*

I'm using Microsoft Visual C++ 2008 I want to join some strings, and then use it with "system" command. I tried to do it like this: System::String^ link; link = "wget.exe --output-document=log http://ADDRESS"; link = link + System::String::Copy(textBox_login->Text); link = link + "&passwd="; link = link + System::String::Copy(textBox_p...

is there a system event I can hook into for time updates with .NET?

I'm building an application that needs to fire an event every second, but it needs to be at the top of every second. Firing between seconds is not good enough. I don't think a timer will be acceptable since, while I can set it to fire every second, I can not tell it to start at the top of the second. And it will probably drift slightly o...