Changing position of two items.
2
votes
1answer
16 views
Switching the order of multiple sets of elements with jQuery
I have a number of elements on a page which contain a header and an image, which I would like to change the order of. E.g switching the order of the img with the h2:
<section>
<img>
...
0
votes
3answers
38 views
How to change 2 strings using a function, by changing their pointers' value
main()
char *s1="Second";
char *s2="First";
swap(s1,s2);
printf("%s\n",s1);
printf("%s\n",s2);
I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
1
vote
1answer
21 views
C: Swap function with 3 arguments
I have a little question that is giving me and headache. What I need to do is reading a .txt file which has shuffled random numbers, save them into an array, and print them to the screen sortted (with ...
0
votes
0answers
23 views
How can I add children to an grid based on a template?
I'm fairly new to XAML but enjoying learning it. I'm not really sure about the legal consequences so I mocked my case a little ;)
I have some problems with templates. I have a main grid with a child ...
0
votes
4answers
132 views
Why don't people use xor swaps? [closed]
I read on a site that using xor swaps is fast because it doesn't use a temporary variable. Here's an example:
#include <stdio.h>
int main(void)
{
int a=234,b=789;
b=b^a;
...
0
votes
1answer
60 views
Javascript image and href swap on image gallery
I have an image gallery on my site that has one large display image with caption and 3 smaller thumbnail images below. Right now, I have a javascript that enables the display image and caption to be ...
0
votes
4answers
41 views
Function for swapping 2 elements in an array doesn't work
I am new with C# and I can't understand why this code doesn't work.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ...
2
votes
2answers
64 views
Using swap vs changing pointers to vectors
I have 2 vectors of integers. Occasionally, I would like to swap the two (details for why are below). The two options I am considering is using the swap function or swapping the pointers. I see that ...
0
votes
0answers
18 views
Moving an item in android gridview
I have a question about moving an image piece to empty cell in android gridview. I'm doing sliding puzzle in android. I split an image with respect to level(3*3, 4*4, 5*5 etc.) by doing bitmap ...
0
votes
1answer
24 views
how to swap current fragment shader color with neighbors?
I have a shader with a sampler texture. is it possible to swap the color of the current fragment with any of its neighbors? if it so, how?
uniform sampler2D map;
varying vec2 vuv;
void main() {
...
0
votes
1answer
24 views
Linux amount of swap displayed by “free” is different from “smem”
I am trying to analyze from where the amount of swap is from, and looking at smem display I get a completely different amount of swap usage.
Free shows the following :
[root@server1 ~/smem-1.3]# ...
-1
votes
1answer
8 views
Swapping a business 'page' from one account to another.
A photography partner of mine created two business 'pages' on his Facebook page. One for himself and one for me. I want to swap the business page that was made for me over to my personal facebook ...
0
votes
0answers
13 views
How can i exchange two values in NSMutableArray?
I have used following code:
- (void) tableView: (UITableView *) tableView moveRowAtIndexPath: (NSIndexPath *) from toIndexPath: (NSIndexPath *) to
{
NSMutableArray ...
-1
votes
1answer
16 views
How to check where OS is installed [closed]
I'm using a server with 2 HDD's in RAID 1 and 1 SSD drive. I'd like to know if the OS is installed on the normal HDD's or on the SSD. How can I do that ? I'm running Cloudlinux.
Also, how can I find ...
0
votes
1answer
34 views
Swapping Screens in Android with Button Click
i try to make 2 screen activities in Android, and a button on each one, when you click the button to go to the other screen.
I have made everything like in this tutorial: Watch It here
But, if i ...
-6
votes
1answer
58 views
Is there any other way to swap address of pointers to interchange value? [closed]
Is there any other way to swap address of pointers to interchange value ?
Below is one way to do the same. Here we are not changing values saved on address.
void Change_Address( int *&p, int ...
0
votes
0answers
41 views
swapping values in different tables if the data exist then value + 1 if data = 0 then delete
i have this table called bag:
+--------+----------+---------+----------+
| bag_id | chara_id | item_id | item_qty |
+--------+----------+---------+----------+
| 1 | 1 | 2 | 26 ...
0
votes
0answers
6 views
swaping colors in translucent gradient
i am using gimp 2.6 (comes with ubuntu).
i am an absolute beginner when it comes to image manipulation. so i might even have the terms wrong.
background:
i have an image (lets say a face) where the ...
1
vote
2answers
58 views
Macro SWAP(t,x,y) exchanging two arguments of type t
So I am basically trying to make a SWAP(t,x,y) macro that exchanges two arguments of type t. I am trying to think of going around the problem when these two arguments are of the form
v[i++] and ...
1
vote
3answers
42 views
Swap sublists in a List<MyObject>
Is there an easy method to swap 2 sublists in a List.
Example:
[0 1 2 3 4 5 6 7 8 9 10 11] --> [0 1 8 9 10 4 5 6 7 2 3 11]
--> Sublist1= [2 3]
--> Sublist2= [8 9 10]
0
votes
2answers
79 views
Reverse array isn't in sequence [closed]
I trying to reverse the elements in an array. For example, I got :
15 69 94 52 97 51 17 18 50 18
And it would be in :
18 50 18 17 51 97 52 94 69 15 (which is reversed)
However, this is ...
0
votes
3answers
109 views
Swap elements in array to reverse an array
I got an assignment to reverse an dynamic array in C++. So far, from my logic, I thinking of loop thru the array to reverse it. And here comes my code :
int main ()
{
const int size = 10;
int ...
1
vote
0answers
78 views
jQuery UI drag drop swap elements
I cant handle with one thing - swap elements betweens two divs.
Here is my code
$(function () {
$('#container').sortable({
tolerance: "pointer"
});
$('#box1').sortable({
...
0
votes
1answer
41 views
Combining thumbnail rollover with image swap and Fancybox 2
I'm trying to combine a thumbnail rollover (which displays a larger image above the thumbs) with Fancybox. If you take a look at this test page you'll see what I'm talking about: ...
0
votes
1answer
38 views
Swapping Axes in Pandas
What is the most efficient way to swap the axes of a Pandas Dataframe?
For example, how could df1 be converted to df2 below?
In [2]: import pandas as pd
In [3]: df1 = pd.DataFrame({'one' : [1., 2., ...
0
votes
0answers
14 views
Can existing Swap space on Solaris UFS be reduced? [closed]
Can existing Swap space on Solaris "UFS" be reduced with out re-imaging the OS?
-1
votes
1answer
46 views
C++ Template Swap Function
I need to make a swap function that swaps two parameters of type T.
And following is what I code but something must be wrong.
Could anybody better my codes?
template<typename T>
void swap ...
-2
votes
2answers
78 views
Php sessions switch image [duplicate]
i have an home button on my website, this home button is a image of a house. But i want to make my website a userfriendly website. So if someone is clicking on the button the home button is changing ...
3
votes
6answers
118 views
How to swap two variables in JavaScript
I have this two variables:
var a = 1,
b = 2;
My question is how to swap them? Only this variables, not any objects.
0
votes
3answers
35 views
Trouble with swap method-java
Hello everyone I am currently creating a program where I want to swap index 2 and 4. I have the code completed however I do not receive an output and when I run the program I do not receive an error
...
0
votes
2answers
80 views
Javascript swap 2 images
i'm busy with a project but know im stuck at some point. What i want to do is, when someone presses the home button it changes his color. How I wanted to do is swap from image 1 (white) to image 2 ...
6
votes
3answers
184 views
using directive vs using declaration swap in C++
Please refer to the code below:
#include <algorithm>
namespace N
{
template <typename T>
class C
{
public:
void SwapWith(C & c)
{
using ...
0
votes
2answers
40 views
Swap two objects in JavaScript
I have the following code:
MyObject.prototype.doIt = function()
{
var a = this.obj1;
var b = this.obj2;
}
How can i swap the values of this.obj1 and this.obj2 so obj1 becomes obj2 and ...
0
votes
2answers
104 views
delete similar elements in an array in ruby
I have the following array
a3 = [["a", "b"], ["a","c"], ["b","c"], ["b", "a"], ["c","b"]]
I want to get the following output [["a","b"], ["a","c"], ["b","c"]] and delete ["b","a"] and ["c","b"]
I ...
1
vote
3answers
73 views
Previous + Next div swap better way
I've been searching all day here and elsewhere to figure out a way to make something work that I initially figured was pretty simple. I think I finally have it working, but know there has to be an ...
1
vote
0answers
72 views
jquery ui sortable temporary element swapping during drag
I need to implement temporary drag replacement in a size-limited jquery ui sortable list.
I have 2 sortable lists:
A "slot" with only 1 spot to hold a single element
A "bucket" that holds several ...
-1
votes
3answers
44 views
How does this implementation of swap works in Python?
def fibonacci(num):
a=0
b=1
for i in range(num):
a, b=b, a+b
print a
How does the line inside the loop works?
Somehow a & b 's values change, can seems to understand ...
3
votes
3answers
220 views
How can i swap two bits of integer in java?
is there a built in function in java that i could use to swap to bits
for example:
_ _ _ _ 1 _ _ 0 bit 3 swapped with bit 0 and becomes _ _ _ _ 0 _ _ 1
i know it can be done using long ...
0
votes
0answers
29 views
I am trying to swap RAM pages to a simulated flash device and I am encountering problems in that.
So here is a detailed description of what I was trying to do.
Initially I tried using nandsim. Nandsim is a debugging and development tool which simulates NAND flash in RAM or a file. NANDsim can ...
0
votes
0answers
14 views
Swap values of Drop Down List
I have list of DropDownList of items fetching from database, all have values of 1,2 and3...
DropDownList1 has a selected value of 1
DropDownList2 has a selected value of 3
DropDownList3 has a selected ...
1
vote
0answers
56 views
swap rollover img for src img onclick
I'm wondering how to go about coding my images (with rollover/hover states) so that when they are clicked, the rollover state remains even when the cursor is not over the img itself. And have the ...
0
votes
0answers
64 views
Node.js, socket.io and Swap
I have a test server in AWS in which I've installed Node.js and Socket.IO.
Currently I'm using cluster library to get it ready to work with more than on CPU. In the server I have a 2.00 GHz core and ...
0
votes
0answers
8 views
Do WinForms has a horver functionality?
I have four mdi children inside my parent. my mdi children must have a swap location four each or share it's locations. for example when form1 is over form2, it would ask if you will swap location or ...
1
vote
1answer
181 views
Swap the first two element of a list, (Haskell)
In order to swap the first two elements of a list, I've written the following code:
swap_first_two_elements :: [a]->[a]
swap_first_two_elements list=case list of
x:y:_ -> y:x:_
[x] -> ...
1
vote
4answers
75 views
Swap image src with jquery
I have one big image and small thumbs, i am trying to swap their src with each other. Here i am changing thumb img in bottleWrapper img, but i want to swap their src. Pls help!
HTML
<div ...
-1
votes
2answers
108 views
swap 2 elements in haskell by value
I'm new to haskell i need a function to swap 2 elements in a list when i know only the values.
for example:
swap 5 6 [1,5,7,6,4,3,2] -> [1,6,7,5,4,3,2]
5 and 6 are the values not the index, and the ...
1
vote
2answers
66 views
Swap image on click from multiple divs
I have been asked to add another color option to this page. If you click on the Marseille sign, the truck changes from orange to blue; if you click it again it changes back to orange. If you click the ...
0
votes
0answers
30 views
Swap href text from php on click
I have two php codes that sort my search results through href's (the first by ascending, and second by descending). I have found some JS that swaps href text which works fine with regular html, ...
0
votes
0answers
54 views
Dynamically swap variables
I'm working in Visual Basic 2010
Hitpoints1 -= Player1HandGroup(Number).DamageInteger
This is an example line of code in a game I'm designing that removes a given amount of hitpoints from player 1 ...
-2
votes
1answer
79 views
2D array JButtons not working for get() methods? [closed]
i was been trying to do a chess game and got stuck on swaping two piecess
this is my ChessSquare class
public class ChessSquare extends JButton
{
public int Yposition;
public int ...





