0
votes
0answers
9 views

What does neo4j's licensing guide mean?

There are three versions of Neo4j apparently, called Community, Advanced, and Enterprise. Neo4j's Licensing Guide says that Community is GPL3 (which I confirmed from the LICENSE file in the tarball) ...
0
votes
1answer
30 views

how to approach pharmacy software project

I have seen various pharmacy software solutions, and they seem pretty complex. How can I complete a basic proof of concept if most of the API's are not free. For example my basic pharmacy software ...
0
votes
1answer
25 views

Single page app permissions represented through RESTful APIs

I'm trying to figure out the right way to handle permissions in a single page app that talks directly to several RESTful APIs, that implement HATEOAS. As an example: "As a user of my application I ...
-2
votes
0answers
20 views

Following up Codecademy [on hold]

What are some good free online resources for learning CSS and html, past the beginner level? Everything I have seen so far online that is more advanced isn't free. Any suggestions?
0
votes
0answers
15 views

What should I take out from my Programming internship? [on hold]

I couldn't find good answers to this question on Google: I just got advertisements for internship agencies. I was recently asked by my employer at my CS internship, what would I like to take from my ...
1
vote
0answers
40 views

Legality of selling someone a ported version of their own software? [on hold]

So let's say there's an app for iOS only that I was thinking would be interesting to make in Android as a cool learning experience, and as I was doing so (purely educationally) I thought maybe it ...
0
votes
0answers
21 views

Python code to find unique combinations of factors of a number

I have the below code which prints the unique combination of factors of a given number. But I does not give the desired output. The code is a s follows: #Print the factors list for the given number ...
10
votes
2answers
385 views

What does it mean for a sorting algorithm to be “stable”?

In reading about various sorting algorithms I've seen it mentioned that some are "stable" and some are not. What does that mean, and what tradeoffs are involved on that basis when selecting an ...
0
votes
1answer
29 views

Regular Expression for converting WKT to GeoJSON

I am working on a library to convert Well Known Text into geoJson. For converting WKT representation of a multiPolygon would it be best to find polygons with a regular expression or by parsing the ...
1
vote
1answer
49 views

Choosing between the view and the controller for my code

I'm aware there are a lot of topics about MVC design but it's hard to find good explanations: what I should do, what are the consequences of the different possibilities... So I'm working on an ASP ...
3
votes
2answers
75 views

How are composite tables generally handled when there is no ORM tool available?

I am developing a Windows Runtime Component (C#) to be used in an HTML/JS frontend for a Windows Store App. Now, one of the requests is to have a database on the local system to store metadata about ...
-2
votes
0answers
28 views

What are Java, HTML, and Javascript technologies for producing basic reports with Excel export? [on hold]

We have several reports that are very basic in nature. Some reports accept up to 3 parameters. All reports generate a table with the result set. No pie charts, line graphs, etc. The reports can be ...
-1
votes
0answers
28 views

Basic PHP Factory Pattern code review

I have an object, KbArticle, that originally in it's constructor, would try to return null if the SQL query that retrieves the data for its required properties came up with 0 rows. A friend told me ...
1
vote
4answers
53 views

What's the proper way of dealing with a global file path?

I don't have compilable code, because the code in question depends on a large function that's irrelevant to the question, but say I have the following scenario: savePath = "C:\\..." changePath1, ...
5
votes
4answers
927 views

Is this a good practice or not?

I have a colleague who has come up with a way of 'genericizing' information from a database so that all his web application's drop-down lists can share the same object in his MVC.NET C# code and ...
-3
votes
0answers
23 views

What is the best framework to develop an Android app that connects to an existing MySQL database through a web service? [on hold]

I have experience developing Android apps using both Eclipse (Java) and Xamarin (C#). I have never tried connecting my apps to a database until now. It sounds like I need to use Android tools to call ...
-2
votes
0answers
36 views

Software Engineer or Product Manager [on hold]

My ambition is to start my own start-up and grow it to become a successful company one day. I am currently finishing my MS in a closely related field to CS and looking for jobs. I have worked ...
1
vote
1answer
32 views

What kind of exception to ask for out of range arguments?

What type of exception should I throw? I have a console class which describes rectangle of cells which a user can index by passing in a coordinate: width, height = 80, 25 console = ...
1
vote
0answers
40 views

What is the simplest archive file format to aim for when writing collections of files?

I've created a PHP-based document management system and hosted it on my Raspberry Pi. I created a "backup" function that zips together all the documents, but it takes too long due to the hardware ...
1
vote
1answer
40 views

Testing Facades, Is it a good idea?

I stumbled across a need to create a thin I/O Layer interface to abstract away a class from the need to know about I/O public interface IFileIOProvider { Task WriteFileAsync(String contents, ...
0
votes
1answer
38 views

Developing pages in MVC website that will be specifically used as an iframe by another website

I have a website where I'm going to be partnering with another website. They want to view one specific page of mine, in their [WordPress] website. They aren't developers, so I looked into how to do ...
-3
votes
0answers
36 views

Is it possible to change the date automatically stored in the database table? [on hold]

I am creating Credit Card Management System project and I want to calculate the No. of days so anyone has any idea that how can I change the date in the database table automatically so that i can ...
-3
votes
0answers
17 views

The ideal component for Firebird database connections What do you think? [on hold]

The ideal component for Firebird database connections What do you think? Can you show me the way about it? Which one do you think I should buy? Thank you very much. 1) ibdac ...
2
votes
2answers
59 views

subclass reference to another subclass

Imagine I have the following code: class A: pass class B(A): pass class C(A): def __init__(self): self.b = B() Is the above code correct in terms of correct inheritance? I ...
0
votes
2answers
82 views

How to deal with a new version of visual studio's directory?

When upgrading Visual Studio to a newer version, a new directory is created e.g. "Visual Studio 2013". I understand that that makes sense as we want to differentiate between code targeting different ...
0
votes
2answers
121 views

Value of passing by reference [duplicate]

In C++, we have the option to pass by reference or pass by value. The client code does not need to know which one a parent function uses; that is, int func(int param) and int func(int &param) are ...
-4
votes
0answers
16 views

Help with D3.js adding of circles to each of the country on the world map [on hold]

<!DOCTYPE html> <meta charset="utf-8"> <title>D3 World Map</title> <style> .country:hover{ fill: #52adcc; stroke: #fff; stroke-width: 1.5px; } .text{ ...
-2
votes
0answers
19 views

IE 11 Compatibility mode [on hold]

I want to add IE 11 compatibility mode in my code.I cannot use meta tag, as "". Please suggest me other than meta tag. Thanks in Advance.
-2
votes
0answers
25 views

Scalability, concurrency and response time in node.js serving API: better than Sinatra/Scala/Go? [on hold]

We're building a location-based app that has to provide realtime information about the location of things nearby. We're using Phonegap to build a hybrid client that can serve the information via a ...
0
votes
0answers
6 views

Defining property and find substitution for copy function of python in cython

I want to cythonize a code in python to speed up the code. In the following you can see my attempt to make my python class understandable for cython: import numpy as np cimport numpy as np ctypedef ...
2
votes
1answer
69 views

What is a good strategy to develop apps that run in console and as API?

I develop quite often scripts that are primary used as a console application but later they are used in other scripts, webservices and other things where it is very convenient, to just import the ...
-2
votes
0answers
18 views

connecting to different servlets through android client [on hold]

I am trying to connect to a servlet on application load and connecting to a different servlet on button click in android using urlconnection.But on application load it is connecting to the servlet but ...
-7
votes
0answers
58 views

Can someone review my Resume [on hold]

I am applying to most of the jobs I fits into, but I am not getting any feeback from recruiter. I read no. of articles and written resume based on it. Can you guys review my resume?
8
votes
5answers
740 views

Designing database related methods, which is better to return: true/false or row affected?

I have some methods that perform some data changing in a database (insert, update, and delete). The ORM I'm using return row-affected int values for those type of method. What should I return for "my ...
2
votes
2answers
100 views

Should we always create web application scalable? [on hold]

Fact that now a days everyone is moving to cloud due to ease in scalability, configuration and maintenance. But my question is should we develop all web application scalable event if it is not ...
-1
votes
0answers
27 views

Developing Windows Phone and Windows 8 in C++ : Available resources? [on hold]

I've already read that most people suggest that one should develop for Windows / Windows Phone using C#. However, I would like to keep developing in C++, since I use this language for both Windows and ...
3
votes
2answers
96 views

To depend on source code or on binary?

We have two in-house projects, A and B, developed by different teams with B dependent on A. Since source code for both projects is stored in git, I've included project A as a submodule into project B ...
-2
votes
0answers
18 views

How to create a 3D Model using Wikitude? [on hold]

Has anybody tried creating a 3-D Modeling using Wikitude AR SDK for iOS? I have heard it's possible with Wikitude , the 3D Moedling. (http://www.wikitude.com/developer/documentation/ios) Please let ...
2
votes
2answers
187 views

What's a good simple way to combat the n+1 problem?

I'm trying to better understand performance in PHP. One issue I'm thinking about is the n+1 problem. By n+1 I mean something like this: $posts = Posts::getPosts(); foreach($posts as $post) { ...
1
vote
1answer
69 views

“Cross-cutting” domain in DDD

I've recently started studying Domain Driven Design and so far it looks like it will help tremendously with my team's current project. I'm running into a bit of a problem though actually determining ...
-1
votes
1answer
32 views

Best way to jump into asp.net from classic asp? [on hold]

First, I am not a programmer, I am a sysadmin that learned classic ASP, VBscript and VB6 15 years ago. I have been using ASP and VBscript quite extensively and effectively at work for things that I ...
2
votes
1answer
26 views

Object pointer with privileged access?

Let's say you have class Car with Car->tune() and Car->drive() class CarDriver class CarMechanic Each CarDriver and CarMechanic object has a reference/pointer to a Car object. The CarDriver ...
0
votes
1answer
21 views

Is SQL Server Sevice Broker appropriate for transfering large volumns of records from one database to another

I have a database that collects and process large volumes of records However due to the legacy nature of the system im working with (and the powers that be) i need to transfer (processed) records to ...
1
vote
2answers
68 views

Best way to port Pascal persistence method to C#

My new jobs is to port a Delphi application to C#. The Delphi application was originally developed as a proof of concept and after it entered production the company wanted it ported. I'm required to ...
-3
votes
1answer
87 views

As I learn to program [on hold]

Ok, life story in two sentences. I have been to college and have one semester left but I have obtained absolutely nothing from it (life lessons and the like don't count- I'm talking lucrative skills ...
-3
votes
1answer
98 views

Good program to test skills and how to know when I am a competent programmer? [on hold]

I am almost done learning c++ off of learncpp.com I want to know what is a project that I can work on once I am done that will test everything I have learned and allow me to learn what it is like to ...
0
votes
4answers
63 views

Can one always design for scale out?

When designing an application where scalability is going to be important, it would be useful if the application could be designed to "scale out" on cheap commodity servers. However, there are many ...
0
votes
1answer
28 views

Referencing official documentation in source-code documentation

What are your preferences for referencing official documentation (like a white paper) for an algorithm from comments in the code that implements it? I'm trying to decide between two methods, as ...
1
vote
1answer
33 views

Equidistant polygons

Consider these polygons: For reasons of simplicity I only consider triangles or polygons with 4 vertices. These shapes are specified by the vertices, the output of the program should be modified ...
-5
votes
0answers
47 views

how to learn c++ if you know nothing about programming? [on hold]

I have tried online tutorials and books but I can't find one that is fun or explains without that techy vocabulary, is there any book that is fun or is for beginers that don't know anyting.

15 30 50 per page