Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
268 views

Is it possible to make user input invisible as a 'sudo' password input?

I'm using raw_input() to receive password from user in interactive mode, but I want to make input symbols invisible for security reasons, as it is when you're typing your password using sudo or ...
5
votes
1answer
674 views

Why doesn't my UIImageView respond to taps?

I have a UIImageView that's being loaded from a NIB. I've hooked up a gesture recognizer to it to handle taps, but when I run the app, taps aren't being detected.
5
votes
4answers
369 views

Why aren't they around that much? [closed]

I'm currently doing research on adaptive interfaces and i'd like to hear some responses from fellow Web Developers on this subject. We used to have static interfaces back in the day, where you ...
5
votes
8answers
360 views

great first run experience

Does anyone have good examples of software that has a fantastic first run experience? Some software obviously just works "out of the box". However, there is significant software that requires some ...
5
votes
4answers
3k views

How to create a graphical user interface mock-up for research?

I am a student and interested in doing some research on user interface. For some experiments, I have to change the behaviors of many default interactions in an operating system such as double-click or ...
3
votes
2answers
165 views

Process interaction(c# and pure c++)

I've got c# dispatcher and fast c++ program for data processing.I need pass data(initializtion) to c++ program from c# dispatcher. Passing data is primitive type: config strings, decimals. I don't ...
3
votes
1answer
123 views

Is there a recommended way for interaction between python and MySQL?

What is the recommonded way to interact between python and MySQL? Currently I am using MySQLdb and I heared from Oursql. But I asked myself, if there is a more appropriate way to manage this.
3
votes
2answers
353 views

unsplit list, merge factors in R

Hi I have the following data frame in R: c1 c2 1 10 a 2 20 a 3 30 b 4 40 b I then split it as follows: z = lapply(split(test$c1, test$c2), function(x) {cut(x,2)}) . z is then: $a ...
3
votes
2answers
127 views

(console) user interaction in R?

I am sure you all know the "hit return to show next plot" statement when executing the plot command on a regression object. I wonder how I can do this kind of interaction on my own in R. I found a ...
3
votes
5answers
244 views

Cross-process interaction under C++

Please help, how can I organize the process-process data exchange (in Windows, if that matters)? I have process1.exe which calls process2.exe with a few command line arguments. I want to track ...
3
votes
1answer
603 views

how to interact with website using HttpURLConnection?

Here is the story: There is a website with some form fields. After filling in the fields the user can click on search. By clicking the search button a list of links will be returned and shown ...
3
votes
3answers
3k views

iPhone interaction between PC app and iPhone app using USB

I know since the 3.0 SDK we can use accessories, so my question is simple, what is the process to make an iPhone app and PC (or Mac) app interact, using the USB ? I don't ask you any code, but just ...
3
votes
2answers
1k views

Interact with other desktop-applications in windows using C# winforms

I was wondering if its possible to interact with other programs someone with my program. For example clicking a button on another program etc. etc. I'm not sure if this is even possible but if it is ...
2
votes
1answer
105 views

Use EventTrigger on a specific key

I would like to invoke a command using EventTrigger when a particular key is touched (for example, the spacebar key) Currently I have: <i:Interaction.Triggers> <i:EventTrigger ...
2
votes
2answers
166 views

Interact with ffmpeg from a .NET program?

I'm trying to create a .NET wrapper for media-file conversion using ffmepg, here is what I've tried: static void Main(string[] args) { if (File.Exists("sample.mp3")) File.Delete("sample.mp3"); ...
2
votes
1answer
75 views

Stop user interaction on view

My code does an animation that flips from right to left. The problem is while its switching, only a .75 second animation, the user is still able to interact with the program. I dont want them to be ...
2
votes
2answers
132 views

WindowsForms difference to simple Console App

I currently started to "port" my console projects to WinForms, but it seems I am badly failing doing that. I am simply used to a console structure: I got my classes interacting with each other ...
2
votes
1answer
121 views

Interaction between C++ and Rails applications

I have two applications: c++ service and a RoR web server (they are both running at same VPS) I need to "send" some variables (and then do something with them) from each other. For exaple, i'm ...
2
votes
2answers
470 views

Multi-touch design and interaction pattern, do you have any link?

I develop a collaborative business application on a multi-touch device like Microsoft Surface. However to my mind every collaborative application on a multi-touch device was made to share photos, to ...
2
votes
4answers
763 views

How can I post a Cocoa “sheet” on another program's window?

Using the Apple OS X Cocoa framework, how can I post a sheet (slide-down modal dialog) on the window of another process? Edit: Clarified a bit: My application is a Finder extension to do Subversion ...
1
vote
1answer
157 views

Interact with ffmpeg from a .NET program - Write Input

In reference to this question, as you can see I managed to run and receive data from the program. However I didn't manage to submit data to it, for instance, while converting a file, pressing q ...
1
vote
1answer
49 views

Get 2 Greasemonkey scripts to interact with each other?

I have two scripts. I put them in the same namespace (the @namespace field). I'd like them to interactive with another. Specifically I want script A to set RunByDefault to 123. Have script B check ...
1
vote
1answer
583 views

How I can use infinite scrolling in the webpage where I want it?

I am using an infinite scrolling jQuery plugin to implement a Twitter-like paging feature. Now, when I click on the more link, the request goes to server and it gives the response as HTML. First I ...
1
vote
3answers
217 views

Is there a way to easily determine that a shape drawn in canvas has been clicked on?

I am learning how to use the HTML5 canvas right now. I have a simple script which draws circles along a horizontal line. I would like to enhance my script to be more interactive. I want to be able to ...
1
vote
1answer
281 views

Uninstall Android App without user interaction

If you have superuser permissions you can delete apk file from data/app but app list don't refresh if you don't reboot phone, so I don't know how can I uninstall one app without user interaction, or ...
1
vote
2answers
277 views

Call Perl within Tcl

Quick question. How can I call a perl script (using arguments) within tcl and collect output and store it in a variable, which later will be printed out on IRC (using eggdrop). Thanks! =)
1
vote
1answer
105 views

Social Media Linking

I've done a little searching and was wondering if there is a way to link a users account in our web app with their social media accounts they choose to link (facebook, twitter, etc). i.e. when they ...
1
vote
5answers
360 views

Python and C++ script interaction

I am trying to optimize the interaction between two scripts I have. Two things I thought of are the c++ program not terminating unless you manually kill it, or generating all info in python before ...
1
vote
4answers
186 views

Python Backend Logic Adding MVC Framework (Django)

I have a Python CLI program, with SQL database models and want to add a frontend with a MVC framework (such as Django). What's the best way to interface my program with the framework, if I've already ...
1
vote
3answers
195 views

Interactions/Communications between a C++ and a Java program

I've got an app written in Java and some native C++ code with system hooks. These two have to communicate with each other. I mean the C++ subprogram must send some data to the Java one. I would've ...
1
vote
0answers
301 views

events doesn't work with the InvokeCommandAction

i am using a webbrowser control and interaction-triggers , and there is some events which don't work like ScriptNotify and LoadCompleted is this an limitation or there is something i should do Thanks ...
1
vote
2answers
266 views

LINQ to SQL - How do stored procedures interact with unsubmited datacontext changes?

Someone here asked: "Linq-To-Sql enables calling SPs. If this SP executes an update/delete/insert, do I need to SubmitChanges() after it?" And the answer was: "No you don't. The code will work. ...
1
vote
4answers
571 views

Writing a simple web crawler that interacts with the browser (Java)

I need to create an automated process (preferably using Java) that will: Open browser with specific url. Login, using the username and password specified. Follow one of the links on the page. ...
1
vote
1answer
428 views

Blend Interaction Behaviour gives “points to immutable instance” error

I have a UserControl that is a base class for other user controls, that are shown in "modal view". I want to have all user controls fading in, when shown and fading out when closed. I also want a ...
1
vote
1answer
517 views

Matlab and .NET Interaction

I'm having an issue interacting between Matlab and .NET. I've managed to call .NET methods from Matlab code and vice versa. However, if I call a .NET method that, in turn, instantiates a Matlab ...
1
vote
2answers
187 views

Dual usage of asp.net mvc and php under same domain

I've got a scenario where we have a customer who has a linux hosted php app (joomla) that they wish to integrate with some back-end asp.net mvc functionality that was created for a 'sister' site. ...
1
vote
1answer
263 views

JavaScript Trigger window.open When a User Clicks Anywhere on Page

I have a problem that I have been trying to figure out and haven't been able to get past it because Chrome/FireFox/IE do not publicly publish their "rules" for pop up blocking when it comes to ...
1
vote
3answers
471 views

what are evaluation techniques for HCI projects (without involving users, or psychologist)?

I'm going to choose a topic for my thesis and it will be a HCI project. (human computer interaction). It will be a research project, and I need to think some kind of evaluation for it. I would prefer ...
1
vote
2answers
379 views

interaction between javascript (desktop application) and C#

I am writing for my desktop some application for handling some services. I wrote in C# an application that calculates something (lets call it cl.exe) I created a .bat file that starts the cl.exe. I ...
1
vote
4answers
137 views

Is there any special tool for interactive GUI development

Currently I am preparing exercises about networks and mobile communications for students. I was thinking about creating an interactive user-interface which enables the user to drag&drop predefined ...
1
vote
2answers
69 views

How to design an extensible type infrastructure with dependencies among each other

My application is an editor for connecting "modules" (through module ports). Ports have port types. Each port type has it's associated comparator. Two types are compatible if their attributes satisfy ...
1
vote
6answers
744 views

Interaction between Java App and Python App

I have a python application which I cant edit its a black box from my point of view. The python application knows how to process text and return processed text. I have another application written in ...
1
vote
1answer
162 views

C# Interacting with existing executables in Windows CE using Compact Framework?

How would I go about interacting with an existing executable on Windows CE using the Compact Framework? I figure I am overlooking something simple. Here is the scenario: I am trying to write a ...
1
vote
0answers
73 views

Is an integrated help/advisor UI design the best way to implement a workflow?

I'd like some feedback, and opinions on the following approach to UI design: We're working on an application that implements a series of industry-standard protocols. Each protocol dictates (very ...
1
vote
1answer
971 views

UITableView: user interaction with section's footer

For one of UITableView sections I have put a view with a UIDatePicker into it's footer (using tableview:viewForFooterInSection:). The problem is that UIDatePicker receives only single touch events ...
1
vote
5answers
423 views

Keyboard and mouse interaction on Linux

I use Linux because it is a superior development environment to Windows. However I recently came across a Windows library called AHK that gives me great control to interact with applications. Is ...
1
vote
5answers
252 views

Interaction between DLLs

I have a DLL, say A, which implements general algorithms to solve mathematical equations. I have another DLL, say B, which implements mathematical equations DLL B uses DLL A in order to solve it’s ...
1
vote
1answer
1k views

Interfacing Eclipse Workbench UI with GNU debugger functions

I want to know how the Eclipse Workbench UI communicates with the GNU debugger. What I mean is in the Eclipse for C/C++, when we press the step over or resume or continue buttons in the menu, what ...
1
vote
6answers
1k views

How to make two python programs interact?

I have a HTTP sever in one program and my basic application in another one. Both of them are loops, so I have no idea how to: Write a script that would start the app and then the HTTP server; Make ...
1
vote
2answers
137 views

Is there chemistry in you development team? [closed]

I've had two intership at the same company and one things that bothered me is the fact that everyone was in their own world doing their stuff and listening to music. I knew I would not want to work ...

1 2 3