Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
164 views

How could not using “final” be a security issue?

This quote is from O'Reilly's Essential ActionScript 3.0: Methods that are final help hide a class’s internal details. Making a class or a method final prevents other programmers from extending ...
5
votes
4answers
503 views

@ in AndroidManifest.xml file

From the O'Reilly book "Android Application Development " by Rick Rogers, John Lombardo, Zigurd Mednieks & Blake Meike: page 23: <TextView android:layout_width="fill_parent" ...
3
votes
3answers
90 views

Why is my Object still using a method even though I have overriden it?

Possible Repeat: Why my Virtual method is not overriden? I've been going through the Head First Design Patterns. On a side note, I started this book as a prerequisite to Code Complete 2. Anyway, I'm ...
2
votes
2answers
5k views

How to access the CGColor property of UIColor in CGContextSetFillColorWithColor?

CGContextSetFillColorWithColor(g, [UIColor greyColor].CGColor); I'm trying to follow O'Reilly's iPhone Game Development book on page 73 Chapter 3 but I'm running into a compile error that states ...
2
votes
3answers
228 views

Which protocols are there, that can be used with WCF?

Am reading an O'Reilly book called "Learning WCF" and in chapter one, it mentions: For example, services can be accessed over a variety of supported protocols, including named pipes, TCP, HTTP, and ...
1
vote
3answers
51 views

map.resources in rails 3

I've taken a look at routes from the outside and a bunch of different rails 2 to 3 route conversions but still cant grasp it. What I have from an O reilly book: map.resources :users do |user| ...
1
vote
1answer
285 views

Example from Chapter 1 of iphone 3D programming book not drawing to screen

I'm currently trying to learn opengl-es using O'Reilly's 3D programming for the iphone. It's first tutorial involves drawing the background of the screen grey. I've entered in all the code to the ...
1
vote
4answers
138 views

Having trouble with uploading in php

I'm a very new programmer going through the O'Reilly book Learning PHP & MySQL 2nd ed. by Michele Davis & Jon Phillips. This is being stored on my home ubuntu server. I'm stuck on ex 11-28 ...
0
votes
3answers
169 views

How does O'Reilly pick the animals that they put on their covers? [closed]

I currently own several O'Reilly books, and it's been somewhat of a curiosity as to how they choose which animals to put on a given topics book cover. Does anyone know?
0
votes
1answer
77 views

Forum for O'Reilly books? [closed]

I'm currently doing the tutorials from O'Reilly's 3D programming for the iPhone and have come across some difficulties, mainly one in particular. I searched their website to see if they hosted any ...
0
votes
3answers
515 views

O'reilly ebooks for android

In the Android Marketplace there are O'reilly programming e'books for $5.99. Has anyone used these, and how do they compare to the dead tree equivalents?
0
votes
4answers
655 views

Ruby on Rails tutorial problem

Quick question which I hope is easily answered.. I am following this tutorial: http://oreilly.com/pub/a/ruby/archive/rails.html?page=2 and all is going well until I try create a controller and view ...
0
votes
1answer
1k views

AndroidManifest.xml <manifest> package attribute has no namespace

From the O'Reilly book "Android Application Development " by Rick Rogers, John Lombardo, Zigurd Mednieks & Blake Meike: page 44: <manifest ...