All Questions
0
votes
0answers
2 views
Square placing in Prolog
I have a 5x5 area. And I want to list all of the positions of possible 2x2 squares which don't touch each other in that area. I want to list the coordinates of the upper-leftmost squares of those 2x2 ...
0
votes
0answers
2 views
How to ensure GCM server is accessible from my device's network?
I'm testing android's GCM demo application. The first step in GCM is to register the device with GCM server i.e. sending Device Id and get Registration key. But I'm testing on a network which has ...
0
votes
0answers
2 views
Adding/removing pushpins creates memory leak
Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
...
0
votes
0answers
2 views
Removing duplicates before copying to clipboard
I have a program which copies the contents of a text area to the clipboard. The program reads information from a file to the text area. I would like to remove duplicate information as i copy to the ...
0
votes
0answers
3 views
MVC 4 and EF 5: most performant way to CRUD objects
I'm working on a MVC4/EF5 project and I really want to invest a lot of time in the design of my application.
I have made one policy/principle for myself. My controllers need to be dedicated, which ...
0
votes
0answers
2 views
opencv saving image captured from webcam
few days i'm spending on it,
i receeive an error sigabrt error when codes tryng to save the image on the hd, somewone has the solutions or some ideas?
im working with a macbook pro mountain lion on ...
0
votes
0answers
6 views
Rails: How to make link_to use another attribute instead of id
The following line will create a link to things/:id
link_to "Thing", @thing
But I need to create a link to things/:some_other_id.
My first thought was that changing the route for /things/:id to ...
0
votes
0answers
5 views
Are non-final initializers threadsafe?
It is guranteed or not that every thread sees the value of an instance initializer (the expression right to the equal sign of a field) for a non-final field? For example:
class Foo {
private ...
0
votes
0answers
3 views
Installing android source with eclipse on Ubuntu
I've installed Android source (4.1.2) repo on my my VM (Ubuntu). How can I integrate it with eclipse? Do I have to install eclipse separately or it is already integrated? How to properly import the ...
0
votes
0answers
3 views
Subversion cannot browse log at client side after removed * = r
I have already use david as login, I can update & commit at client side (Client side (tortoise svn) but cannot show log.
[/]
#* = r
david = rw
Does anyone know how to allow authorized use ...
0
votes
0answers
8 views
How to populate the csv file?
i'm creating a csv file with the data from the database. All the data of the selected consumer Id's must append into the csv file. In my program the csv file was attached on email, let's say I have 3 ...
0
votes
0answers
2 views
Telerik RadPageView in BackStage mode: howto change selected item color without whole new theme?
I'm looking for a way to set the color of an item in a RadPageView (in backstage mode) at runtime. There are a lot of properties that you can reach via the designer and the "Edit UI elements" section, ...
0
votes
0answers
2 views
Data Provider for SAP
I am trying to create SSIS package for loading the data from SAP BW to SQL Server. But after read through many books people are saying we need Data Provider to load the data from SAP BW to SQl Server. ...
0
votes
0answers
3 views
SQuirreL DB Client 3.5.0 Alias and Driver rest
I've just downloaded the latest SQuirreL SQL Client 3.5.0 and every time I restart my computer the alias configuration and db driver resets, I have to do it again.
Could this be bug or Windows 7 ...
0
votes
0answers
9 views
Remove duplicates while merging lists using Union in LINQ
I am trying to merge two lists using list.Union in LinqPad but I can't get it to work and wanted to check my understanding is correct.
Given this simple class:
public class Test
{
public int Id ...