Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
13answers
1k views

How to create real-life robots?

Even before I learnt programming I've been fascinated with how robots could work. Now I know how the underlying programming instructions would be written, but what I don't understand is how those ...
10
votes
6answers
6k views

How to translate a virtual memory address to a physical address?

In my C++ program (on Windows), I'm allocating a block of memory and can make sure it stays locked (unswapped and contiguous) in physical memory (i.e. using VirtualAllocEx(), MapUserPhysicalPages() ...
6
votes
3answers
3k views

Are the 4 Android buttons standard? Ex. back button, menu button

Are the physical buttons that Android phones come with standard? Specifically the back, menu, home, and search button? In my applications I assume everyone has a back button so I don't bother putting ...
4
votes
1answer
492 views

Facebook Authentication working on Emulator, But not on physical device

Hey everyone just recently developed my first android app that logs into facebook and tries to status update Without the dialog box, using the graph API. The code below is the authorization code ...
4
votes
2answers
3k views

Detecting physical Menu key press in Android

I am trying to detect when the physical Menu button on my Android phone has been pressed. I though the code below would work but it does not. Where am I going wrong please? The error returned is ...
3
votes
1answer
80 views

Get number of physical processors inside virtual machine

I'd like to know if there's a way to learn the number of physical CPU-s of a host computer when my code is running inside a VM. I'm looking for C++/assembly solutions that run in Windows and under ...
3
votes
2answers
323 views

Determine what physical hard drive a file is on?

How can I find the physical drive a file/directory is located on. I want to compare 2 files and if they are on two separate drives, then I can speed up the compare by reading both simultaneously. ...
2
votes
2answers
120 views

How do you re-duplicate a broken physical standby database?

first some data: we are using Oracle 11g databases. A primary database running on a dedicated server and a physical standby database on a separate dedicated server. We use the DataGuard feature to ...
2
votes
3answers
31 views

RNG from physical random sources

Suppose I have several sensors that sample values between -2.0 and +2.0 with long sequences having very tiny variations over time (e.g. 0.987±0.005 for 2 seconds in a row) and a very strong preference ...
2
votes
0answers
110 views

memcpy from user space to kernel space

Is it possible to copy data from a user space address to kernel space? If so, who will handle translating VMA so there are no page faults? Would memcpy guarantee this to be safe?
2
votes
2answers
954 views

how get relative virtual path from physical path in asp.net

hi my dear friends : how can i get relative virtual path from physical path in asp.net? the reverse method is like below : Server.MapPath("Virtual Path Here"); but what is the reverse of upper ...
2
votes
3answers
244 views

4 questions about processor architecture. (Computer engineering)

Our teachers has asked us around 50 true of false questions in preparation for our final exam. I could find an answer for most of them online or by asking relative. How ever, those 4 questions adrive ...
2
votes
1answer
4k views

Relative Path To Absolute Path in VB .NET

I am writing a VB .NET console app where it spits takes relative path and spits out all file name, or error for invalid input. I am havinf trouble getting PhysicalPath from RelativePath Example: ` 1. ...
2
votes
8answers
1k views

What is your software development work environment like? [closed]

Not really looking for description of bosses, but the actual physical surrounding, e.g. desks, chairs, whiteboards, reference libraries, group coffee, etc. Just interested in how many programmers ...
1
vote
1answer
113 views

Is there any way to send serial data over physical ethernet layer with no encapsulation? [closed]

I wonder if I can use the physical ethernet layer like a serial port. Is it possible? The case would be reading signals with an electronic device without dealing with networking headers.
1
vote
0answers
116 views

How can I find physical address of a file on hard disk? [closed]

I want find accurate address of a file on the hard disk or other storage device. please help me
1
vote
0answers
260 views

Physical Keyboard event for android?

Hey, this is the code for a bash script that i've made #!/system/bin/sh # # Keyboard Fix # SD_EXT_DIRECTORY=/sd-ext dev=/sys/devices/platform/msm_pmic_misc_led.0 a=`cat $SD_EXT_DIRECTORY/key.log` if ...
1
vote
2answers
307 views

Android: How to prevent opening physical keyboard restarting app

I have my android:screenOrientation="portait" on but when a physical keyboard is opened it doesn't rotate the screen as I wanted, but it restarts the app. It seems to run onCreate over again or ...
1
vote
3answers
741 views

Why is Available Physical Memory (dwAvailPhys) > Available Virtual Memory (dwAvailVirtual) in call GlobalMemoryStatus on Windows Vista x64

I am playing with an MSDN sample to do memory stress testing (see: http://msdn.microsoft.com/en-us/magazine/cc163613.aspx) and an extension of that tool that specifically eats physical memory (see ...
1
vote
3answers
237 views

i want to make a physical button a trigger for a function in my app. Possible? 3rd party accessory?

I'm currently working on an app for iPhone, Blackberry and Android, but for now, I'm just inquiring about iPhone. (FYI, I'm an ideas guy; not an actual programmer, so please don't use too many ...
0
votes
0answers
9 views

Resources for “Logical” Application Infrastructure Design

Can you recommend books/resources for designing the infrastructure of applications? I am an application architect and thus looking for books that don’t go to the lowest level (e.g. network equipment). ...
0
votes
0answers
34 views

Getting the size of some rows in a MySQL-Table

I need to get the physical size of some rows in a MySQL-Table. There are some solutions how to read out the size of a whole table over the information scheme, e.g. this article. Is there a way to ...
0
votes
3answers
50 views

Should I use a physical page for a list?

I have a table with quite a few records. Now at the moment I select them on one page. But I want to create a list. The list would contain multiple (about 5-10) pages. For this, should I use physical ...
0
votes
1answer
24 views

What are the causes for the below network scenario?

Ther are two servers A,B. Due to some reasons, Server A is able to communicate Server B. Server B is not able to communicate to Server A. Could you please me the possible reasons for the above ...
0
votes
0answers
121 views

Jna Java List of All Physical Disk and their Partition

can anyone help me to obtain a list of all physical disk with their partition? Can anyone publish a piece of code to do it or tell me all the step to do this? I know that there are already some ...
0
votes
0answers
79 views

MongoDB best practices for physical server configurations

I'm pretty new to MongoDB but I think it's going to be a perfect fit for some scalability issues we've been suffering from with SQL Server. Up to now we've been storing XML documents in the database. ...
0
votes
0answers
58 views

IO with physical disk in Ring0

How do I write and read data from physical disk (can be HDD or SSD - i. e. the code should be abstracted of CHS, I know LBA can do) in Windows within Ring0? I need to be able to write or read exact ...
0
votes
1answer
109 views

asp.net VirtualPathProvider - no longer recognising physical files

I'm using VirtualPathProvider to return virtual pages from a database table and it's all working fine but the problem is that the site no longer recognises when a page exists physically rather than ...
0
votes
0answers
667 views

Android - handle virtual & physical keyboard events

After reading answers to several similar questions* I did realize that onKeyListener() does not get key press events from a soft (virtual) keyboard. It gets them only from a hard (physical) keyboard. ...
0
votes
1answer
156 views

Printing same physical address in a c program

Is there is a way to print the same physical address in these Program ( while using shared memory concept ) rather than printing different logical addresses... The reason for me to print the same ...
0
votes
0answers
326 views

vxWorks 6.8 mapping physical to virtual memory

This is my first question here :). I been trying for while now to map physical memory to virtual memory in vxWorks 6.8 with no success, I'm trying to use "vmMap" function but somehow it keeps return ...
0
votes
1answer
395 views

Desire Z: change keybord physical Layout [closed]

I'm a brand new owner of Dezire Z cellphone and I'm facing a problem... My phone is Italian, as an android phone all langage are possible for VIRTUAL keyboard, but when I try to use my physical ...
0
votes
1answer
434 views

How to remap physical keyboard, or to change Android OS to another language

Hello all I have a Desire Z Android 2.2 English with psysical keyboard. I need to have three local characters on the physical keyboard. I can certainly access them via longpress and choose on touch ...
0
votes
1answer
566 views

iPad: Detecting External Keyboard

My app uses a UIAccessoryView to provide additional keyboard functionality (such as forward/backward tabs and arrows keys) for the virtual keyboard, but that causes UIKeyboardDidShowNotification to ...
0
votes
3answers
1k views

Convert physical path to web path asp.net

I need to display an Image in web page. But the Image doesn't exist in the Web directory. If the image is under web directory I know that just "../Images/TN/my.jpg" will work. But the image is ...
0
votes
3answers
56 views

How to get the physical location of a reference?

I want to know where the references of our project physically stored on the machine but I don't know how. Viewing their properties doesn't help. Do you have any ideas?
0
votes
1answer
194 views

Nehalem memory architecture address mapping

Given a 2 processor Nehalem Xeon server with 12GB of RAM (6x2GB), how are memory addresses mapped onto the physical memory modules? I would imagine that on a single processor Nehalem with 3 identical ...
0
votes
3answers
7k views

Difference between logical addresses, and physical addresses?

I am reading Operating Systems Concept and I am on the 8th chapter! However I could use some clarification, or reassurance that my understanding is correct. Logical Addresses: Logical addresses are ...
0
votes
2answers
563 views

iPhone Launch Image zoom animation not working on physical device

I have developed an iPhone app with a launch image. When starting the app in the simulator, the image zooms in as expected. However, when the app is deployed to my physical device, the zoom animation ...
0
votes
3answers
549 views

Drag+Drop with physical behaviour

I'd like to implement a dragging feature where users can drag objects around the workspace. That of course is the easy bit. The hard bit is to try and make it a physically correct drag which ...
-1
votes
1answer
171 views

Printing the physical address space of shared memory

In C program I got 2 programs one to store a string in a shared memory and the other program is to print the same string via accessing the shared memory. program 1-> printf("\n SENDER ADDRESS"); ...