Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
14answers
940 views

Back-end choice for a new dynamic programming language?

I've been developing a Smalltalk variant for just the fun of it and I wonder what would be a fellow stackoverflowers choice when it comes to targeting a back-end. These were my current considerations: ...
11
votes
1answer
236 views

What are the differences in the disassembly of two .NET executables built from the same source code?

Set up: same source code is used build a .NET 4 executable (console application) on two different machines. Microsoft Visual Studio 2010 SP1 .NET 4 settings are identical on the two machines ...
11
votes
3answers
905 views

C/C++ versus Java/C# in high-performance applications

My Question is regarding performance of Java versus compiled code, for example C++/fortran/assembly in high-performance numerical applications. I know this is contentious topic, but I am looking for ...
11
votes
16answers
2k views

Developer Machine Justification

Looking for good techniques to justify "great than normal" machine for developers. The company I work for buys the same underpowered $500 dollar systems for everyone, and looking for ways to prove ...
8
votes
7answers
1k views

What are the prerequisites for studying Machine Learning?

I was always fascinated by the topic of Machine learning until I decided to teach myself how to do it. So I came through a course provided by Stanford published online. However I was shocked of the ...
8
votes
5answers
284 views

How to quantify your “slow” development machine?

( Please provide the question this one duplicates. I'm disappointed I couldn't find it. ) My development machine is "slow". I wait on it "a lot". I've been asked by decision makers who want to ...
8
votes
3answers
267 views

Learning about the low level

I'm interested in learning more about the PC from a lower (machine) level. I graduated from a school which taught us concepts using the Java language which abstracted out that level almost ...
7
votes
1answer
349 views

Is it possible to build a comparatively fast untyped lambda calculus machine?

Pure untyped lambda calculus is a powerful concept. However, building a machine or interpreter for real-world use is often described as (close to) impossible. I want to investigate this. Is it ...
6
votes
1answer
124 views

Using a virtual machine inside of a game?

I am in the design stage of making a 3d "robot programming" game. Inspired by games such as Colobot, Robot Odyssey, Cholo, etc. I want every robot in the game to have it's own isolated ...
4
votes
2answers
302 views

libsvm predict method confusion

I have a question about the svm_predict() method in libsvm. The README has this quickstart example code: >>> y, x = [1,-1], [{1:1, 3:1}, {1:-1,3:-1}] >>> prob = svm_problem(y, x) ...
4
votes
2answers
177 views

Machine model for functional programming

I've read somewhere that the current machine model is not quite fit for functional programming. So what is the limitations of the current machine model? Has a more suitable machine model been ...
4
votes
6answers
886 views

Custom robotics for building an auto CD-loading arm

Where would you recommend that I find a company to develop or buy a CD/DVD loading arm similar to: http://www.dextimus.com/ Preferably programmable via USB but if I only can get one with a serial ...
3
votes
7answers
212 views

How do instruction sets get in the computer?

Basic computer operation question but I'm not sure how to ask it. When we say that a computer has an instruction set, how does the computer know what that set is? It is on an rom chip inside the ...
3
votes
2answers
226 views

I have 2,000,000 points in 100 dimensionality space. How can I cluster them to K (e.g., 1000) clusters?

The problem comes as follows. I have M images and extract N features for each image, and the dimensionality of each feature is L. Thus, I have M*N features (2,000,000 for my case) and each feature has ...
3
votes
3answers
145 views

Is this a machine name or what?

I have a third party dll, that is supposed to return machine name. Sometimes it returns \\John-PC some other times it returns \\192.168.1.120 and recently i discovered that it returns something ...
3
votes
1answer
557 views

Machine Code tutorial for Mac

I want to learn machine code. Not for a specific reason. Just for the heck of it. I was wondering if there were any good machine code tutorials. I have a macbook with a 2.4 GHz Intel Core 2 Duo ...
3
votes
7answers
2k views

How would I go about writing a Virtual Machine

I'm interested in programming a virtual machine, nothing as fancy as virtualbox or vmware, but something that can emulate a simple architecture, be it cisc or risc, say the Zilog, SPARC, MIPS, or ...
2
votes
2answers
66 views

Does the program counter always have to change (upon an instruction tick)?

From Does the program counter always have to change (upon a clock tick)?, I already know that the PC does not have to change at each clock; as a particular instruction may take more than one clock ...
2
votes
2answers
63 views

Does the program counter always have to change (upon a clock tick)?

I'm not so familiar with computing (software) theory, and I thought about this question - does the PC (program counter) always have to change (I guess, upon each new clock tick)? I searched a bit ...
2
votes
5answers
110 views

If i write in assembly or machine language, will the program work on any computer with a compatible processor?

Basically, i'm wanting to know if i can use either machine or assembly language to write a program that will work on any computer with an x86 processor, despite differences in operating systems. For ...
2
votes
2answers
261 views

How does an assembler work?

I am looking for a brief description of the use of an assembler in producing machine code. So I know that assembly is a 1:1 translation of machine code. But I am getting confused about object code ...
2
votes
2answers
2k views

How to get Client Machine Name in ASP.NET / C#

I have application want to get user machine name, here I can retrieve and it works fine in localhost. string clientPCName; string[] computer_name = System.Net.Dns.GetHostEntry( ...
2
votes
2answers
192 views

How to implement a RESTful resource for a state machine or finite automata

I'm a Rails and REST newbie and I'm trying to figure how best to expose a resource that is backed by a domain object that has a state machine (in other words is a finite automata). I've seen a ...
2
votes
3answers
231 views

How do you “Drop down to Assembly”?

Sometimes when I'm reading stuff, usually in C++ / Ojective-C, I see people say that for speed increase (etc), if necessary, you as the programmer can drop down to Assembly. How do you actually do ...
2
votes
2answers
1k views

Finite State Machine (FSM) and Android's Java

i'm willing to develop a soccer game for Android. Because the complexity of the AI, i really think i need to design it using a FSM (Finite State Machine) and not with a monster switch. Googling ...
2
votes
3answers
125 views

How to determine the target machine from a DLL?

How can I determine the machine on which a given DLL can run. There are many platforms ARM, SH4, x64, x32. When I have no other information than the DLL itself how to do that? Background: There is a ...
2
votes
1answer
121 views

How to test an Machine Learning or statistic NLP algorithm implementation pack?

I am working on testing several Machine Learning algorithm implementations, checking whether they can work as efficient as described in the papers and making sure they could offer a great power to our ...
2
votes
2answers
70 views

How to set up a clean test machine for every test

I want to know if there are any general guidelines that programmers in general and QA in particular follows for setting up a clean test system. The system should be clean every day, free of any ...
2
votes
2answers
3k views

Access Tomcat localhost:8080 of guest VirtualBox VM from Host OS

I have an XP laptop on which I am running an Ubuntu distro inside VirtualBox which is running a website via Tomcat. When I am in the VM I can access the site with http://localhost:8080/ What I really ...
2
votes
2answers
2k views

HPUX machinfo equivalent for Linux? or What hardware am I using?

In HPUX the command "machinfo" list machine information such as Number of CPUs, Clock speed, Bus speed, processor type, Cache information, total memory, and OS version information. Is there an ...
1
vote
1answer
23 views

Difference between machine processable and machine understandable

I was wondering if anyone could tell me (with an example if possible) the difference between machine processable and machine understandable in the context of ontologies.
1
vote
0answers
55 views

Query Current State for Possible Future States in State Machine

I'm looking for a way to query a state in a state machine to find out what the possible destinations are for that state. I know that one option is to parse the Xaml for the information that I need. Is ...
1
vote
0answers
41 views

StateMachine Example Sifteo

Can someone post a quick example (implementation) of the stateMachine? The concept is pretty easy but the SDK Documentation is a little fuzzy. -- Initialize it, a few transitions with the ...
1
vote
0answers
29 views

Finding structure within a string

thank you for looking at my first post. I need to find within a string of substantial length, patterns that will allow me to break that string up into components of structure. This question is related ...
1
vote
2answers
397 views

iisreset on remote machine (C#)

Process myProcess = new Process(); ProcessStartInfo remoteAdmin = new ProcessStartInfo(Environment.GetFolderPath(Environment.SpecialFolder.System) + @"\iisreset.exe /restart"); ...
1
vote
3answers
142 views

How to create a remote virtual machine client for iPhone? (in XCode)

I desperately need to integrate a virtual machine/remote desktop connection into my iOS app because the app is going to be developed for a school and they want to access the school management system. ...
1
vote
1answer
693 views

SVMLight on OpenCV HOG Descriptor

I am trying to use SVM Light to learn a classifier for the OpenCV2.2 HOG Descriptor. I get a float vector output from the HOG descriptor. After reading the SVMLight documentation, i still cannot ...
1
vote
1answer
90 views

Problem Practical C++ Sockets or Virtual machine?

I'm trying to use this library to the sockets in c + +: Practical C++ Sockets (http://cs.baylor.edu/~donahoo/practical/CSockets/practical/) I tried a simple example of a multicast sender and receiver ...
1
vote
1answer
87 views

Can the accessed website detect if i'm using a Virtualized like machine vmware, vbox, etc?

If i access an website, it can detect if im using a virtual machine ? More specifically an Vmware image? And if the website is able to.. How can i prevent it? Thankful, Chinchila
1
vote
0answers
193 views

Looking for an English Pronunciation Dictionary in machine readable format

I'm looking for a dictionary with words with it's pronunciations. The CMUdict would be perfect - except it seems to be inconsistent in the phonemes. As as example - Actual is pronounced differently ...
1
vote
1answer
35 views

TFS for machine applications

Hallo experts, I work at a firm as a SW Tester/Validater Our company produce autoamtic machines. Recently we are introducing team foundation server for SW development. As a SW tester my tasks ...
1
vote
1answer
45 views

Best practices in logging the station that did something

I've seen too many incidents of someone having a password they shouldn't have. Thus I want to log the station from where the command came as well as who was logged in at the time. What is the best ...
1
vote
2answers
125 views

Detecting Virtualization

I have an inline assembler function detects program runs on Virtual Machine or not. But in 64bit inline assembly is not available anymore, here x64 intrinsics now. Is there another way for detecting ...
1
vote
0answers
68 views

Windows State Machine workflow: How can we achieve Parent Child workflow communication when both are hosted as WF service

I am trying to spawn child workflows as services from parent workflow which is also a workflow hosted as a service. Problems I am facing: How to spawn multiple child workflows as service ...
1
vote
1answer
634 views

Get machine name from Active Directory

I have performed an "LDAP://" query to get a list of computers within a specified OU, my issue is not being able to collect just the computer "name" or even "cn". DirectoryEntry toShutdown = ...
1
vote
4answers
644 views

Can GPU capabilities impact virtual machine performance?

While this many not seem like a programming question directly, it impacts my development activities and so it seems like it belongs here. It seems that more and more developers are turning to virtual ...
1
vote
1answer
102 views

Do Windows 7 Logo Client requirements allow an application to read/write in registry (HKLM)?

I read the windows 7 Client Requirements and they don't seem to prohibit from writing in registry (Local Machine key). I have a C# .exe application which reads/writes values in ...
1
vote
2answers
8k views

How can I create a copy of a vm in vSphere Client running on ESXi 4.0?

I'd like to create copies of the VMs located on my datastore that I can put up temporarily on a different server while I perform some maintenance on our main virtualization server. Aside from using ...
1
vote
5answers
164 views

Read instructions being executed

As the title suggests, is there any way to read the machine code instructions as/after they have been executed? For example, if I had an arbitrary block of C code and I wanted to know what ...
1
vote
2answers
109 views

Delphi low-level machine parameter access

There are many very low-level parameters measured by PCs and their processors (e.g. core temperatures, fan-speeds, voltage levels at various parts of the motherboard and processor internals) which are ...

1 2 3