RSS SubjectsBlogs about "Programming"

Programming

Programming Language Fundamentals by Example ??????
2008-05-21 10:23:00
Programming Language Fundamentals by Example??????# Author:D.E. Stevenson# Publisher: AUERBACH # Number Of Pages: 256 # Publication Date: 2006-11-10 # ISBN-10 / ASIN: 0849370167 # ISBN-13 / EAN: 9780849370168 Written in an informal yet informative style, Programming Language Fundamentals by Example uses active learning techniques, giving students a professional learning experience based on professional methods applied with professional standards. It provides an understanding of the many languages and notations used in computer science, the formal models used to design phases, and the foundations of languages including linguistics and logic. To give students a thorough, working knowledge of programming languages, this textbook uses a semester-long project in which students create a programming language. This project brings to life the concepts and theories fundamental to computer languages. The author incorporates "thinking tools" such as concept maps, matrices for analysis, and flow...
Handling very large numbers in .Net
2008-05-20 19:53:00
My recent attempts at playing the Google Treasure Hunt found me looking for ways to work with very large numbers. My solution to the first puzzle was consistently giving me the wrong answer. After a while I stopped looking at my solution for mistakes and started looking at the answer closely; it turned out that ...
A Programming Challenge
2008-05-19 13:24:00
Today's quiz is a programming challenge. If you're not into proramming, you might not enjoy this quiz. However, do you have one of those friends who just thinks he/she "knows it all"? Forward this C programming brain stumper on to them, and see if they are really all that Hot ! Enjoy Read More...
Programming Windows, Fifth Edition
2008-05-18 18:21:00
# Publisher: Microsoft Press; 5 Har/Cdr edition (November 11, 1998)# Language: English# ISBN-10: 157231995X# ISBN-13: 978-1572319950Product DescriptionLook it up in Petzold remains the decisive last word in answering questions about Windows development. And in PROGRAMMING WINDOWS, FIFTH EDITION, the esteemed Windows Pioneer Award winner revises his classic text with authoritative coverage of the latestOnly registered users can download this file. Please Register or LoginPassword:warez-bb
Introduction to C Programming
2008-05-18 16:53:00
As a programming language, C is rather like Pascal or Fortran. Values are stored in variables. Programs are structured by defining and calling functions. Program flow is controlled using loops, if statements and function calls. Input and output can be directed to the terminal or to files. Related data can be stored together in arrays ...
TNT, TBS, truTV Programming Schedule - 2008 - 2009
2008-05-18 06:40:00
Turner Entertainment Network presented its programming lineup for its three cable networks, TNT, TBS, truTV: TNT Programming and Development Plans TNT has enjoyed great success with its original series, including THE CLOSER and SAVING GRACE, both of which return with new episodes in July. By 2010, TNT expects to offer original programming Mondays through Wednesdays in ...
Problem Solving dengan UCS , BFS contoh kasus Puzzle
2008-05-17 06:21:00
wew …. dah lama banget ga posting .. nih ada psotingan terbaru mengenai penyelesaian masalah menggunakan algoritma BFS serta UCS untuk contoh kasus puzzle … source code program bisa di download disini
Excel Programming: Your visual blueprint for creating interactive spreadshe
2008-05-15 06:05:00
Excel Programming: Your seeable plan for creating mutual spreadsheets (Visual Blueprint) (Paperback)By Jinjer Simon Buy new: $17.8139 utilised and new from $8.07 Customer Rating: First tagged “excel” by V. K. Noll “denalinoll” ...
Cliff Bleszinski Likes To Get Into Dom?s Head
2008-05-14 21:49:00
In an interview with Eurogamer, Cliff Bleszinski told them that his favorite aspect of Gears 2 was getting into, i quote, “Dom’s head a little bit more, figuring out who this Dom Santiago is, who his wife was and what wound up happening to her.” He also said that he is “excited to see the ...
CBT Nuggets Intro to XML And Programming Using The Microsoft.NET
2008-05-13 22:46:00
XML, the standardized format of the World Wide Web Consortium (W3C) aims to make application development and integration very simple. It is a data format and framework that has been adopted as the basis for information exchange by the software development community. It is so powerful that Microsoft developed their entire .NET platform around using ...
concept V2.5 programming
2008-05-13 20:39:00
how to create and execute an program in concept V2.5 software programming using ladder logic. give one example
More Thoughts on Programming Your Mind from Myrtle Beach
2008-05-13 16:50:00
“You speak your world into existence” “What you talk about comes about” We have all heard these types of quotes and most of us have read the chapter from “THINK & GROW RICH” on auto suggestion. So why don’t more people take these truths literally? When it comes right down to it, why don’t we take all “TRUTH” ...
PhD position in Constraint Programming
2008-05-13 14:27:00
Uppsala University hereby declares the following position to be open for application:PhD position in Constraint Programming at the Department of Information Technology, Division of Computing Science
Neuro-Linguistic Programming For Beginners
2008-05-13 07:00:00
How the program works: Neuro-linguistic programming involves the use of language and communication based techniques and strategies to alter or modify the mid set of a person. It does not work along the paradigms set by a model or theory. The initial experiment by the creators Richard Bandler and John Grinder way back in the 1970s ...
UFC News: UFC Programming On Spike TV For Week Of 5/12 To 5/18
2008-05-12 02:35:00
UFC Programming On Spike TV For Week Of 5/12 To 5/18
Beginning XNA 2.0 Game Programming
2008-05-11 20:44:00
Would you like to create your own games, but never have the time to dig into the details of multimedia programming? Now you don?t have to! XNA makes it simple to create your own games, which will run on your PC and Xbox 360 console. Even if you don?t know how to program at all, ...
labview programming
2008-05-10 11:02:00
i want to know how i can deal with serial port in pc by labview program you must to know i want this in control application thanks alot
Programming WCF Services
2008-05-08 13:33:00
My two favorite .Net programming books just happen to be by the same author - Juval Lowy. The first book, "Programming .NET Components", is a well worn companion that often is not on my desk because I loan it out so often. And now, "Programming WCF Services" occupies the #2 slot of .Net book favorites. Lowy's writing style is terse, concise and yet somehow compelling. I find myself often rereading chapters after working through some programming issue related to the subject matter. It's always interesting to me how I can reread a chapter a few weeks or months later and find fresh insights. There's a certain layering of knowledge that reveals itself in subsequent readings that's hard to explain. Lowy's treatment of the subject matter is encyclopedic with numerous examples and countless insights. Lowy does an excellent job of describing the motivation behind each and every example giving the reader ample information to understand exactly what problem is being solved. There's a ...
C#'s Unsung Hero
2008-05-07 15:56:00
I was updating some legacy Windows C++ code last night and the pain of using it hit me like a ton of bricks. In particular, the string handling was a nightmare. Here are all the ways I found strings used in this program: CString Bse_String (private class) OLESTR LPCTSTR LPSTR wchar_t (include const and pointer variants) TCHAR (include const and pointer variants) char (include const and pointer variants) STL string BSTR _bstr_t CSimpleStringT What a mess. And worse still, this only address the width of the characters, not the encoding. Now admittedly, some of macro types overlap but still if you haven't used this stuff in a while, it is hard to remember what maps to what. And then there are all the _t variants for the library methods. For instance, _tstrcpy replaces strcpy. Finally, there are macros to help with conversions like W2A, T2W, CA2T, etc. C# String handling is light and breezy by comparison. There's one class and it pretty much de...
The Programming Languages Zoo
2008-05-07 06:18:00
It’s time to play our favorite game: “geek analogy”. Where we take a category of objects in a class known to geeks and make up hysterically funny comparisons to a set of real-world objects. Today, I’d like to talk about what animal each of the programming languages would be if they were occupants of a ...
Multiplayer Game Programming w/CD
2008-05-07 05:29:00
Todd Barron, LostLogic ?Multiplayer Game Programming w/CD” Course Technology PTR | 2002-06-01 | ISBN: 0761532986 | 850 pages | PDF | 12 Mb Multiplayer Game Programming is the first technical guide to enable you to write a complete Internet-ready video game using DirectX 8. The first part of the book covers the history of online gaming, ...
Best Programming Jokes
2008-05-06 19:43:00
How can you tell when a programmer has had sex?When he's washing the pepper spray out of his eyes. ~~~~~~~~~~~~~~~~~~~~~~~~~ Two bytes meet.  The first byte asks, "Are you ill?"  The second byte replies, "No, just feeling a bit off." SHARETHIS.addEntry({ title: "Best Programming Jokes", url: "http://www.devtopics.com/best--programming-jokes/" });
Beginning C++ Game Programming
2008-05-06 17:30:00
Offering a thorough and modern introduction to C++, this book has everything you need in order to learn the fundamentals of C++ and game programming basics. Uploader note: This book will teach you c++ programming basics in terms of gaming, like how an array can be used to store items as an inventory, it won’t teach you 3d or 2d gaming basics. It’s a good way to
Free eBooK : 10 Easy & Instant Programming Tricks for Your Website - Fu
2008-05-06 03:38:00
"Discover The Easiest Way To Turn A Customer Spending $6 With You Into A Customer Spending $60 With You, In Less Than Two Minutes..." AND - Discover The Nine Other Little-Known 'Techie' Tricks You Can Immediately Use To Make Your Website A LOT More Powerful And Profitable Even If You're Not The Least Bit Technical ... PLUS - A Special Bonus For You: If You Order Today You
Programming Services|Affordable Web Programming|Software Programming
2008-05-05 19:09:00
Programming services assist affordable web programming, software programming services, software development services, outsourcing IT Services by soft1 Vote(s)
By: JeQQ it
Links - 2008-05-04
2008-05-04 14:19:00
Seems like there is a lot more to read as of late on the Web. Either that or I'm just bored. StuffSafe - Online home inventory. I made the mistake of using Microsoft Money's home inventory years ago. Don't do the same. Tip: Silence Window's Command Line Error Beep - This is one of those priceless little tips I should of thought of. XS EULA Generator - Need a quick end user license agreement (EULA)? This is the way to go. Google Recipe Search - In beta. Very cool. The Vulcan Project - Maps of pollution hotspots by NASA. Very interesting... ThreeSharp Library for Amazon S3 - Open source project in C# for interacting with Amazon's very cool S3 storage service. NeoLoad - Performance testing for Web applications. Looks interesting. Ajaxload - Ajax loading gif generator. There are a lot of these on the net. This allows better color control. Fold Laundry Faster - Stupid pet trick for folding shirts. Guess I'm a sucker for short cuts. Students can Get Free Microsoft Software...
Programming Embedded Systems: With C and GNU Development Tools, 2nd Edition
2008-05-04 06:05:00
Programming Embedded Systems: With C and GNU Development Tools, 2nd Edition (Paperback)By Michael Barr Buy new: $49.99$43.5033 utilised and new from $31.99 Customer Rating: First tagged “linux” by William B. Swift Customer ...
Portable C and Unix System Programming (Prentice-Hall Signal Processing Ser
2008-05-04 04:05:00
Portable C and Unix System Programming (Prentice-Hall Signal Processing Series) (Paperback)By J. E. Lapin 11 utilised and new from $0.09 Customer Rating: First tagged “unix” by William B. Swift Customer tags: system ...
The Art of UNIX Programming (Addison-Wesley Professional Computing Series)
2008-05-04 04:05:00
The Art of UNIX Programming (Addison-Wesley Professional Computing Series) (Paperback)By Eric S. Raymond Buy new: $36.7036 utilised and new from $17.95 Customer Rating: First tagged “linux” by William B. Swift Customer tags: ...
NVIDIA Shaking Up the Parallel Programming World - Slashdot
2008-05-03 13:06:00
NVIDIA Shaking Up the Parallel Programming WorldSlashdot - 4 hours agoSuppose you are writing a gaming engine and there must be coordination between the location of the characters in the 3D world, coupled to their movements, ...
NVIDIA Shaking Up the Parallel Programming World - Slashdot
2008-05-03 11:42:00
NVIDIA Shaking Up the Parallel Programming WorldSlashdot - 9 minutes agoSuppose you are writing a gaming engine and there must be coordination between the location of the characters in the 3D world, coupled to their movements, ...
Using Attributes to Exclude Code from Coverage in TestDriven.Net
2008-05-02 02:58:00
There are times when you don't want your coverage level penalized for code not covered. Often this occurs with code that is produced from a code generator. Since TestDriven.Net invokes NCover with the //ea CoverageExcludeAttribute switch, it's relatively easy remove code from the coverage statistics. First, define the CoverageExclude attribute. Make sure to declare it outside of any namespace scope (I made this mistake and struggled for 10 minutes to figure out why it didn't work). It's best to define the attribute in your non-test code to reduce couplings between assemblies. The attribute requires no methods beyond the default constructor. public class CoverageExcludeAttribute : System.Attribute { } Then decorate the modules, classes, methods and propertes you want to exclude. [CoverageExclude] public class SomeClass { } The next time you run TestDriven.Net and select coverage, the decorated code will be excluded from coverage. You can capture more information abo...
Civic Duty Complete: Back to Regularly Scheduled Programming
2008-05-01 18:45:00
Two and a half days of mind-numbing jury duty service are complete. The case I was placed on has been settled without We the Jury rendering a decision. Apparently the defendant “copped a plea” and is now likely on her way to the pokey in Perryville for an undetermined length of time. Everyone ought to ...SHARETHIS.addEntry({ title: "Civic Duty Complete: Back to Regularly Scheduled Programming", url: "http://www.phoenixrealestategu-y.com/civic-duty-complete-back--to-regularly-scheduled-programm-ing/927" });
Commonly Botched Interview Questions
2008-04-30 16:50:00
Lately, I've had to do a some interviewing for new positions that have opened up here. My interview style is to not ask too many questions and to try and get the candidate to talk about themselves. Still, there a few technical questions I ask just to make sure the basics are understood. It's surprising how candidates with many years of experience can't answer the following: Define Inheritance - I think most candidates have a notion of what this is but manage to stumble around for 5 minutes or more answering it. What's strange is that it can be described pretty much in one sentence. Answer: Defining new classes from existing classes.Define Polymorphism - I would love it if a candidate asked "Ad-hoc or Parametric?" But they never do. Again, I usually get a 5 minute answer that sort of approximates what I'm looking for. Often they define by example using the classic "Shape, Square, Triangle" example. Answer: Allows values of different data types to b...
Are You Sure?
2008-04-30 13:31:00
Just now, at work, I received a "bug" (read: feature request) to add those "are you sure" dialogue boxes to a script. (If you’re unaware, at the place I’m currently working everything is a "bug". You might work in such a company.) The prompts would come up when moving and removing items from a category, and it ...
The amount of programming and visual elements incorporating into a griefer
2008-04-30 05:35:00
This short Youtube Video shows another Griefing attack in Second Life. The amount of programming and visual elements incorporating into a griefer attacks is interesting. At the end of the video a replicating color changing blog takes over a sim as prim colored squares fall endlessly from the sky. This is just crazy. Related Posts Super ...
Bahasa pemrograman paling banyak digunakan di dunia
2008-04-30 02:32:00
Ingin tahu bahasa pemrograman yang paling banyak digunakan di dunia? Untuk mengukur secara tepat memang sulit. Tetapi TIOBE Index memberikan index dari gambaran banyaknya programmer, pelatihan dan pihak ketiga dengan menggunakan algoritma perhitungan berdasarkan pencarian dari Google, MSN, Yahoo dan YouTube. Index tersebut dapat digunakan untuk mengecek apakah bahasa pemrograman yang kita gunakan masih up to ...
C# 2.0 ?? Operator
2008-04-29 14:52:00
I'm surprised how many of my colleagues don't know about this little operator. Termed the null coalescing operator, it returns the left hand operand if not null, else the right hand operand. It makes for handy shortcuts in code and I think actually improves the readability when used judiciously. Here's an example: Console.WriteLine(name ?? "Unspecified"); Seems self-explanatory and it's fewer keystrokes to boot. It's also nice for lazy evaluation type statements: public User TheUser { get { return theUser ?? (theUser = new User()); } } Phil Haack postulates that this operator is thread safe based on an examination of IL. Don't know if that is true since I'm no IL expert either but since the left hand side is evaluated only once, there's a strong indication that it is. There's also a good article about the null coalescing operator at the Code Project. Finally, you can use ?? with value types in limited situations as described here. powered by Bloget&tra...
Software Architecture - why does it sometimes fall short?
2008-04-28 17:17:00
I'm asking the question because more and more my responsibilities are shifting into the area of architecture. As a developer, I've always eyed architects with a bit of suspicion. After all, they don't program so how much do they really know? And do they really have to live the consequences of their designs the way developers do? I sometimes wonder. Still, there is a need for an over-arching view of the subsystems and how they work. I guess what bugs me about architecture is that it's often done up front and then left to rot as the project develops. And why is this? I think it comes down to enforcement. Unlike code where you can apply static analysis, write unit tests and do code reviews to verify results, architecture tends be a bit more slippery. How often do you hear in a code review that such and such an implementation violates the architecture?  In my experience, not often. A colleague of mine wrote an interesting paper about this and brilliantly summed up the problem (at...
C, C++, Programming, Data Structures Quizzes
2008-04-28 15:34:00
OpenAsthra introducing c, c++, programming, os, data structures quizzes http://quiz.openasthra.com/ (note: We didn’t not upload all of our quizzes, we put some samples for now, however framework is fully functional, we will upload soon) Please submit your quizzes to [openasthra AT gamil DOT com]) Assess Your C Skills is back You can use same authentication information (user ... SHARETHIS.addEntry({ title: "C, C++, Programming, Data Structures Quizzes", url: "http://www.openasthra.com/unca-tegorized/c-c-programming-data--structures-quizzes/" });
UFC News: UFC Programming On Spike For Week Of 4/28-5/4
2008-04-28 00:21:00
UFC Programming On Spike For Week Of 4/28-5/4
Programming Codes
2008-04-27 11:38:00
Need to know how to use the Masterplug TVRC4N Universal 4 in 1 Remote to get my television programmed. MASTERPLUG MODEL NUMBER TVRC4N
By: Fixya.com
Free Alarm Clock
2008-04-26 11:41:00
Every once in a while, I challenge myself, I think of a small application that might be useful to me and time myself to see how much time it took me to write it. The latest one, the one I...
Programming Groovy: Dynamic Productivity for the Java Developer (The Pragma
2008-04-26 11:29:00
# Publisher: Pragmatic Bookshelf (April 8, 2008)# Language: English# ISBN-10: 1934356093# ISBN-13: 978-1934356098Product DescriptionThe strength of Java is no longer in the language itself; it's in the Java Platform (the JVM, JDK, and rich frameworks and libraries). But recently, the industry has turned to dynamic languages for increased productivity and speed to market.Groovy is one of a new breed of dynamic languages that run on the Java platform. You can use these new languages on the JVM and intermix them with your existing Java code. You can leverage your Java investments while benefiting from advanced features including true Closures, Meta Programming, the ability to create internal DSLs, and a higher level of abstraction.If you're an experienced Java developer, Programming Groovy will help you learn the necessary fundamentals of programming in Groovy. You'll see how to use Groovy to do advanced programming including using Meta Programming, Builders, Unit Testing with Mock ...
The Programming Way Of Proportionally Resizing An Image
2008-04-26 07:55:00
One of the project I baby sit lately is The Kamusi Project; an online swahili dictionary. One feature we needed on the website was a slide show [ which we use to have before when the project was hosted at yale ] so we can play a slide show of the images submitted by users. ...
By: Info Zone
A+: Obscure Programming Language of the Month
2008-04-25 18:00:00
This is the first in what will be a series of articles published monthly, each article highlighting an obscure programming language.  There are over 2700 languages spoken on Earth.  And while there are only about a dozen popular programming languages, there are over 400 known programming languages, many of which you can see in this ...SHARETHIS.addEntry({ title: "A+: Obscure Programming Language of the Month", url: "http://www.devtopics.com/a-obs-cure-programming-language-of-th-e-month/" });
Struts international programming easy (1)
2008-04-25 15:38:00
MVC is a framework of struts, like Java and other Java framework, the struts can easily achieve the internationally; accordance with the online infor1 Vote(s)
By: JeQQ it
New Adobe TV Programming Comes Online
2008-04-25 15:01:00
Unique Creative Suite 3 Video Content Available Via Adobe Media Player and New Web DestinationPress Release: SAN JOSE, Calif. ? April 9, 2007 ? Adobe Systems Incorporated announced Adobe® TV, a free online video resource for expert instruction and inspiration about Adobe products, including the company?s Creative Suite 3 family of world-class creative tools. With multiple channels, original series programming, and content from Adobe, leading training organizations and the world?s leading subject matter experts, Adobe TV delivers a virtual library of entertaining and instructional videos. Designers, photographers, video professionals, and developers will find product deep-dives, innovative tips, techniques from luminaries, and behind-the-scenes tours of the hottest creative shops and Adobe product teams.Designed to educate, inspire, and entertain the creative community, Adobe TV is immediately available online from the Adobe Web site at http://tv.adobe.com/ , or as a network with mul...
Excel Programming: Your visual blueprint for creating interactive spreadshe
2008-04-25 06:04:00
Excel Programming: Your seeable plan for creating mutual spreadsheets (Visual Blueprint) (Paperback)By Jinjer Simon Buy new: $17.8139 utilised and new from $5.00 Customer Rating: First tagged “excel” by V. K. Noll “denalinoll” ...
36264 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - SEO by FeWorks
eXTReMe Tracker