Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
2k views

Google App Engine - Caching generated HTML

I have written a Google App Engine application that programatically generates a bunch of HTML code that is really the same output for each user who logs into my system, and I know that this is going ...
10
votes
6answers
2k views

How to Generate Unique Number in C# of 8 digits?

I am using this code to generate a 8 digit unique number. byte[] buffer = Guid.NewGuid().ToByteArray(); return BitConverter.ToUInt32(buffer, 8).ToString(); Does this code really generate a unique ...
9
votes
2answers
4k views

Missing script/generate in Rails 3

I just installed Rails 3 and created my first app. The install of Rails3 + ruby 1.9 went very smoothly but I am missing the generate script in script/generate. I have created a new app from scratch ...
9
votes
8answers
2k views

How to generate a strong password in C#?

I was wondering how can I generate a strong and secure password in C#. I googled a little bit and saw this formula in Wikipedia, where L is the length of the password and N is the number of possible ...
7
votes
3answers
2k views

Generate Json schema from XML schema (XSD)

Does anybody know how to generate a Json schema from a existing XML schema (XSD file)? Are there any tools available for this?
7
votes
4answers
976 views

generate image (e.g. jpg) of a web page?

I want to create an image what a web page looks like, e.g. create a small thumbnail of the html + images. it does not have to be perfect (e.g. flash /javascript rendering). I will call use the code ...
6
votes
2answers
174 views

Generic Windows Form Template

I am creating a generic Windows Form that accepts T and uses reflection with custom attributes to create labels and input controls at run-time. Example: class GenericForm<T>: Form where T : ...
6
votes
3answers
273 views

Generate word combinations

for example this is my text : $str = 'buy new microsoft windows'; I explode text and list with array : Array ( [0] => buy [1] => new [2] => microsoft [3] => windows ) ...
6
votes
8answers
21k views

How to generate a random String in Java

I have an object called Student, and it has studentName, studentId, studentAddress, etc. For the studentId, i have to generate random string consist of seven numeric charaters, eg. studentId = ...
6
votes
3answers
2k views

How do I modify the set method signature that Eclipse auto generates?

My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables. This results in setters that ...
5
votes
1answer
1k views

Generate UUID with GWT

Is there any way to generate UUID with GWT?
5
votes
8answers
156 views

Is it necessary to generate javadoc as part of build process?

Is it necessary to generate javadoc as part of build process?
5
votes
3answers
2k views

Generate a URL with URL Routing in Webforms

I know in the MVC Framework, you have the Html Class to create URLs: Html.ActionLink("About us", "about", "home"); But what if you want to generate Urls in Webforms? I haven't found a really good ...
4
votes
1answer
91 views

Algorithm to Generate a LARGE Dummy File

Has anyone written a Fast Algorithm that generates a LARGE dummy file in PHP? say 500MB-2GB thanks
4
votes
2answers
207 views

Is there any way to programmatically generate java class from a template?

I need a library or method to generate a java class (just generating source code of class as text format, no need to run or use it) from a template text file. as an example I have a class template ...
4
votes
3answers
258 views

How to use C++0x lambdas local variables for std::fill()?

So I was trying to test a lambda accessing local variables in the scope in which it is used, based roughly on a simple example by Bjarne on the C++0x FAQS page at: ...
4
votes
2answers
326 views

Automatically generate HTML from JSON

I am working on a template system. I imagine that as a regular user you can create a. json file, and based on that file the system will automatically generate html. I am fairly lost with how to ...
4
votes
5answers
379 views

Generate very very large random numbers

How would you generate a very very large random number? I am thinking on the order of 2^10^9 (one billion bits). Any programming language -- I assume the solution would translate to other languages. ...
4
votes
6answers
376 views

How to generate random meaningless but at the same time easy to remember words?

I need to figure out an algorithm or, even better, if there is an implementation in php/java to generate words which will be suggested to user to choose like some identifiers but I want them to be ...
4
votes
1answer
216 views

Netbeans insert code

How would one go about creating a plugin or something of the like that would add to the 'insert code' dialog of the context menu the ability to create a copy constructor?
4
votes
2answers
3k views

Adding a Model Reference to existing Rails model

I'd like to know the "proper" way to approach adding a relation between two existing classes in Rails 3. Given existing models: Clown & Rabbit I'd like to add a reference (belongs_to) from ...
4
votes
2answers
455 views

Create entire DataSet from existing stored procedure

I have stored procedures (they accept parameters) that return multiple result sets and I'd like to have this saved in a typed dataSet. The question is: can I have Visual studio 2010 generate the ...
4
votes
4answers
1k views

Dynamic UI Generation in C#

I am designing an application for a library. Not a large scale library, but a very small scale library where my primary task is to just keep information about the books. But this library application ...
4
votes
4answers
521 views

Generate and repeat number in C#

I want to generate an array that has 144 number from 1->36 in random order (so each number is repeated 4 times). Can we use Enumerable.Repeat and Enumerable.Range to do that. If yes than please ...
4
votes
2answers
281 views

Nhibernate/Domain Objects generate test objects with random data from factory

We are doing some DDD at work and I am trying to find a good utility for generating Domain Objects with random data, or predefined data, and populating dependent objects. Example Usage: var user = ...
4
votes
4answers
1k views

Generate Images for formulas in Java

I'd like to generate an image file showing some mathematical expression, taking a String like "(x+a)^n=∑_(k=0)^n" as input and getting a more (human) readable image file as output. AFAIK stuff like ...
3
votes
4answers
242 views

How to generate very complex tree structure in HTML

In our game, we have a typical tech tree, which is currently edited by hand - very hard to maintain and error-prone: ...
3
votes
4answers
127 views

Generating letters in Java

I need to generate some business letters in java, with some dynamic information like address, to,from etc. Remaining letter content would be the same. These letters are not displayed to the user but ...
3
votes
1answer
164 views

How to securely generate an IV for AES CBC Encryption?

I work on some crypto stuff. I use AES 256 with CBC mode I use OPENSSL I am aware of the following things (source = wikipedia): an initalization vector should be: Unique: must not be repeated ...
3
votes
1answer
220 views

How can I generate musical notes on iOS and play them ?

I am creating a musical app which generate some music. I already used MIDI functions on Mac to create a MIDI file with MIDI events (unfortunately, I don't remember names of those functions). I am ...
3
votes
1answer
86 views

Spiked vertexes on generated Icosphere

I've been working on a program to generate an icosphere. (A sphere with evenly distributed vertexes across the face, to be used for terrain deformation) I have pretty much everything done, the sphere ...
3
votes
2answers
783 views

IntelliJ IDEA 10 generate entity (POJO) from DB model

I have a simple question, how can I generate entity (POJO) from database model using IntelliJ IDEA 10. I create "Data source" in IntelliJ but I have not any idea how can I generate the POJO. I spend 2 ...
3
votes
2answers
508 views

Rails3: How to recreate test fixtures based on development database schema (newbie)

The situation: I used generate scaffold to set up my objects in a new Rails project. Besides doing some migrations, I also directly edited the MySQL tables by adding and renaming columns etc. Now I ...
3
votes
3answers
4k views

How to generate an Excel document with multiple worksheets from PHP?

I want to generate an MS Excel file from PHP. I know one can do something like this: header ( "Content-type: application/vnd.ms-excel" ); header ( "Content-Disposition: attachment; ...
3
votes
1answer
909 views

Entity Framework timestamp Generate Database problem

I got a problem with EF 4.0 I creating entity with "timestamp" column. After that, I try to generate database. In SQL script column looks like 'binary(8)' instead of timestamp. How to solve it ?
3
votes
6answers
3k views

Generate a random letter in Python

Is there a way to generate random letters in Python (like random.randint but for letters)? The range functionality of random.randint would be nice but having a generator that just outputs a random ...
3
votes
1answer
156 views

How to automaticly generate password if not provided with authlogic

everybody! I'm new on both this site and ruby on rails! I have a common installation of authlogic and want password to be generated automaticly for user registration if user did not set the password. ...
3
votes
1answer
55 views

get loaded css between 2 div's as stylesheet.css

I'm trying to get a specific generated css for a area on one of my site's to use this css on the homepage from one of my site's. I used all types of soft and ff add-ons to get the complete css for ...
3
votes
5answers
292 views

Is there any Algorithm for converting Image of sound to sound?

So I have an image like this Is there any algorithm to extract (get as PCM) sound from which was created that image?
3
votes
6answers
1k views

Generate Ant build file

I have the following project structure: root/ comp/ env/ version/ build.xml build.xml build.xml Where root/comp/env/version/build.xml is: ...
3
votes
5answers
686 views

How to make a pdf file using PHP

How can I make a PDF file in PHP. What I want to make is a student list. So I want to query the database, get the information and give it to the user as a PDF when he clicks generate student list.
2
votes
3answers
58 views

How to generate unique string?

I have a device and for each device I wish to generate a string of the following format: XXXXXXXX. Each X is either B, G, or R. An example is GRBRRBRB. This gives me roughly 7000 keys to work with ...
2
votes
0answers
55 views

Using .Net, is it possible to use the MS graph control to generate a graph without a UI?

I want to create a graph using the MS graph control but this needs to be put on a form for it to produce the graph that I can save in a file. However, since I want to generate a graph from a Windows ...
2
votes
4answers
160 views

How to use random class in multi threaded application correct

I need to use random class to generate random numbers in a multi threaded application inside public static function. How can i achieve it. Currently the function below is working very well but it is ...
2
votes
2answers
111 views

How to generate exceptions from RepaintManager

in connection with my question (may be) I found another exception type that I not able to catch and print-out from SwingWorker thread, how can I to generate RepaintManager exceptions EDIT: I read ...
2
votes
1answer
84 views

PHP: a way to generate a custom session ID without editing php.ini?

I'm trying to create a custom session ID generator. From what I've read across the sites you can do this by manually editing PHP's settings files, however, it will not be available until I switch from ...
2
votes
1answer
100 views

Python: Generating random Unicode between certain range

I am trying to generate random Unicode characters with two starting number+letter combination.. I have tried the following below but I am getting an error. def rand_unicode(): b = ['03','20'] ...
2
votes
3answers
107 views

Generate XPath for each node in XML, using custom attribute (name in this case)

I have a huge XML file, that look like this (but is much larger): <?xml version="1.0" encoding="UTF-8"?> <suite id="1" name="SuiteName"> ...
2
votes
2answers
130 views

“Level Generation” algorithm for Mad Virus game

I'm making this game on .NET (link: http://www.bubblebox.com/play/puzzle/539.htm ). Everything is fine, except that I don't know how to generate a level that can be solved within N turns. A similar ...
2
votes
2answers
79 views

I have Dynamic Property Names and Their Types stored in a Dictionary, how do i build a class dynamically out of it in silverlight?

I have a dynamic Dictionary that gets filled at run time, Dictionary<string, Type> (where string will have the property name and Type will have the type of the property ) now i want to generate ...

1 2 3 4 5 7