Tagged Questions
The variations tag has no wiki summary.
12
votes
16answers
13k views
List of known “Safari on iPad” differences over “Desktop Safari”
In recently testing a web application on Windows/Mac desktop browsers - and then on an iPad I noticed various differences in Safari that I wasn't expecting. even though the version # is the same.
I'd ...
5
votes
4answers
72 views
How to avoid writing every variation of a simple “if contains” statement for different strings
For example if in a textbox that is full of many different part numbers from a material list for computer parts, I only want one type of cat5 cable at any given time, and if two different types are ...
3
votes
4answers
162 views
Best way of creating a character variation algorithm. Creating a synonym table
I have a need to create a variation/synonym table for a client who needs to make sure if someone enters an incorrect variable, we can return the correct part.
Example, if we have a part ID of ...
2
votes
3answers
169 views
Program, that chooses the best out of 10
I need to make a program in python that chooses cars from an array, that is filled with the mass of 10 cars. The idea is that it fills a barge, that can hold ~8 tonnes most effectively and minimum ...
2
votes
1answer
111 views
Ruby Variation with repeating buggy method
I need a method written in Ruby, which computes Variations. I have already written it in Java, but as I'm new to Ruby, there's just something I'm missing about the Ruby implementation.
The method is ...
2
votes
4answers
2k views
generating Variations without repetitions / Permutations in java
I have to generate all variations without repetitions made of digits 0 - 9.
Length of them could be from 1 to 10. I really don't know how to solve it, especially how to avoid repetitions.
Example:
...
2
votes
2answers
127 views
Avoiding Determinism with Markovian Logic
I just began reading more about Markov Chain Generators today, and am really intrigued by the whole process of building one. From my understanding, the future state is dependent upon the statistical ...
1
vote
1answer
400 views
Multi-language variations - How do you localize navigation?
We are creating the variation structure for a multilingual 2010 site. We would like our navigation to be based upon the site/subsite structure of the site collection. The problem is that the ...
1
vote
1answer
148 views
Working with products variations in ecommerce website
This is more of a "logic" question than a coding question.
I am building this ecommerce site. Currently I am grouping products by: brand, category, subcategory1, subcategory2 and subcategory3. Just ...
1
vote
5answers
163 views
Determining All Posibilities for a Random String?
I was hoping someone with better math capabilities would assist me in figuring out the total possibilities for a string given it's length and character set.
i.e. [a-f0-9]{6}
What are the ...
0
votes
0answers
6 views
Searching in mail .pst's
I am wondering how I search multiple things in outlook under the advanced search.
Briefly, I have an added job requirement, where I run access to information requests. What that means, is I am ...
0
votes
2answers
44 views
Find all possible variations of a string of letters
Newb programmer here, I'm most familiar with Python but also learning C and Java, so either of 3 would be fine.
What I have is a string of letters, say:
ABXDEYGH
However say,
X is ...
0
votes
0answers
66 views
Global resources not working with variation label
I've created a Sharepoint site with variation labels.
One of the labels is polish. To make easier to use the site, the label was created with Template: English and UI: Polish (it's possibly the begin ...
0
votes
1answer
165 views
Specifying recipient of SharePoint variations notifications
I'm creating a new SharePoint 2010 (Enterprise) site, that will use variations, but have a couple of questions about notification emails:
when setting up variations in the site collection settings, ...
0
votes
0answers
413 views
Variations Create Hierarchies Job Definition - when I run the job, nothing happens
I have a site collection in SP2010 using variations. The pt-PT is the source site from the variation's point of view, and the en-US is a targeted site. Everything is ok until here.
I'm trying to ...
0
votes
0answers
447 views
Sharepoint 2010 multilingual website
We need to create a multilingual website in sharepoint 2010. We have gone through variations and content deployment features provided by sharepoint 2010 but they have limitations in allowing user to ...
0
votes
0answers
310 views
Sharepoint 2010 - change page between variations
I'm having a SP2010 site in a few languages, and a custom language bar.
What I want is to go from one page in a variation to the exact same page in another variation, when I click the language bar.
...
0
votes
1answer
73 views
SharePoint 2007 Variation Sporadic Notification
We've created a SharePoint 2007 website that uses variations for our different locales. When someone makes a change to a page on the source variation and publishes it. It is supposed to send out a ...
0
votes
4answers
151 views
I need to be able to accept similar answers in c++ without using “||” bars
I was hoping to find out if there is a command in c++ that will find similar variations to input and accept those as well as the exact answers in an if statement.
For example:
If i have a user ...
0
votes
1answer
155 views
best git and Xcode structure for evolving variants of the same product
There is a similar question at Best practice for managing project variants in Git? but the context is different and I suspect the answer might be too.
I have a Cocoa product "First" managed with ...
0
votes
1answer
178 views
Sharepoint Variations Error
I'm getting some crazy errors when trying to create variations in Sharepoint. Has anybody seen this error?
PublishingPage::AttemptPairUpWithPage() Ends. this: ...
-1
votes
2answers
83 views
Variations with repetition
Given a list of e.g. two elements l = [1,0] I need to create all possible 5-element variations with repetitions. I've tried itertools.combinations but give me what I wanted.
With given n = 2 and k = ...
-2
votes
2answers
372 views
How to generate all possible variations with repetitions in C
I'm looking for an algorithm in C to generate all possible variations with repetitons for set lenght and from n elements.
for example if the lenght is 3 and the elements are: 1, 2. The output should ...