Tagged Questions
The manipulation tag has no wiki summary.
27
votes
6answers
37k views
Change URL parameters with jQuery?
I have this URL:
site.fwx?position=1&archiveid=5000&columns=5&rows=20&sorting=ModifiedTimeAsc
what I need is to be able to change the 'rows' url param value to something i specify, ...
14
votes
7answers
2k views
C++ custom stream manipulator that changes next item on stream
In C++, to print a number in hexadecimal you do this:
int num = 10;
std::cout << std::hex << num; // => 'a'
I know I can create a manipulator that just adds stuff to the stream like ...
8
votes
1answer
221 views
What is the most efficient way in Java to pack bits into byte[] and read it back?
I currently use these two functions to pack and read bits in a byte array. Wondering if anybody has any better ideas or faster ways to do it?
Edited the program with a few more optimization and ...
8
votes
4answers
238 views
Conditionnal Data Manipulation in Mathematica
I am trying to prepare the best tools for efficient Data Analysis in Mathematica.
I have a approximately 300 Columns & 100 000 Rows.
What would be the best tricks to :
"Remove", "Extract" or ...
8
votes
2answers
1k views
Image Warping - Bulge Effect Algorithm
Can any point to image warping algorithms? Specifically for bulge effect?
7
votes
2answers
303 views
Data Table Manipulation in Mathematica: Step 2
In this previous post (
Data Table Manipulation in Mathematica
) we find the brilliant suggestion proposed by Leonid Shifrin that allows to select specific rows identified by the header name.
I'm now ...
6
votes
3answers
61 views
Sort a matrix based on the order given in a second matrix (MATLAB)
I have a bigmatrix that is sorted. However, I need to re-order it as per the order of IDs in another matrix (col. 1 here for both matrices). How can I do this using vectorization? Eg:
bigmat = [ ...
6
votes
3answers
134 views
Ruby: Manipulate Iterators?
I'm having teething problems with Ruby, with regards to creating single-direction, lazily-evaluated, potentially-infinite iterators. Basically, I'm trying to use Ruby like I'd use Haskell lists and, ...
6
votes
1answer
141 views
A GUI editor for Java that can manipulate objects on RUNTIME
I am looking for a Java GUI editor or library with the following exotic property: the GUI can be manipulated on runtime. That is, a running frame can include special controls, e.g., right-click, that ...
6
votes
4answers
9k views
How should I add multiple identical elements to a div with jQuery
I need to add multiple empty divs to a container element using jQuery.
At the moment I am generating a string containing the empty html using a loop
divstr = ...
5
votes
4answers
106 views
bash/unix toolchain binary stream processing/slicing
I have a binary stream on standard input, it's in a fixed size format, a continuos stream of packets, each packet has a header with length X and a body with length Y.
So if X=2 Y=6 then it's ...
5
votes
1answer
149 views
C# Method to sum hh:mm data?
I want a method that will sum data that is string in the format hh:mm (time hours and minutes)
0:15 + 0:15 = 0:30
Am I asking for too much !!! ;-)
4
votes
2answers
105 views
Text Searching and Manipulation
So the file I am importing into a ListBox looks like this (each newline is a new item in the ListBox):
C2 CAP-00128G 238.385 205.944 0 0402_8
C1 CAP-00128G 236.260 204.844 0 0402_8 //Same as ...
4
votes
1answer
75 views
Manipulating String Perl SVs in C
I'm currently trying to do some string based manipulation in an attempt to speed up a section of traditional Perl code. The original Perl code looks like
my $value = 'abCdE';
my $uc_value = ...
4
votes
3answers
213 views
“Previous-Next” Button instead of Slider in Mathematica?
Is it possible to use some "Previous-Next" Buttons instead of a slider as in the example Below when the controlled value is discrete ?
I found the Manipulator one quite ugly and would like some ...
4
votes
3answers
114 views
Adjust TogglerBar button size in Mathematica
Is it possible to adjust the size/font of the TogglerBar, so that they are all equally large in case of different name size.
The example below is the solution proposed by Belisarius for : "Can ...
4
votes
1answer
94 views
Control Placement using Manipulate in Mathematica
I would like to have the Pink & Green CheckBox Control to be displayed on a single line. Despite extensive look on the ControlPlacement Help, I cannot adapt it to make it work.
Manipulate[
...
4
votes
3answers
144 views
jQuery removing <option> tags that it shouldn't be removing
I have a number of dynamic <select> elements that are generated based on various user inputs. I'm trying to remove certain <option>'s that are not applicable for each select but jQuery ...
4
votes
3answers
451 views
How do the stream manipulators work?
It is well known that the user can define stream manipulators like this:
ostream& tab(ostream & output)
{
return output<< '\t';
}
And this can be used in main() like this:
...
4
votes
2answers
281 views
Rearranging a data frame in R
The following R code generates a snippet from data frame I am working with at the moment:
rep1 <- c("20/02/01","23/03/02")
rep2 <- c(NA, "03/05/02")
rep3 <- c("16/04/01",NA)
rep4 <- ...
4
votes
4answers
2k views
Create new dummy variable columns from categorical variable
I have a several data sets with 75,000 observations and a type variable that can take on a value 0-4. I want to add five new dummy variables to each data set for all types. The best way I could come ...
4
votes
5answers
8k views
How to split strings on carriage return with C#?
I have an ASP.NET page with a multiline textbox called txbUserName. Then I paste into the textbox 3 names and they are vertically aligned:
Jason
Ammy
Karen
I want to be able to somehow take the ...
4
votes
4answers
1k views
Simple way to handle time in C#?
My current approach is something like
DateTime startHour = new DateTime(1900,1,1,12,25,43);
DateTime endHour = new DateTime(1900,1,1,13,45,32);
// I need to, say, know if a complete DateTime ...
3
votes
2answers
23 views
How to get the date of record updating in MySQL
I have a table that one of this record has been changed.
Is there any MySQL function to get the date of this updating?
3
votes
2answers
26 views
MATLAB: remove rows of array if specific criteria met
I have an array which can be any size (in rows) but is always two columns wide. I would like to throw away any rows containing numbers which stray more than 1 from the median of each column.
For ...
3
votes
2answers
31 views
Regex replace is eating up the whole string! How do I make regex ungreedy?
I'm working with a really large spreedsheet in Open Office and I've had to learn regular expressions to clean it up.
Right now I'm trying to remove all <span> tags and I've come up with an ...
3
votes
3answers
104 views
django python date time set to midnight
I have a date time of my django object but it can be any time of the day. It can be at any time through the day, but I need to set my time to 00:00:00 (and another date to 23:59:59 but the principle ...
3
votes
6answers
81 views
Retrieving tail-end of a file path
I can't find an effective way to do this. The best way to describe what I'm trying to do is by example, so where we go (assuming /bar/ is the parent):
C:\foo\bar\baz\text.txt
will be my path. I'm ...
3
votes
1answer
97 views
tapply() help in R
I have a data frame like the following:
a b1 b2 b3 b4 b5 b6 b7 b8 b9
D 4 6 9 5 3 9 7 9 8
F 7 3 8 1 3 1 4 4 3
R 2 5 5 1 4 2 3 1 6
D 9 ...
3
votes
4answers
216 views
Bit manipulation of chars in Java or C
I am a student trying to implement the DES algorithm.
I have a choice of 2 languages: C & Java.
I did understand the algorithm, but am stuck at the very beginning as to manipulation of the key.
...
3
votes
3answers
104 views
Adjust Panel Location in a Manipulate object in mathematica
Building up on Sjoerd solution to add alignment to a manipulate object :
Consider the following :
Manipulate[
Panel[Style[Row1, Bold, 20],
ImageSize -> 150, Alignment -> Center]
...
3
votes
1answer
143 views
Dynamic List Selection within another Dynamic in Mathematica
Building up on the solution proposed by Belisarius in "Manipulate custom Tabular".
Consider the following Function to create custom Tabular representation :
DataSampleXX[data_, linesNumber_, ...
3
votes
3answers
112 views
Can TogglerBar be used as multiple CheckBox in Mathematica?
Would it be possible to have a TogglerBar instead of the 2 Check Box to show or not the different Shapes.
With Green & Red written in each Button of the TogglerBar ?
Manipulate[
...
3
votes
2answers
264 views
How to rotate an image based on two points
I have some images I manipulate, and in these images I always have two points (x1, y1) and (x2, y2). like this:
|----------------|
| |
| . |
| |
| ...
3
votes
6answers
765 views
How can I “reset” <div> to its original state after it has been modified by JavaScript?
I have a DIV with a form in it. When users submit the form and it gets successfully submitted, I replace the form with a simple "everything is good now" message:
$("#some_div").html("Yeah all good ...
3
votes
3answers
549 views
Creating a new data frame in R from an exisiting, inadequate data frame
This is a really simple problem, but I cannot figure out how to script it. I cannot move forward until I figure it out. I'm really new to R and to programming, and I'm going through several ...
3
votes
1answer
197 views
Ajax page echo vs background Ajax/direct HTML manipulation?
I have a dilemma, and I could really use some advice.
I am building an ordering system with PHP/Smarty/HTML/jQuery.
Currently working on the site where the seller will confirm orders.
I need to have ...
3
votes
4answers
848 views
Keeping log files under a certain size
I have an application that is running on a stand-alone panel PC in a kiosk (C#/WPF). It performs some typical logging operations to a text file. The PC has some limited amount of disk space to store ...
3
votes
2answers
182 views
PHP String Manipulation: Extract hrefs
I have a string of HTML that I would like to check to see if there are any links inside of it and, if so, extract them and put them in an array. I can do this in jQuery with the simplicity of its ...
3
votes
3answers
624 views
whats the easiest way to exchange row HTML in table via jquery (not drag and drop)
what's the easiest way in jquery to take the entire html for a (including the tr itself, not tr innerhtml) and swap it with another one? i'm kinda messing around with replaceWith, but that's ...
3
votes
4answers
114 views
Array Manipulation
I have an array something like this..
[0] => english
[1] => 85
[2] => mathematics
[3] => 75
[4] => science
[5] => 71
[6] => social
[7] => 92
I want all values with even ...
3
votes
1answer
282 views
MATLAB Array Manipulation
I'm trying to insert multiple values into an array using a 'values' array and a 'counter' array. For example, if:
a=[1,3,2,5]
b=[2,2,1,3]
I want the output of some function
c=somefunction(a,b)
...
3
votes
3answers
1k views
Image border manipulation in C#
I have a need to resize pictures on a website I'm making for my company. The pictures must be a very specific size, and if the proportions are not correct I must be able to pad the image with a ...
3
votes
2answers
1k views
Php, date manipulation?
I am new to php. And I would like to know some of the date manipulation things in php.
// Get Current date
$date = date("Y-m-d");
What if I want to subtract current date and a specific date, lets ...
3
votes
2answers
183 views
Why does this only work in Firefox?
I've created a self-contained example to find out why this is only working in Firefox:
var ul = jQuery('<ul></ul>');
jQuery(selector).children().each(function() {
var li = ...
3
votes
4answers
13k views
Change an element's onfocus handler with Javascript?
I have a form that has default values describing what should go into the field (replacing a label). When the user focuses a field this function is called:
function clear_input(element)
{
...
2
votes
1answer
78 views
Standard (or free) POSIX path manipulation C library
Is there any standard (or widely used) simple POSIX path manipulation library for C (path join, filename stripping, etc.) ?
Actually, because I'm mostly working under Windows, I currently use ...
2
votes
3answers
36 views
jQuery: Update, by class, span tags with datepicker input value?
How can I update just the tags / class="able", with the datepicker value thats
stored in the <input id="datepicker"> field?
Steps:
Click the "datepicker" input field; Date calendar opens.
...
2
votes
3answers
68 views
Prepending all instances of a string with a char
I am using C#. NET 2.0 and WinForms.
I have a piece of code which is formatted in Assembly like this:
VARIABLE = 40
ADDRESS = $60
LDA VARIABLE;
STA ADDRESS;
Output should be:
!VARIABLE = 40
...
2
votes
3answers
71 views
How to add a counting column based on values in other columns in R
I have a relatively large dataset (16,000+ x ~31), at least it's large enough that I don't want to manipulated it line by line in excel. The data is in this form:
block site day X1 X2
1 ...