1
vote
1answer
12 views
Incorporating GPL Code in my Open Source Project
I have downloaded a currently inactive GPL project with a view to updating it and releasing the completed codebase as open source. I'm not really a fan of GPL though and would rather licence my ...
0
votes
0answers
20 views
Should I try to write simple key-value storage by myself?
I need a key-value storage in a simplest form we can think of.
Keys should be some fixed-length strings, values should be some texts.
This key-value storage should have an HTTP-backed API.
That's ...
0
votes
0answers
15 views
Best/Easiest Technology for a RESTful webservice [closed]
So I'm going to be creating a phone app + website that will need to utilize a web service. Webservices are completely outside my domain so I'm not entirely sure where to start.
Does anybody have any ...
0
votes
0answers
11 views
Persisting NLP parsed data
I've recently started experimenting with NLP using Stanford's CoreNLP, and I'm wondering what are some of the standard ways to store NLP parsed data for something like a text mining application?
One ...
-5
votes
0answers
22 views
What resources would be best to use to prepare for the MySQL 5.1 Cluster Database Administrator Certified Expert Exam? [closed]
I would like to prepare for the Oracle Certified Expert, MySQL 5.1 Cluster Database Administrator Certified Expert exam. However, the website does not provide any resources other than their practice ...
2
votes
1answer
25 views
How should I architect my Model and Data Access layer objects in my website?
I've been tasked with designing Data layer for a website at work, and I am very interested in architecture of code for the best flexibility, maintainability and readability.
I am generally acutely ...
2
votes
3answers
43 views
How To Initialize Object Which May Be Used In Catch Clause?
I've seen this sort of pattern in code before:
//pseudo C# code
var exInfo = null; //Line A
try
{
var p = SomeProperty; //Line B
exInfo = new ExceptionMessage("The property was " + p); ...
-3
votes
0answers
33 views
Tips to get a job in iPhone development [closed]
I was wondering what are some of the things that people who are hiring an iPhone developer want. I am trying to get a job in iPhone development ,but cannot seem to land one at all. I have 2 apps on ...
0
votes
0answers
11 views
Intput/Output to QLable? [migrated]
I would like my input from the keyboard to be sent to a QLabel. But I dont want just to put the text in it as label->setText("") but instead to see every letter from the keyboard to appear immediately ...
-4
votes
0answers
37 views
iOS Kinda Newb Question [closed]
So im getting used to iOS programming.
I recently got into storyboards, I've got a quick question:
on my delegate.m I used to declare the first window you're going to show something like this:
...
0
votes
1answer
134 views
Why are some data types Deprecated while others Obsolete?
Why are some data types or functions made Obsolete in a newer version of an API and others are marked as Deprecated? Why not make them all Obsolete or why not make them all Deprecated?
5
votes
3answers
113 views
How easy is it to change languages/frameworks professionally? [closed]
Forgive me for asking a career related question - I know that they can be frowned upon here, but I think that this one is general enough to be useful to many people.
My question is: How ...
2
votes
5answers
101 views
What is the best way to create HTML in C# code?
I have a belief that markup should remain in mark-up and not in the code behind.
I've come to a situation where I think it is acceptable to build the HTML in the code behind. I'd like to have some ...
4
votes
4answers
166 views
Building a website, want to use java
I'd like to make a simple-ish website that is essentially a small game. Key strokes are to be processed and sent to a server (already acquired and should support SQL and JSP, I believe) which then ...
0
votes
0answers
8 views
Removing or Hiding JTable drag selection outline
When performing a drag and drop on a JTable there is an outline of the selected cell that appears while dragging. How can I override that behavior and not show anything but a special cursor?