Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
8answers
3k views

What is the best Python library module skeleton code?

Many python IDE's will start you with a template like: print 'hello world' That's not enough... So here's my skeleton code to get this question started: My Module Skeleton, Short Version: ...
10
votes
2answers
2k views

Quickest way to get Scaffold code created with C#/ASP.NET

At the start of any project, once you've got your object model there then comes a period of tedium as you crank out the skeleton code required. Are there any tools that will help me with this task ...
7
votes
4answers
4k views

A good HTML skeleton

I want to start creating websites again, but I've been out of the HTML scene for a while now. I was just wondering if this is a good skeleton for a website. And if not, what should I change, add ...
3
votes
2answers
261 views

Front-end prototype/skeleton in Django

Often I create a static html prototype/skeleton for back-end developers I work with. This helps to find mistakes in the UI/IA and costly re-writes before the site is implemented. I would like to ...
2
votes
2answers
145 views

Where to find Symfony2 clean skeleton?

I need a clean skeleton, without default demos and configs, to understand all the configuration process, begin from zero, and bundle creation for Symfony 2. Thanks!
1
vote
2answers
37 views

Git app frontend/backend share codebase repository

I am fairly new to git and have the following question: I am developing a HTML/JS application. For the Backend I want to share the same codebase as the frontend (libs like jquery, a stub index.html, ...
0
votes
0answers
380 views

sample code / skeleton code / tutorial for c console application for linux and windows

I want to make a simple console application written in c which processes user input and prints to the console like the linux shell application "top". For this I'm looking for some skeleton code (~20 ...
0
votes
1answer
142 views

Generate skeleton method bodies in implementation files in Xcode

In Xcode, for Obj-C programs, is there a way to generate skeleton method body in the .m file if I add a new method or implement an interface in the corresponding .h file? Like in Eclipse, if you ...