Hi,
I plan to work with android. Please point me some good books and blogs/discussion/tutorials/ forums for getting vast and in depth knowledge quickly about this android technology.
I'm creating a view with images, videos, audio and documents (books) and I like to shown a picture of each of them in a carousel.
Everything works nicely with images and videos as far as we added a image-thumbnail (image filefield) to their CCK but we like to show a default image for audio and documents without changing the original CCK. Is it possible with imagecache (may be with imagecache_custom_code or views_custom_php) or we need to look for a different approach?
Thanks for your help,
m.
Can you recommend me what should I read/learn in order to make a well organized code in C?
One of the things I want to learn is the principles of splitting project in .h and .c files, what goes where and why, variable naming, when to use global variables ...
I am interested in books and articles that deal with this specific problem.
Hi,
I want to learn C , UNIX and LINUX, and more about embedded systems. Very much interested in them. Are there any online courses or websites which can guide me. And please suggest books to read in learning them.
Thanks for your time.
I'm trying to learn the Microsoft data / service stack. I want to build a database in SQL Azure and expose it to a c# client application.
I've never worked with any SQL database technology.
Looking online, everything just seems so confusing -- too many technologies, hard to tell what's new vs what's old.
What's the latest technologies to look at, and what (books?) should I be reading?
some books or even the rails api uses
form_for ...
...
submit_tag ...
end
and i found that the Rails 2.3.2 Scaffold uses
f.submit "Create"
instead... and this is not in the rails api doc. Is this a new
addition and is it suppose to replace submit_tag?
Which font or fonts should be used while writing code lines inside a book?
I'm especially dealing with C code, but I'd also like to know what fonts are used for the codes of popular programming languages in books.
I've been fortunate to have two very good theory professors; I've take 'Algorithms' and 'Advanced Algorithms' with them, and both classes have been outstanding. I'd like to get them "fun" theory books, something like Proofs Without Words but a little cheaper. Any recommendations?
Hi,
Have You got any tutorials, books, any good resources to start creating mobile games using silverlight ?
Maybe any good resource on writing 2d games in silverlight for pc?
Ay way do You think that its worth learning it or any other technology would be better and have probably shinier future ?
Hi,
as I know there is an official document for Java (JLS), I'd like to know if it's also the case of PHP language. I found the "Language Reference" section on the PHP manual, but it doesn't look as detailed as the JLS.
The thing is I have a good practical knowledge of PHP but I'm miserably clueless about what REALLY happens under the hood.
If there isn't any official document, could you recommend me some good books to read ?
Thanks in advance !
Rolf
ive made an xml schema all the code basically and was wonder is there a way that the code genarates something like this
http://www.novell.com/documentation/extend52/Docs/help/Director/books/PGImages/novell_portlet_xml_schema.gif
and if i can then how do you do it?
Hi Guys (and gals),
In the past my employers bought me subscriptions to MSDN and Safari but now that I am working as a contractor and have to pay for these things myself, I was wondering if there are other services that offer subscriptions or access to technical books. I develop on Windows using C++ and .NET.
Hi,
Many a times in blogs and books, i have seen conditions in if statements like this:
if(0 == a.size()){...}
or
if(-1 == str.indexOf(ch)){...}
Is there any performance advantage in using integer literals on left hand side in conditions or is it just a style that some programmers prefer?
I have been doing code for a few years and still feeling that my knowledge still not broad enough to become a professional. I have studied some books related to Design Pattern but I know there are many others.
So could anyone list the one which you think it is good to learn to become a better programmer and more professional?
Programming Languages I work on : C# , Ruby, Javascript
Hi,
On this site I found a lot of cool examples of PHP OOP.
Maybe you know where to find complete examples?
Guest books, registration forms, blog...
When I look at the full model is much easier to understand OOP PHP.
As different classes interacting with each other, exchange data
How to use the generic class for sending data to the database
Thanks
Does anyone know of papers/books/etc. that document patterns for databases? For example, one common rule of thumb is that every table should have a primary key and that the key should be devoid of information content. So I was wondering if anyone had written a book or published papers regarding design patterns for designing relational databases?
I've read two books, tons of examples. They still make next to no sense to me. I could probably write some code that uses delegates, but I have no idea why. Am I the only one with this problem, or am I just an idiot? If anyone can actually explain to me when, where, and why I would actually use a delegate, I'll love you forever.
Say, using MySQL, if the movies table has 20,000 records, and each record has a field that is the description of the movie, up to 2k byte long. How can we search for movies with the word "nature" in its description? If possible, it is to be fast, instead of going through all the 20,000 records. (if in some other situations, like for books, where n can be 200,000 or more).
As I understand in the service books we have the entries for each messaging and transport service. The configuration for those services are stored there. In particular I see the Google talk, Yahoo client download and facebook as services.
Hi, guys,
I find stackoverflow is very friendly, professional and easy to use. Goole webiste is great too.
I knows little of web site development, since most of my time was working on C++.
There are many choices, so where is the start point, asp, jsp, python, php, etc?
Which technology I should use?
Which books are essential to website dev?
So I am required to write a fairly basic Windows service and have never done so before. Of C#, C++ (the Visual Studio suite), what is the best language to develop in? I am a student, and am most familiar with OO languages such as Java.
Additionally, if anyone can recommend any books, articles, or google searches that would be relevant to the project I would greatly appreciate it.
Thanks!
badPanda
Hi
I am planning to develop a portal using Joomla cms.
The portal has to be fully customized.
I would like to know some best tutorials and books for Joomla CMS customization.
Thanks
Hi Experts,
I have a tables with data like this
Id BookId TagId
34 113421 9
35 113421 10
36 113421 11
37 113421 1
38 113422 9
39 113422 1
40 113422 12
I need to write a query (SQL Server) which gives me data according to the tags say if I want bookIds where
tagid =9 it should return bookid 113421 and 113422 as it exists in both the books, but If I ask data for tags 9 and 10 it should return only book 113421 as that is the only book where both the tags are present.
Thanks
Parminder
What tools and standards do you use to describe your project, database, modules, classes,
their interaction for programmers, let's say after the project is finished.
Do you use UML?
Are there enterprise standards for Java developers, how to write such a documentation let's say from SUN?
Are there specific tools that simplify this documentation process & compilation of neccessary docs.
If there are good books on project documenting process,
please give me links to Amazon.
why we using double pointer like char **p;
are there any purpose ,if there is please tell me
i read some books but none of them tells purpose(s) of pointer to pointer
if we can write char *p; and char **p;
i think we may write char ***p; or char ****p; am i wrong