0
votes
0answers
1 views
What is the best algorithm for checking if a number is prime?
I am looking for the best algorithm, to check if a number is prime i.e. a boolean function:
bool isprime(number);
I would like to know the best algorithm to implement this funct …
0
votes
0answers
1 views
x:Name attribute does not always create member or field variable
Adding an x:Name attribute to a XAML element normally results in a member variable being added to the backing class that can then be accessed using normal code. When the element in …
0
votes
1answer
3 views
Why no compiler enforcement in const_iterator
Consider the following code :
#include <vector>
#include <iostream>
class a {
public:
int i;
void fun() { i = 999; }
void fun() const { std::cout << …
0
votes
0answers
3 views
UITableViewController.view crash
So I'm trying to use a UITableViewController (let's call it homeView) in my iPhone application to display a simple table with only a few rows of text which are loaded from an NSArr …
0
votes
2answers
5 views
mysql missing field after running rails db migration
i have a rails migration:
>> cat db/migrate/20091126031039_create_cards.rb
class CreateCards < ActiveRecord::Migration
def self.up
create_table :cards do |t|
…
1
vote
3answers
24 views
C/C++: any way to get reflective enums?
I've encountered this situation so many times...
enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
Now I have Fruit f; // banana and I want to go from f to the string "Banan …
0
votes
0answers
9 views
Ralational database tables
Hello, I'm currently working on an ASP.Net MVC project for a software engineering class. My goal is to create a small online game rental system. I currently have a 3 tables, Movi …
1
vote
4answers
17 views
Script that will quit out every 5 minutes then renew itself where it left off
Hey all,
I've got a UNIX question... I have a PHP script that I run in the terminal that parses a bunch of images and puts them in the database. This script has already been writt …
0
votes
2answers
14 views
django embedding user id into URL template best practice
I'm building a navigation menu in my django app, and one of the options is "My Account". There are different roles I have for users, but in order for them all to view their profile …
0
votes
0answers
1 views
Workflow ReplicatorActivity xoml only workflow
Is it possible to bind to the child activity values of the current item of the collection?
I know with code you can subscribe to ChildInitialized Event and init your child activi …
0
votes
0answers
3 views
Silverlight UserControl Binding
Hi
I have a simple User Control
Xaml:
<UserControl x:Class="GraemeGorman_Controls.Navigation.NavigationItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentat …
1
vote
1answer
4 views
Core Data - Large Datasets and Very Long Load Times
I've got about 5000-7000 objects in my core data store that I want to display in a table view. I'm using a fetched results controller and I haven't got any predicates on the fetch. …
-1
votes
2answers
21 views
What is adobe bug commit address ?
hi
What's adobe's bug commit address ?
0
votes
1answer
7 views
Remove registry key during uninstall
Hello there. I have a simple C# application that allows users to specify that it should be (or should not be) started with Windows; it does so by setting (or deleting) a registry …
0
votes
0answers
1 views
How to apply macro at end of every heading in MS Word?
I have a document with various headings (so not necessarily Heading 1 or Heading 2 - but all types of headings).
What I'm trying to do is write a macro that will, for example, del …
