I like the way NCommon saves me from dealing with all the plumbing required to do DDD with NHibernate.
I like it so much that it I am seriously considering it to be part of my default architecture in new projects.
I'd like to ask if there are other DDD alternatives (aside from coding from scratch) to what NCommon does.
Thanks.
I do all my PHP coding in Dreamweaver (currently version CS3) I am used to it and like it. There is one thing I would like though, is to be able to check for errors. Currently I don't see them until I upload the page to a server. Is there anyway to setup PHP error checking in Dreamweaver?
Thanks.
Though it's on the edge of programming questions, I think this is still relevant here, as only those of us actually doing the coding for a site would be considering this.
I've been reading more about keyword placement, and it seems to me like a good place to do keyword placement would be in the class and id names chosen for the elements they are representing. I'm not talking about any kind of black-hat keyword stuffing thing but real legitimate use of descriptive keywords for elements.
Is this something that is actively done for SEO?
Hi,
While web development/design, I found coding it self is not enough to develop an attractive website so i have urge to learn photoshop.. i want to know what can be the best way to learn photoshop (preferably Photoshop CS4 Extended) mainly for website design. I experienced web tutorials are not enough for effectively learning computer languages, but not sure about photoshop coz it is a different job.. please recommend me a book / web tutorial for learning Photoshop.
I am developing an application. i can play my button with a sound but how to record this sound.
i've searched this coding in a week but i had nothing. all source is about recording voice.
please help me.
thanks
I'm looking for a jQuery lightbox plugin that has the ability to, with it's next and previous buttons, cycle through images repeatedly. Like a carousel effect.
I've been using jQuery Lightbox Plugin (balupton edition) but that doesn't have the option to continue cycling through images. It reaches the last image in the array and then disables the 'next' button.
So to save me some time coding, what are some plugins you can recommend?
Note: marked as community wiki.
Is there a good analysis of why visual programming languages still haven't taken off? We're still coding these days 'linearly' in a 80x25 text window; while the concepts we represent (data structures, algorithms) seem like they can be more intuitively represented visually.
Note: marked as community wiki.
Is there a good analysis of why visual programming languages still haven't taken off? We're still coding these days 'linearly' in a 80x25 text window; while the concepts we represent (data structures, algorithms) seem like they can be more intuitively represented visually.
Where can i find good practice python problems with solutions?
I'm looking for detailed practice problems that are designed with a coding purpose in mind.
i try to play a music file in my coding, but failed. i have my music file in the same folder which save .cpp file.
can someone help me?
my code is:
#include <iostream>
#include <windows.h>
int main() {
PlaySound("kenny g.WAV", NULL, SND_ASYNC);
}
how can i insert a TextBlock control in a Hyperlink in c# coding. similar to
<TextBlock> <Hyperlink>a</Hyperlink></textblock in C#. i'm unable to find content property in Hyperlink. Thanks in advance.
So I am in Excel trying to read the last saved metadata from an Access database, but I cannot figure out how on earth to do this.
If I use environ$("username") it will give my the last saved information for the excel document where I am coding, not the access db that I want it to grab from. Excel has a built in function for grabbing username data, but I cannot find one for access.
How can I do this?!
Any help is greatly appreciated!
I used program C, and now im doing some web coding, is there a place I can switch the VS toolbox layout from C++ to some kind of web design view? Thanks
Hi All,
I am pretty new in developing cocoa applications. I have developed a small UI application using cocoa. I wanted to add some information on about screen, currently it shows the app name and version which is 1.00.
Can any one help me how i can add some information in about screen, is it possible to add information programmatically instead of hard coding it ?
Any help will be appreciated.
UPDATE `play` SET `counter1` = `counter1` + LEAST(`maxchange`, FLOOR(`x` / `y`) ), `counter2` = `counter2` - LEAST(`maxchange`, FLOOR(`x` / `y`) ), `x` = MOD(`x`, `y`) WHERE `x` `y` AND `maxchange` 0
As you can see, " LEAST(`maxchange`, FLOOR(`x` / `y`) ) " is used multiple times, but it should always have the same value. Is there a way to optimize this, to only calculate once?
I'm coding this in PHP, for the record.
While coding I created a class that extended ArrayList< and implemented Iterator<.
Obviously Netbeans reported an error, because ArrayList itself implements Iterator.
What rule of Java Specification prevents this?
What is the best way or recommended best practice in the flow of database driven asp.net web application? I mean the database first or coding first or side by side?
hi ... i am new to Android, i am creating game app. i have 3 images in screen. if i click the image it should animate ie it should show open and close that particular image.
Then i have to shift the images. ie i want to swap first and second and second with third. can u help me with coding.
Are you an iPhone developer using tools other than Objective-C for your coding (i.e. Phonegap, Unity3d, Monotouch, Corona or Titanium, etc?)
Have you heard of or read section 3.3.1?
If you are concerned vote on the petition at [solicitation removed - see history]
Join the facebook group 'Article 3.3.1' and have your say: [solicitation removed - see history]
And most importantly contact apple through their web portal and ask for clarification
I have coding for onmousemove event working well in firefox and IE......but not in chrome
var mouse;
function storeMouse(e) {
if (!e) e = window.event;
mouse = { clientX: e.clientX, clientX: e.clientY };
}
function test(e) {
alert(mouse.clientX);
if (mouse.clientX < 150) {
var agree = confirm("Are you sure to leave this page");
if (!agree) {
return false;
}
else {
}
}
}
Can anyone help me.
Hello, I'm coding a uploader that saves into the db the date when a file is uploaded using CURDATE(). I want to compare the current date with the one stored into the db in order to change the color of the icon related to the file depending on how long has this feel been uploaded. For instance, if less than a week, the icon will be green, if more than a week, it will be yellow, if more than two weeks, red. How can I do it? Thanks.
Is there an alphanumeric sort for R?
Say I had a character vector like so:
> seq.names <- c('abc21', 'abc2', 'abc1', 'abc01', 'abc4', 'abc201', '1b', '1a')
I'd like to sort it aphanumerically, so I get back this:
c('1a', '1b', 'abc1', 'abc01', 'abc2', 'abc4', 'abc21', 'abc201')
Does this exist somewhere, or should I start coding? Thanks,
-chris