presentation

JSF CSS panelGrid - how to make its contained elements all constant width

For instance, right now I am trying to add a panelGrid to my page that contains X buttons. Each button has different lengths depending on how long the text is associated with it. I want to be able to specify at the panelGrid level to make sure every component stretches to meet the width of the panelGrid itself - instead of having to ma...

Recomendations for Creating a Picture Slide Show with Super-Smooth Transitions (For Live Presentaiton)?

Hi everyone, I'm doing a theatrical performance, and I need a program that can read images from a folder and display them full screen on one of the computer's VGA outputs, in a predetermined order. All it needs to do is start with the first image, and when a key is pressed (space bar, right arrow), smoothly cross-fade to the next image....

LINQ vs. presentation model

Does LINQ substitute the presentation model? I read in the book "ASP.NET MVC in Action" about presentation models. I wonder why to build a presentation model?! For instance, projecting a domain object (entity) by creating a new class at runtime via LINQ is in my opinion more comfortable than creating dozens of presentation objects. ...

Getting your programming/developer team up to speed

I recently left a large university hospital for a much smaller one because of the pay increase and because it was a career booster. Of course these two things would generally be something to be excited about and a great accomplishment (esp.for someone my age) but I have found myself pouting on the inside as I drive to work every morning,...

Use productivity tools in presentations

I was wondering how people think about using productivity tools like Coderush or Resharper in live demos. Is it a don't and should someone only use the most default settings of the IDE? Or is it ok to speed things up a little during the demo? Also, should you explain you are using this tool during the demo? ...

What is the best presentation tool for technical stuff?

While recently exploring prezi I realized there have to be better tools than PowerPoint for presenting something, especially technical stuff. What differentiates technical stuff from other stuff in my opinion is the support of these features: be able to insert large code fragments scroll in code fragments annotate (highlight) text/cod...

How to convert a S5 presentation into PDF?

I am using reStructuredText & rst2s5 to create S5 slide presentations. It is great but I also want to have the presentation in PDF. How can I convert S5 to PDF? S5 are HTML based... one of S5 features is to create print-outs of your presentation. So when I try to use a PDF printer from the browser I just get print-outs. I want to a PDF ...

wpf which features ?

Hi all, I need to prepare a presentation about what's WPF, my audiences are mostly project managers and system analyzers . I intend to show them most important features of WPF like DataBinding . Can you suggest me a list of features which you think will be interesting for my audiences . and also does anybody know any website where I can ...

Presentation layer communication with business service layer

I have an existing enterprise Java application with several layers including a web services facade over a Java services layer over a domain layer over a data access layer. The system currently has not GUI. The clients of this system currently are (simply) other composite web services based applications. I am somewhat new to the whole ...

Creating Powerpoint/Keynote Presentations with scriptability?

Lately I have been creating PowerPoint presentations to companies. I have mostly been doing this in PowerPoint. Basically they are created by the same design, but just different numbers in set places, and different numbers used to generate the PowerPoint bar graph / pie graph stuff. (basically there are these pie graph objects when inser...

Best way to place data in the view (MVC)

In the framework I am working with, if I want to present data in a view I do this: <h1><?php echo $this->header ?></h1> Recently I discovered xTemplate and noticed it uses string placeholders, so the above code in a xTemplate would be: <h1>{HEADER}</h1> I always thought that a little php in the view was ok and was also faster than ...

Core animation presentation layer

I am using the two image view animated using UIView animation. And checking the collision between them by performselector method. Once collision detected we stop the animation and set the images to collide location. But some time one image goes some distance ahead and then detect the collision and set back to the exact collision location...

Best font size for Latex Beamer

Hi Stackoverflow - I am preparing a presentation in latex using the beamer package. I am wondering what font size "pros" who give a lot of presentations use to make sure people in the back of the room can see. The default font size seems a bit small to me. Thanks, Setjmp ...

HTML form with underlining for handwritten information

I need to make some forms in HTML that a customer will need to print and write some entries by hand then scan or fax. So I want there to be an area for signing like "Sign ____" Underscores are all good if the underline is a limited length, but what if I have a number of lines that need to go all the way across the page (or in some case...

How to present geographical and other data on the web

I've got a table that I'd like to present. However, a lot the information in it is only useful in aggregated or visual form. For example, the country column it itself is boring, but a aggregating all the entries of a country would be really useful. Coordinates are in there as well, so any solution should be able to present stuff on a map...

Good framework for a C# developer to use for visually stunning presentation layer

I am about to write a front end app, which will be used as a media center app. It will plug directly into a high definition TV. Essentially transforming my laptop into a media player. While this concept is not new, I want custom functionality, so this is why I am not reusing existing products. I'm a C# developer, so the app should idea...

Firefox 3.6 destroyed my page styling!

Don't really want to blame mozilla on this one, i'm sure it could be me doing something silly but the page at: www. neverMindFixed .com the presentation will work fine on other browsers, just not the latest firefox. anyone clued up on this? Thanks! Si ...

Advice for making a conference presentation

I participate in a couple of OSS projects and I really want to help out in marketing them, so I thought it'd be interesting and a valuable personal experience to make a presentation/talk on one or several developer conferences. What's a good structure for presenting a technical software framework/product? Any advice on what NOT to do? S...

In which layer to make linq-sql calls as SubmitChanges(), InsertOnSubmit() etc.

Which layer is the best layer to make linq-sql calls as SubmitChanges(), InsertOnSubmit() etc. For example, let's say I have two tables Parent and Child. Child table has foreign key on parent (Child table has ParentId column). I want to insert parent object and child objects into the db. Using linq-sql, I can do this. Parent parent =...

UI: What are the different ways to display a Has and Belongs to Many relationship?

This is not a question about a specific framework. I am using plain php with jquery. I am trying relate multiple products to multiple sets of options. That is each product can have multiple non-exclusive sets of options related to them. What would be the best way to represent this on screen? I suppose it could be a multiselect box. That ...