Can you sync mutiple iPods with the sames iTunes library? I would like to keep just music on my iPod nano, but have both music and videos on my iPod touch. Is this even possible?
I have copies over one directory to my external hard drive but the file counts are different.
What's the best tool to find out what the differences are between these 2 directories?
I often have a remote desktop session or a java remoting tool up and whenever i copy from within a remote session and paste into chrome browser, the browser freezes and i have to kill it for anything to work again.
has anyone seen this or have a resolution?
i have to remember to copy and paste into notepad first and then copy from notepad and then into chrome which is a pain.
I am using google chrome 5.0
I have a zip of a pretty large website. I FTP the zip over to the server and then unzip it and extract to the website folder but this is very slow.
Is there anyway to just extract and copy the files that are newer (compared to all files)
What is the difference between a software development pattern?
A methodology such as agile DSDM etc how is OO classed as a methodology and a paradigm?
How can OO be applied to a methodology such as agile if itself is a methodology?
Whats the difference between a paradigm and a methodology or a development pattern?
Thanks for any replys.
Hi! I'm using OO 3.1 and would like to find any way to store my bibliography and OO native tool is rather uncomfortable and takes a lot time to put info.
So, I'm looking for any plug-in or tool to simplify this task
I have a daemon running on a server that's latched onto a TCP/IP port. I'm looking to see if there's currently any support iPhone/Cocoa-touch frameworks that gives a nice OO wrapper for speaking to the daemon over an IP socket. I need to be able to interactively query the daemon with commands and retrieve back information.
If there isn't any OO wrappers for such a task, what's the next best bet?
Since there is for almost everything a module and it is repeatedly said that we should not reinvent the wheel and since I do not write modules for cpan I have no need to use OO.
But my question is, is professional Perlcode mainly written in OO-style?
Would someone please explain to me what the below paragraph means? This is a snippet from "Design Patterns: Elements of Reusable OO software"
Part of an object's interface may be characterized by one type, and other parts by other types. Two objects of the same type need only share parts of their interfaces. Interfaces can contain other interfaces as subsets. - Design Patterns - Elements of Reusable OO software, pg 13
Do you know any application, the more interesting/useful the better, to introduce a new person to Python language and the Python code style, but not necessarily to OO programing, so as to learn the subtleties and idioms of the language and surrounding community?
I'm thinking along the lines of people that has worked with JavaScript, Java or .NET, and already have a strong hold of OO concepts.
Are there any aspects to the C++ programming language where the code is known to be slower than the equivalent C language? Obviously this would be excluding the OO features like virtual functions and vtable features etc.
I am wondering whether, when you are programming in a latency-critical area (and you aren't worried about OO features) whether you could stick with basic C++ or would C be better?
Since there is for almost everything a module and it is repeatedly said that we should not reinvent the wheel and since I do not write modules for cpan I have no need to use OO.
But my question is, is professional Perlcode mainly written in OO-style?
some pages that use macros like:
topusers or popularlabels
are really slow to load. Is there any way to have this load asynchronously through ajax instead of having this block the initial page load ?
Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor:
XmlSerializer serializer = new XmlSerializer(typeof(DataClass));
I am getting an exception saying: There was an error reflecting type.
Inside the data class there is another composite object. Does this also need to have the [Serializable] attribute or by having it on the top object does it recursively apply it to all objects inside?
Any thoughts?
some pages that use macros like:
topusers or popularlabels
are really slow to load. Is there any way to have this load asynchronously through ajax instead of having this block the initial page load ?
Here is my jQuery code:
$.get('/Home/GetList', function(data) {
debugger;
$('#myMultiSelect').val(data);
});
Here is my controller code:
public ActionResult GetList(int id)
{
int[] bodyParts = _repository.GetList(id);
//how do i return this as an array back to javascript ??
}
if I have the GetList function return an array of integers, how do I return this to the jQuery function?
i take a regular multiselect listbox and convert it to a jquery ui multiselect listbox by calling this:
$(".multiSelectMe").multiselect();
As per the API, i call this method in the return of an ajax function
$(".multiSelectMe").multiselect("select", "Item 1");
but nothing seems to happen. i can't figure out a way to have this programatically add items within an ajax call.
i was thinking there was maybe another "refresh" method or something like that but i can't find any.
We are seeing this error in a winforms application. Can anyone help on why you would see this error and more inportantly how to fix it or avoid it happening.
System.ComponentModel.Win32Exception: Error creating window handle.
at System.Windows.Forms.NativeWindow.CreateHandle(CreateParams cp)
at System.Windows.Forms.Control.CreateHandle()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.OnVisibleChanged(EventArgs e)
at System.Windows.Forms.ButtonBase.OnVisibleChanged(EventArgs e)