All Questions
0
votes
0answers
8 views
Good source code project examples of MVC 4/Jquery I could use as a reference?
I have a few projects like Sportstore (from a MVC book) and MusicStore (from the MVC web site) I use as reference sometimes..
Is there any good site that combines MVC 4/Jquery or even just Jquery ...
6
votes
5answers
61 views
How do you keep track of what classes and functions your team has written?
When working on code, I face many of the same challenges that my teammates do, and I have written some helpful functions and classes, and so have they. If there is good communication, I'll hear about ...
0
votes
0answers
18 views
Getting SSE instruction set version supported by CPU using windows batch program [migrated]
How to get which SSE (SSE3/SSE4.1/SSE4.2) is supporting by my CPU on windows using a batch script.
on Ubuntu we can get it using below command and parse it for required string sse4_2 or sse4_1.
...
0
votes
0answers
11 views
Splitting string in java containing relational operators [migrated]
Lets say i've a string which 've relational operators,
"x<y , x=y , x<=y , x>y , x>=y"
how can i split this?
if i use [<>=] it'll split x<=y as (x and =y).
is there any simple ...
2
votes
0answers
31 views
Multiple SSH keys for different organizations
I can see that GitHub allows you to have multiple mail account and associate every organization you are part of with a different address.
Can this be done also for SSH keys?
What I would like to do ...
-3
votes
1answer
27 views
how to Read in a list of values store it in a queue and change the order of the inputs? [closed]
How to Read in a list of values store it in a queue and change the order of the inputs?
For example, read in abc123efgh45678 and display a1b2c3d4e5f6g7h8
I know I can use queue to read in the ...
0
votes
0answers
38 views
XML vs SQL for content display on an ecommerce website [duplicate]
I am in process of developing an e-commerce application which is using SQL Server 2008 as a DB. I was suggested to use XML for content/product display, I bought the idea of using XML as a datasource ...
-1
votes
0answers
97 views
I would like some guidelines for newbies on github [closed]
I've reached a point in my education and experience in programming where I felt the urge to create a GitHub account and try to contribute to projects where I can.
However, being new to GitHub, I'm ...
3
votes
2answers
93 views
Refactoring an existing abstract class and its parameters
I have some abstract class A so that it has some abstract method doStuff currently there are many classes that inherit A and implement doStuff.
The class' instances are initialized at run-time via ...
13
votes
4answers
741 views
What should I do when waiting for a review?
Before asking my question, I must explain the situation.
I'm working for a company as a junior software engineer. One of the seniors always stops me when I have finished my development and want to ...
6
votes
2answers
240 views
Why is Flags Enumeration considered an intermediate skill?
I was reading this article: Designing Flags Enumerations @ msdn and it says
Combining flags enumeration values is an intermediate skill that should not be required for developers implementing ...
-1
votes
0answers
38 views
Set up staging for my project
My application system includes modules and software related both desktop and web applications. They are programmed in VS VB.net and C#. I would like to set up staging (development,testing,Production) ...
-3
votes
1answer
74 views
Getting a job doing research in artificial intelligence? [closed]
Out of curiosity, how would one go about doing research in artificial intelligence? And I mean "hard" artificial intelligence, not "soft" like customer-service bots, or what you see in videogames.
1
vote
0answers
17 views
Algorithm/Strategy or Data structure to capture priorities sub priorities in an app
I am working on a CMS that is starting to evolve a bit.
We started off with content that had the following priorities ( columnn in the db on the content table): HIGH MED LOW. Data was fetched by ...
1
vote
0answers
13 views
How to manipulate JDBC connection with Service layer [migrated]
I have a Spring MVC App, it works fine, but now I inserted the service pattern and I don't know what is the the best way to treat my JDBC Connection inside my DAO.
I have an interceptor which creates ...