programming-languages

Font selection for codes in a book

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. ...

What is a good programming language for testers who are not great programmers?

We would like to create some simple automated tests that will be created and maintained by testers. Right now we have a tester who can code in any language, but in the future we might want any tester with a limited knowledge of programming to be able to add or modify the tests. What is a good programming language for testers who are not...

Is Lua a language that a non-developer can learn quickly?

Let's say a tester is to do some programming to create automated tests ... is Lua really easy to learn for someone who is not a developer? ...

What should every ASP.Net programmer know ?

How does one be called a ninja ASP.Net programmer? What set of tools and immediate knowledge(Without having to open MSDN, SO, or Google) should be known to be considered a master? Webforms or MVC... ...

What is the term(s) used to describe programming language syntax?

Is there an exact/correct term to describe this difference between the syntax/constructs of programming langauges e.g VB6 with its (if ... else ... endif) and C# with its curly braces for conditional statements. I'm using VB6 syntax and C# as examples since I'm more familiar with their syntax. For example, Visual Basic 6's syntax uses ...

How does one start off programming in a new language/platform/technology?

How do you start programming in a new language or technology? Do you take time to unlearn some of the specific things you've learnt, read up documentation and then dive into coding or do you start off coding and then pick up specifics as you go? ...

Need some ignition for learning Embedded Systems

I'm very much interested in building applications for Embedded Devices. I'm in my 3rd year Electrical Engineering and I'm passionate about coding, algorithms, Linux OS, etc. And also by Googling I found out that Linux OS is one of the best OSes for Embedded devices(may be/may not be). I want to work for companies which work on mobile app...

How to learn a language that has very little coverage?

I recently came across the Kogut language, and was interested by it. However, the only website to gain information from is the sourceforge page that hosts the project. I had no idea how to even attempt to look at the language in more depth. So what I'm asking is, has anyone here learnt a language that doesn't have the thousands of resou...

Better language or checking tool?

This is primarily aimed at programmers who use unmanaged languages like C and C++ in preference to managed languages, forgoing some forms of error checking to obtain benefits like the ability to work in extremely resource constrained systems or the last increment of performance, though I would also be interested in answers from those who...

If I already know Perl Is Python worth learning?

I'm all for learning and continual improving one’s self, and I believe you should have as many tools as possible in your toolbox. However, I was wondering if it was worth it learning Python, since I already know a couple of dynamic interpreted languages, including Perl. My background is mostly C/C++/Java/C#, but I’ve programmed in Perl q...

how to reverse this operation?

<?php echo (2884284 >> 16), '<br>'; // = 44 echo ((2884284 >> 16) & 0xFFFF), '<br>'; // 44 from the above i got 44 so how can i retrive from 44 to 2884284 ??? ...

What are the most valuable certification available for Programming?

I would like to know what are the certificates available for programming, like Zend for PHP SUN Certification for java what are the others? Javascript ? C++ ? Python ? etc... Please give me some suggestion for other available certifications. ...

What did they program this toy with?

A rather strange question: I'm often asking myself with what programming languages things were created. I recently found this toy mini computer I played with when I was 13 or so at home. (Note: It is not one of those toy "notebooks", it's really small and came as an extra with a magazine) "Features": Hadware: LCD with a small field o...

Why address of a variable change after each execution in C?

int i=10; printf("Address of i = %u",&i); Output: Address if i = 3220204848 Output on re-execution: Address of i = 3216532594 I get a new address of i each time I execute the program. What does this signify? ...

Why do some languages not use semicolons and braces?

It is interesting that some languages do not use semicolons and braces, even though their predecessors had them. Personally, it makes me nervous to write code in Python because of this. Semicolons are also missing from Google's GO language, although the lexer uses a rule to insert semicolons automatically as it scans. Why do some lan...

Using different languages in one project

I recently heard about the use of several different languages in a (big) project, I also read about famous services such as Twitter using Rails as frontend, mixed with some other languages, and Scala I think it was as backend. Is this common practice? Who does that? I'm sure there are disadvantages to this. I think that you will have p...

Books On Creating Interpreted Languages

Are there ANY books (maybe even long tutorials) which cover making a basic, interpreted language? ...

Looking for a type-safe web development platform

What programming language + web framework combinations support static type-checking? I'm not scared of functional programming (I'd prefer it), however I'm looking for a mature framework with the bells and whistles we've come to expect. Obviously this includes security and efficiency concerns. EDIT: Just for informational purposes.... In...

Good language to learn in order to build small websites

I want to start building websites and charging people for them! My problem is that the stack that know well does not lend itself to quick development, or cheap hosting. I am looking for languages that satisfy the following criteria: Fast to develop in Can find cheap hosting for it Bonus points if it can also be 'enterprisey' ...

Which programming languages have JIT compilers?

I know C# and Java do. Anyone else know of any others? ...