Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

90
votes
8answers
13k views

App.Config Transformation for projects which are not Web Projects in Visual Studio 2010?

For Visual Studio 2010 Web based application we have Config Transformation features by which we can maintain multiple configuration files for different environments. But the same feature is not ...
37
votes
4answers
2k views

Rotate webpage via code?

I'm hoping that there's a relatively simple way to rotate a webpage a little bit, 30 degrees or so, while still leaving it fully functional and usable. I completely control the page, and can modify ...
23
votes
3answers
485 views

How can you produce sharp paint results when rotating a BufferedImage?

One attempted approach was to use TexturePaint and g.fillRect() to paint the image. This however requires you to create a new TexturePaint and Rectangle2D object each time you paint an image, which ...
15
votes
8answers
2k views

Operational Transformation library?

I'm looking for a library that would allow me to synchronize text in real-time between multiple users (ala Google Docs). I've stumbled upon Operational Transformation, which seems to fit my needs. ...
12
votes
2answers
5k views

iPhone image stretching (skew)

How to skew the image? So, for example, each corner has CGPoint with it coords - p1, p2, p3, p4. Then, I need to set - p4.x+=50, p4.y+=30. So this corner (p4) should be stretched in 2D perspective and ...
11
votes
4answers
269 views

Apply multiple functions to each row of a dataframe

Every time I think I understand about working with vectors, what appears to be a simple problem turns my head inside out. Lot's of reading and trying different examples hasn't helped on this occasion. ...
11
votes
1answer
2k views

Is there a good, complete tutorial on Erlang parse transforms available?

There are lots of fragments out there detailing bits and pieces of the parse transform process in Erlang, but none I've found offer complete coverage from motivation to execution. Is there a good ...
11
votes
5answers
8k views

Java: How to Indent XML Generated by Transformer

I'm using Java's built in XML transformer to take a DOM document and print out the resulting XML. The problem is that it isn't indenting the text at all despite having set the parameter "indent" ...
10
votes
3answers
10k views

CSS3 Continous Rotate Animation (Just like a loading sundial)

I am trying to replicate an Apple style activity indicator (sundial loading icon) by using a PNG and CSS3 animation. I have the image rotating and doing it continuously, but there seems to be a delay ...
10
votes
3answers
1k views

Algorithm to transform one word to another through valid words

I came across this variation of edit-distance problem: Design an algorithm which transforms a source word to a target word. for example: from head to tail, in each step, you just can replace one ...
9
votes
6answers
431 views

How to get the MouseEvent coordinates for an element that has CSS3 Transform?

I want to detect where a MouseEvent has occurred, in coordinates relative to the clicked element. Why? Because I want to add an absolutely positioned child element at the clicked location. I know how ...
9
votes
5answers
371 views

transforming a matrix into a vector along its diagonals

im not not a programmer, i just need to solve something numerically in matlab. i need a function to make the following transformation for any square matrix: from row 1: 1 2 3 row 2: 4 5 6 row 3: 7 ...
8
votes
4answers
1k views

css transform, jagged edges in chrome

I've been using CSS3 transform to rotate images and textboxes with borders in my website. The problem is that the border look jagged in Chrome, like a (low-resolution) game without Anti-Aliasing. In ...
8
votes
1answer
411 views

Simulating an image floating effect using CoreMotion/DeviceMotion on the iPhone

I have a series of images within a ViewController. I am "floating" them by transforming their individual layers: img.layer.transform = CATransform3DMakeTranslation(0.0f, 0.0f, myZ); This gives the ...
8
votes
4answers
448 views

When are Schwartzian Transforms useful?

While going through the "Intermediate Perl" book I noticed a section on Schwartzian Transforms and tried the example in the exercise (9.9.2) but noticed that multiple runs resulted in the transform ...
7
votes
2answers
2k views

css z-index lost after webkit transform translate3d

I have two absolutely positioned div elements that overlap. Both have set z-index values via css. I use the "translate3d" webkit transform to animate these elements off the screen, and then back onto ...
7
votes
3answers
2k views

How to force re-render after a WebKit 3D transform in Safari

I'm using CSS 3D transformations to zoom a div, for example: -webkit-transform: scale3d(2,2,1); The scaling itself works fine in any WebKit browser. However, when using this on Safari (mobile or ...
7
votes
2answers
598 views

How to make something like iPhone Folders?

I'm wanting to know if there's a way I can transform my view to look something like iPhone folders. In other words, I want my view to split somewhere in the middle and reveal a view underneath it. ...
7
votes
3answers
2k views

Generate Json schema from XML schema (XSD)

Does anybody know how to generate a Json schema from a existing XML schema (XSD file)? Are there any tools available for this?
6
votes
2answers
86 views

HTML/CSS zooming

Having some difficulties with zooming HTML elements. In FF or Chrome, take a look at (very, very simple, small code): http://jsfiddle.net/92wHQ/4/ From the drop down, select 150%. The black and ...
6
votes
2answers
168 views

Fastest available algorithm for distance transform

I am looking for the fastest available algorithm for distance transform. According to this site http://homepages.inf.ed.ac.uk/rbf/HIPR2/distance.htm, it describes: "The distance transform can be ...
6
votes
3answers
210 views

Transform a coordinate sytem into a Matrix in Mathematica

Ahead of a the programming question, I believe I need to give a little background of what I am doing to ease the understanding of my problem : I record eye-movements while displaying some patterns to ...
6
votes
3answers
71 views

Referencing new columns inside transform

I have a dataframe with columns labeled A,B & C. I want to add new columns that are calculated from the existing columns AND the new columns themselves. To achieve this I tried using the transform ...
6
votes
6answers
4k views

-webkit-transform rotate - Pixelated images in Chrome

Using -webkit-transform: rotate(-5deg); on a container div, Chrome renders the grid of images with really jagged edges. Whereas in FF (-moz-transform:) and IE (-ms-filter:) everything looks OK - see ...
6
votes
5answers
2k views

Python - lexical analysis and tokenization

I'm looking to speed along my discovery process here quite a bit, as this is my first venture into the world of lexical analysis. Maybe this is even the wrong path. First, I'll describe my problem: ...
6
votes
3answers
5k views

OpenGL: scale then translate? and how?

Hey all, I've got some 2D geometry. I want to take some bounding rect around my geometry, and then render a smaller version of it somewhere else on the plane. Here's more or less the code I have to do ...
6
votes
7answers
166 views

When is XSLT an appropriate solution for defining XML transforms instead of using a scripting language like Python?

When is XSLT an appropriate solution for defining XML transforms instead of using a scripting language like Python?
6
votes
5answers
2k views

Ruby symbol to class

Is there a way in Ruby to take a symbol or string and turn it into a class of the same name? For instance, if I have a class such as class Bob def talk puts "Hi, I'm bob" end end And a ...
6
votes
5answers
6k views

WPF: Getting new coordinates after a Rotation

With reference to this programming game I am currently building. To translate a Canvas in WPF, I am using two Forms: TranslateTransform (to move it), and RotateTransform (to rotate it) [children of ...
6
votes
6answers
4k views

WPF: How to apply a GeneralTransform to a Geometry data and return the new geometry?

Having some Geometry data and a Transform how can the transform be applied to the Geometry to get a new Geometry with it's data transformed ? Ex: I Have a Path object that has it's Path.Data set to a ...
5
votes
3answers
50 views

CSS3 Translate across an Arc

Is it at all possible with current CSS3 to translate an object (specifically a DIV) along an arc or curve? Here's an image to help illustrate.
5
votes
2answers
238 views

iOS / Core-Animation: 12 overlapping cards in a circle

I am trying to arrange 12 objects in the circle so that each overlaps its anticlockwise neighbour. Something like this: Problem is that if I just rely on the drawing order, one of them is always ...
5
votes
1answer
142 views

Transform RGBA with underlying color into RGB?

i've got a problem with transforming Colors in Java. The simplified problem look like the following: My application contains an image. I've layed an Recangle over this image. The color of the ...
5
votes
1answer
188 views

Using boost::lexical_cast with std::transform

g++ doesn't like: vector<int> x; x += 1,2,3,4,5; vector<string> y(x.size()); transform(x.begin(), x.end(), y.begin(), lexical_cast<string>); The error message is: error: no ...
5
votes
3answers
372 views

-transform:scale causing 'blinking' when hovering

I am working on a catalog which uses css -transform attribute to scale each 'swatch' upon hovering. Here's my problem: In some browsers and on certain sites, when you hover over the swatches, it ...
5
votes
1answer
440 views

Concave quadrilateral from rectangle

Using only CSS, can a quadrilateral with an inner angle that is greater than 180 degrees be created by manipulating a single rectangle? I know that an arbitrary convex quadrilateral can be created ...
5
votes
2answers
354 views

How to do a web.config transform for smtp?

I have this in my root web.config <mailSettings> <smtp from="no-reply@test.com" deliveryMethod="SpecifiedPickupDirectory"> <specifiedPickupDirectory ...
5
votes
1answer
1k views

Changing namespace for XML file in XSL Translation

So I have an input file that uses my company's namespace in the default namespace (xmlns="companyURL") but I want my output file to use something other than the default namespace ...
5
votes
2answers
357 views

Java image transformation

I need to create 3d depth effect for my image. Number 1 is what I have and number 2 is shape where I want to transform number 1. So is there any method for that in Java standard graphics libraries or ...
5
votes
3answers
499 views

C++/STL: std::transform with given stride?

I have a 1d array containing Nd data, I would like to effectively traverse on it with std::transform or std::for_each. unigned int nelems; unsigned int stride=3;// we are going to have 3D points ...
5
votes
1answer
1k views

How to get UIView frame position after transform?

I want to get the current position of a UIView after a transform rotate has been applied to it. How can i do that ? In the UIView doc i found this about the transform property : "If this property ...
5
votes
5answers
7k views

Widget “flip” behavior in Core Animation/Cocoa

I'm trying to make a Card class that duplicates the behavior of Dashboard widgets in that you can put controls or images or whatever on two sides of the card and flip between them. Layer backed ...
5
votes
5answers
1k views

How can a transform a polynomial to another coordinate system?

Using assorted matrix math, I've solved a system of equations resulting in coefficients for a polynomial of degree 'n' Ax^(n-1) + Bx^(n-2) + ... + Z I then evaulate the polynomial over a given x ...
4
votes
1answer
119 views

Determining frequency of an array in Python

I have a sample file filled with floating point numbers as follows: -0.02 3.04 3.04 3.02 3.02 3.06 3.04 3.02 3.04 3.02 3.04 3.02 3.04 3.02 3.04 3.04 3.04 3.02 3.04 3.02 ...
4
votes
1answer
45 views

CSS3 transform not firing in firefox with javascript event handlers and functions

I've been building a gallery for a month or so now, the layout is simple, there's a thumbnail menu on the left and a gallery preview on the right. when you click a thumbnail that has loaded it fires ...
4
votes
1answer
67 views

How to bottom justify inline elements of unequal height?

While many other questions address the vertical alignment of elements, none seem to cover my particular situation. I am trying to effect the following layout, whereby inline elements of unequal ...
4
votes
1answer
128 views

Aligning floating divs with rotated text

Using css3 transform, I'm trying to create a table structure using floating divs and the header text is rotated 90 degrees. http://jsfiddle.net/VNk2u/ I'm having trouble lining it up properly. Does ...
4
votes
4answers
4k views

CSS3 Transform Skew

Does anyone know how to achieve skew like this using CSS's new transform property? As you can see I'm trying to skew both corners, anyone know if this is possible?
4
votes
1answer
578 views

Baking transforms into SVG Path Element commands

tl;dr summary: Give me the resources or help fix the below code to transform path commands for SVG <path> elements by an arbitrary matrix. details: I'm writing a library to convert any ...
4
votes
1answer
3k views

Android ImageViewer class supporting Pinch-Zoom and Scrolling

I am searching an ImageViewer library that opens an image in my application for a given URI (the image fetched by a webservice is already stored within my application in a secured place). I really ...

1 2 3 4 5 15