1
vote
5answers
75 views
Is there any possible way to exchange data in binary format between windows and solaris
Hi Everyone,
Could someone please help and tell me if there is any possible way to pass a data structure (i.e. binary format) through internet sockets between a program running on …
0
votes
4answers
50 views
animated swap position of two buttons
I am trying to swap the position of two buttons.
my swapping code looks as below.
private void exchangeButtons(Button btn1, Button btn2) {
// Create the animation set
…
2
votes
8answers
191 views
robust string reverse
Hi,
I am trying to code a trival interview question of reversing a string.
This is my code:
#include <string.h>
char* rev( char* str)
{
int i,j,l;
l = strlen(st …
2
votes
7answers
185 views
Using pointers to swap int array values.
I am supposed to use pointers to swap ints in an array. It compiles with no errors or warnings and runs but does not swap the ints. Any suggestions would be helpful!!!
Here is the …
0
votes
2answers
37 views
Swap columns from two sql server tables
I would like to know if there is anyway I can compare two columns in SQL Server.
The two columns are located in two different tables.
When the column 1's value is smaller than th …
2
votes
4answers
93 views
Calculating % memory used on Linux
Linux noob question:
If I have 500MB of RAM, and 500MB of swap space, can the OS and processes then use 1GB of memory?
In other words, is the total amount of memory available t …
1
vote
3answers
856 views
IE6 Unit PNG fix + Javascript Swap Image not working
Hi Everyone,
I am using Unitpngfix for IE6 PNG Transparency. Everything moves fine.
Now i need to implement a menu button in png to swap when mouse over. I used dreamweaver "Add …
0
votes
3answers
48 views
On-demand paging to allow analysis of large amounts of data
I am working on an analysis tool that reads output from a process and continuously converts this to an internal format. After the "logging phase" is complete, analysis is done on t …
0
votes
0answers
180 views
what is swap memory? [closed]
Iam using RAM for storing some of my tables of database and the others are stored in hard disk.
From today onwards i came to know that my processes are using swap memory.
Now what …
0
votes
1answer
77 views
Can i limit apache+passenger memory usage on server without swap space
Hi, i'm running a rails application with apache+passenger on virtual servers that do not have any swap space configured.
The site gets decent amount of traffic with 200K+ daily re …
2
votes
3answers
206 views
Swapping Nodes on a single linked list
Trying to make a swapNode function that can take any two nodes and swap them. I've made an algorithm that works if they're at least 2 nodes away, but I can't seem to come up with a …
-2
votes
1answer
54 views
Recently, I need a memory-file swapping algorithm
My boss asked me to find some algorithms or existed libraries.
coz our application runs on linux, and it need lots of files, maybe over 5G-20G....but we dont need to load the files …
1
vote
2answers
284 views
Jquery Mouseenter/Mouse Leave image swap
Hey Guys,
So I wrote this little bit of code to try out some new way of doing an image swap for purposes of preloading and I am having a bit of trouble.
My problem is that I have …
1
vote
2answers
170 views
Java Hashmap: Swap two values?
Can I swap the keys of two values of a Hashmap, or do I need to do something clever?
Something that would look something like this:
Map.Entry<Integer, String> prev = null; …
0
votes
3answers
54 views
MySQL status swap for bitwise operators
I am looking for a solution/best practice to do a swap of values for a status flag.
The status INT(3) in mysql has a few values, and I'd like to be able to swap the LIVE and NOT_L …
