The externally observable consequences of calling a program on some input
0
votes
2answers
34 views
Strange output when using dummy variable from For loop [closed]
I'm currently in my first year of studying a Bachelor of Computer science, and my recent programming project has re-ignited my love of coding, so I've decided to start my own long term project that I ...
0
votes
1answer
33 views
PHP script downloads fine on Localhost but on live site outputs file
Forgive me I'm a complete virgin at PHP, I'm writing a plugin for wordpress that allows someone to sell a code to a customer, inturn this customer then visits the site and enters that code in to a ...
0
votes
1answer
51 views
What language/tools should I learn and use? (for specific task) [closed]
I'm almost completely new to programming (I've only made rudimentary maths programs in Python) so I would like to approach learning to program properly. In order to get proper advice, you need to know ...
0
votes
3answers
26 views
Awk string help finding information
Hi I have a line I am trying to parse. The line looks like this
Edward C. Anderson, Broker ~ 813.841.2773 ~ ed@action100realty.com
I am new to awk and have tried to do my research. I see that ...
1
vote
1answer
32 views
Check if certain text was outputted to the screen PHP
How would I check if certain text was outputted to the screen using PHP? For example, I have this code:
<html>
<body>
<noscript>
error: no js
<noscript>
<?php
//detect if ...
0
votes
0answers
12 views
standard deviation M5P
I am using the M5P() trees from the RWeka package. I have two questions:
Interpretation of output: What do the numbers in brackets mean (see example below)?
M5 pruned model tree:
(using smoothed ...
1
vote
0answers
30 views
How to display progress of scipy.optimize function?
I use scipy.optimize to minimize a function of 12 arguments.
I started the optimization a while ago and still waiting for results.
Is there a way to force scipy.optimize to display its progress ...
-1
votes
4answers
78 views
Can anyone explain the output
If I try to print a float as an int, this code:
main () {
float a = 6.8f;
printf("%d", a);
}
...
0
votes
1answer
17 views
Output to a file after running Python script line by line and spaces between columns
I am trying to run a python script which reads the contents of the input file and need to display in a line by line ( row by row) format in the output file.
Script is as ...
0
votes
1answer
30 views
Capturing output from java
I'm trying to capture output from a java app but I'm missing something. I'm using the following batch file:
@echo off
echo Start of batch
java makeQRCode
echo End of batch
If I run the batch file ...
0
votes
1answer
21 views
how do i output an xml file using rest
i have an xml file called articles.xml that i am trying to access with a rest service.
what i want to do is get all the articles in the articles.xml file and display them using a rest service.
i have ...
1
vote
1answer
45 views
Is there a “null” printf code that doesn't print anything, used to skip a parameter?
If I want a program to have multiple text output formats, I could do something like this:
const char *fmtDefault = "%u x %s ($%.2f each)\n";
const char *fmtMultiLine = "Qty: %3u\nItem: %s\nPrice per ...
1
vote
2answers
31 views
For loop output to a list mathematica
I can't seem to get the output from this mess into a list, I know the code is poor, but it works. It takes a value from each iteration of the loop, its this output I need as a list. I can do it ...
1
vote
3answers
19 views
redirect bash output and error for all commands
How to redirect all commands executed on the bash to /dev/null ?
It's obvious that for a command we have to do:
command > /dev/null 2>&1
How about all commands that will be executed ...
0
votes
0answers
14 views
How to retrieve complete dbms_output and execute immediatly his content
This is my first post and I want to thank you for all the help I've found by browsing your site.
I'm not qualified to write PL/SQL but I periodically try to automate some tasks I execute in ...
0
votes
1answer
32 views
remove a “bad address” error from the standard output on the linux terminal [closed]
when attempting to copy a file inside a mounted directory, I got this message printed on my terminal:
cp: writing `file': Bad address
However, the copying operation is successfully executed, but I ...
0
votes
4answers
45 views
php - output last block of text(separated by empty lines) from a text file
I have a large text file in this form:
This is a linie of text.
This is a linie of text.
This is a linie of text.
This is a linie of text.
This is a linie of text.
This is a linie of text.
This is ...
1
vote
1answer
34 views
Python outputs only after script has finished in Komodo Edit
Forgive me if it's a silly question. I'm new to Python and scripting languages. Now I'm using Komodo Edit to code and run Python programs. Each time I run it, I have to wait until the program finished ...
0
votes
3answers
63 views
Output Crash in array
Array is defined in the code
and we should count the number of positive numbers in the array
and create a new array and insert all the positive numbers in it if the positive numbers
in the original ...
0
votes
2answers
23 views
Six channel output with NAudio? (Or suggestions for other .NET library that supports it?)
I've written a method in C# using NAudio that successfully outputs 2 channel sound, but fails at 6 channel sound.
When using WaveOut, I get 'MmException was unhandled: InvalidParameter calling ...
0
votes
1answer
33 views
printing output in assembly x86
I have this code:
INCLUDE Irvine32.inc
.data
arry BYTE ?
prompt1 BYTE "Enter first hex number: ",0
prompt2 BYTE "Enter second hex number: ",0
prompt3 BYTE "The sum is ",0
prompt4 ...
0
votes
0answers
17 views
Dreamweaver Java coding, one of my functions refuses to run/update
Ok so I am creating a website for my new company and I am nowhere near as skilled as I need to be to create this thing.
So my website is for my custom computer company and I am trying to create a ...
0
votes
3answers
54 views
Array returning memory allocation instead of value in Java
Consider a simple case like this one :
public static void array()
{
String myString = "STACKOVERFLOW";
int [] checkVal = new int[myString.length()];
for(int i=0; ...
0
votes
1answer
19 views
jQuery slider output
I have this strange problem. Here is my fiddle: http://jsfiddle.net/m6qJC/7/
And as you can see, it should take value of a first slider, then the second one, do some calculating and print result. ...
0
votes
1answer
25 views
How to center align columns of different lengths using numpy.savetxt in Python?
I have several lists that contain both strings and floats as their elements.
import numpy as num
COLUMN_1 = ['KIC 7742534', 'Variable Star of RR Lyr type' , 'V* V368 Lyr',
'KIC 7742534', ...
0
votes
2answers
23 views
Using Linux Grep command - need output to text file, cleaner output [closed]
When using the Grep command to find a search string in a set of files, is there a way to dump the results
to a text file?
Also is there a switch for the Grep command that provides cleaner results ...
0
votes
3answers
33 views
Java check if user is typing in the console
Is there a way to check if the user is typing in the console window in Java? My program prints information it receives about client connections using System.out.print() and I want it to stop printing ...
0
votes
1answer
23 views
I am not getting the out put file for the below sql batch file
@echo off
set sql_exe="C:\Program Files\MySQL\MySQL Server 5.1\bin\mysql.exe"
set sql_options=-user root -password amma
set sql_db="C:\Documents and Settings\All Users\Application Data\MySQL\MySQL ...
1
vote
1answer
62 views
How to use python numpy.savetxt to write strings and float number to an ASCII file?
I have a set of lists that contain both strings and float numbers, such as:
import numpy as num
NAMES = num.array(['NAME_1', 'NAME_2', 'NAME_3'])
FLOATS = num.array([ 0.5 , 0.2 , 0.3 ])
...
0
votes
0answers
11 views
VS2012 Error from Entity Data Model: “Could not parse configuration file.”
I have .NET C# project that uses Entity Framework 4.0. When I load the project in Visual Studio, I get a message every time in my Output window:
Could not parse configuration file. The error message ...
0
votes
5answers
134 views
why is the following code wrong?
I recently faced an interview question on what's the hidden problem with the following code. I was unable to detect it .Can anyone help?
#include<stdio.h>
int main(void)
{
char buff[10];
...
0
votes
0answers
22 views
how to flush the scraped items using feed export in scrapy
I have 2 questions about python scrapy tool:
do "csv feed export" export the scraped items instantly or the scraped items are stored in a cache and being exported when the cache is full?
if the ...
1
vote
2answers
25 views
Printing output formatting
I have this function that takes a list and prints it out to an outfile:
def writeToFile(files):
for path2 in files:
fi= open(fileo, 'w')
fi.truncate()
fi.write('\n' + str(foundFiles2))
...
0
votes
2answers
19 views
PHP output to file for download without creating file on the server
I would like to output my data to a file for the user to download without actually creating the file physically on the server. The data of the file is simply array that I'm converting into a CSV ...
0
votes
1answer
22 views
In MATLAB, Saving Plots to a Folder with Title Name
In MATLAB, I'm trying to plot a series of plots in a loop with the following data:
x1 = [ 1 2 3 4 5]
y1 = [ 1 1 1 1 1]
x2 = [ 1 2 3 4 5]
y2 = [ 2 2 2 2 2]
x3 = [ 1 2 3 4 5]
y3 ...
0
votes
1answer
18 views
Neural Network Output
I'm working on a dataset that states whether one is positive or negative of diabetes. If in my data set, the number of observations negative of diabetes is 10 times greater than those of my ...
0
votes
0answers
11 views
can not get out put from pg_dump.exe command line
i'm developing an application to get backup from my postgreSQL database with C#.
i,m using code below to execute and get out put from pg_dump.exe.
ProcessStartInfo startinfo = new ProcessStartInfo
...
0
votes
2answers
43 views
Printing contents of dictionary in random order
I am fairly new to Python. Infact, today is my first day in Python. I was following a tutorial and read about dictionary.
But I don't know what is the order in which contents of a dictionary are ...
0
votes
1answer
38 views
Script output after timeout command
i use symfony (php framework) task class to create cli scripts. Currently i wrote this kind of script:
#!/bin/bash
timeout 3600 ./symfony pparse:prices
But there is no output, I need that script ...
0
votes
1answer
32 views
Show bash script output in live on perl - curses script
I'm a newb' on Perl, and try to do a simple script's launcher in Perl with Curses (Curses::UI)
On Stackoverflow I found a solution to print (in Perl) in real time the output of a Bash script.
But I ...
0
votes
0answers
20 views
after updating datatable inputText display its old value but outputText doesn't primefaces
I have this column in my datatable (as you see inputText and OutputText have sam value : I write it with js )
//formatting the code
<p:column headerText="Taux PayƩ">
<h:outputText ...
0
votes
0answers
13 views
Word auto-outputting error in Visual Studio 2010
I am having the following problems with Visual Studio 2010:
I have created a program using Visual Studio 2010, that when a certain word is input, the nickname for that person is output to the textbox.
...
0
votes
2answers
34 views
Scroll linux shell script output without piping
I have a linux bash script.sh. I can easily scroll the output like this:
$ ./script.sh | less
But how do I make the output display scrollable automatically, without having to pipe it through ...
0
votes
1answer
15 views
Is there a way to view the console of CruiseControl.NET remotely?
Is there a way to remotely view the terminal output of CruiseControl.NET remotely? At present, I am running the following command using an instance of Git Bash on the terminal log file located over a ...
1
vote
1answer
54 views
Converting simulink blocks to code for a GUI?
I would like to create a GUI in MATLAB that has two sliders that can be used to adjust the value a and b. I know I can get the GUI to open simulink and have simulink do this and then packet the ...
0
votes
0answers
38 views
QT5 QAudioOutput setVolume not working above 0.5
I'm linking a slider to a QAudioOutput::setVolume method, but when my volume is higher than 0.5, nothing changes (no higher volume and no cursor increase in the windows mixer).
Values are certainly ...
0
votes
1answer
20 views
Python 3.3 - Getting Header and redirect the results
I would like to create a script that look to a file, read each line (which are url) and fetch the HTTP header for me.
I have a questions :
I try to redirect the result to a text file but, anyhow I ...
3
votes
1answer
37 views
How to suppress correlation table in LME?
In the standard example of the lme() function in the nlme package of R:
fm2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1)
summary(fm2)
there appears a correlation table:
...
-3
votes
3answers
53 views
simple java incrementing not clear [closed]
im trying to understand the basics of incrementing in Java...Here I have the basic example and I'm not understanding the output of it very crearly...so it starts as 4 which is 2 * 2 of course, and 9 ...
0
votes
1answer
24 views
Extract Information From Date (varchar) and transmute into output
Background
I am extending a web application which must 'extract' information from a varchar variable in a mySQL table. Now although I am quite familiar the is the most convoluted way to actually ...








