The tag has no wiki summary.

learn more… | top users | synonyms

61
votes
10answers
61k views

Java how to: Generic Array creation

Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety? public class GenSet<E> { private E a[]; public ...
37
votes
20answers
3k views

Is this Factory Method creation pattern?

I have been using factory method creation pattern for awhile now. I was just recently told that this: public static class ScheduleTypeFactory { public static IScheduleItem ...
10
votes
3answers
230 views

Tracking object allocation in python

Is there any method I can override that will allow me to use print statements / pdb / etc. to keep track of every time an instance of my class is allocated? While unpickling some objects I am seeming ...
9
votes
7answers
917 views

What is the main difference in object creation between Java and C++?

I'm preparing for an exam in Java and one of the questions which was on a previous exam was:"What is the main difference in object creation between Java and C++?" I think I know the basics of object ...
9
votes
2answers
2k views

Idiomatic jQuery delayed event (only after a short pause in typing)? (e.g. timewatch/typewatch/keywatch)

Here is some jQuery for a search box that I expect is actually an antipattern, and am sure there is a much better solution for that I would love to be pointed towards: I will describe it in comments ...
8
votes
3answers
115 views

Detecting newly created files though Java in realtime

Using JDK 7 I've had success in watching specific directories for new file creations, deletions and modifications using java.nio.file.StandardWatchEventKinds.* I'm hoping someone may know a way to ...
8
votes
1answer
128 views

Automagically generating notebooks with collapsed sections

The code block below CreateDocument[{ TextCell["Title", "Title"], TextCell["Subtitle", "Subtitle"], TextCell["Section 1", "Section"], TextCell["Section 1.1", "Subsection"], ...
8
votes
4answers
2k views

What is happening in Crockford's object creation technique?

There are only 3 lines of code, and yet I'm having trouble fully grasping this: Object.create = function (o) { function F() {} F.prototype = o; return new F(); }; newObject = ...
7
votes
3answers
3k views

Determine file creation date in Java

There is another similar question to mine on StackOverflow (How to get creation date of a file in Java), but the answer isn't really there as the OP had a different need that could be solved via other ...
7
votes
6answers
825 views

Screensavers With XNA and .NET?

I'm fairly sure you can create screensavers with.NET but are there any tutorials on doing so? and how well can you make XNA screensavers?
6
votes
3answers
100 views

Stacking buttons upwards

I've never seen this before, or if I have I haven't noticed how it was done. I was wondering if there was a way with HTML and CSS to stack elements up, rather then down as display:inline would do. ...
5
votes
1answer
106 views

Virtual class creation/destruction in delphi

This is my first post here, but I'd like to say thank you to the community because I've found solutions to my problems countless times by coming here and finding a solution in a question that had ...
5
votes
6answers
436 views

Salting passwords 101

Could someone please help me understand how salting works? So far I understand the following: Validate password Generate a random string Hash the password and the random string and concat them, ...
5
votes
6answers
287 views

Getting object as a result from func/proc in Delphi

What is the best practice for returning simple objects from functions / procedures in delphi? eg. 2 kinds of code: pass created object as reference, populate object in Proc, destroy it afterwards ...
4
votes
2answers
137 views

Need help Creating new objects in inform7

Very new to Inform7 and it's style. I have looked through the provided docs and some internet browsing has yielded nothing for me... this is a simplistic version of what i'm looking for. I want to ...
4
votes
1answer
566 views

Making a 3D maze in Java

Goal I am making a program which generates a 3D maze and am having a bit of trouble with the creation algorithm. For ease of interaction, it will be a rectangular prism with one entrance and one ...
3
votes
2answers
165 views

Stack object creation in C++ - Alternative syntax [closed]

Possible Duplicate: What do the following phrases mean in C++: zero-, default- and value-initialization? I am confused about an issue in C++. When creating an object on the stack using the ...
3
votes
4answers
94 views

Java: Convert a collection of classA to collection of classB

Given a List of Foo myFoos, I need to map those to a collection of a different class, say Bar. I do it like this now: List<Bar> myBars = new... for(Foo f : foos) { Bar b = new Bar(); ...
3
votes
5answers
106 views

When returning an object, why put the creation+initialization and the return as two seperate statements instead of one?

Example: Foo make_foo(int a1, int a2){ Foo f(a1,a2); return f; } Having seen such functions several times, is it just a matter of coding style / preference or is there more to it than meets the ...
3
votes
4answers
191 views

Javascript object creation best practice

I have the following javascript : var MyObject = (function() { function Setup(args) { this.prop1 = args.x; this.prop2 = args.y ...
3
votes
2answers
95 views

Is there a round-trip software for PHP programmers out there?

I search for a round-trip programming solution which does generate PHP and SQL code from a UML Model It sould also include state and activity diagrams which were compiled into PHP/SQL. Or does ...
3
votes
2answers
222 views

Nested Dictionaries in Python, with implicit creation of non-existing intermediate containers?

I want to create a polymorphic structure that can be created on the fly with minimum typing effort and be very readable. For example: a.b = 1 a.c.d = 2 a.c.e = 3 a.f.g.a.b.c.d = cucu a.aaa = bau I ...
3
votes
2answers
469 views

No creation of a WPF window in a DLL project?

Is there a reason why Visual Studio won't let me create a WPF window in a DLL project? I "solved" it by creating a window in an Application Project and copying it to my DLL project. I also found that ...
3
votes
4answers
206 views

How do you create a file format?

I've been doing some reading on file formats and I'm very interested in them. I'm wondering what the process is to create a format. For example, a .jpeg, or .gif, or an audio format. What programming ...
3
votes
1answer
704 views

Estimating index creation time in oracle

I have some tables in Oracle enviroment which I have found could benefit from new indexes. However, they are big tables, ranging from 1M registers to 300M registers, so I would first try to estimate ...
3
votes
4answers
894 views

Objective C - preferred way to create and initialize an object

Is one of these two ways to create and initialize an object preferable? MyClass oClass = [[MyClass alloc] init]; oClass.length = 5; oClass.text = @"Hello"; or using a class method that contains ...
3
votes
4answers
243 views

How can I create an object whose derived class is specified implicitly by the creation properties?

I'm looking for a pattern for the following. (I'm working in Perl, but I don't think the language matters particularly). With a parent class Foo, and children Bar, Baz, Bazza. One of the methods ...
2
votes
1answer
63 views

How do you add xml document info with scala.xml?

First of all: I am aware of anti-xml, and scales, but I would like to use standard scala.xml I prefer to build xml document using explicit methods, not with implicit xml syntax built into Scala ...
2
votes
1answer
91 views
+100

Create 'SharePoint Solution' programmatically

I found something related here but did not give me a good start Since recently I do a lot of webPart development I want to automate the none-code part of the process, I want to develop a small ...
2
votes
2answers
60 views

Bulk account creation from text file

I have the following script, it reads from users.txt the first and second fields and uses them to generate the username and password and creates the accounts for each line. the problem is that the ...
2
votes
1answer
34 views

Randomize UIImageViews through code

I have 8 images on my View. 4 on left n 4 on right side on the view. i need to match images every time from ones on left to ones on right. I have done this statically by creating 8 image views in the ...
2
votes
3answers
147 views

Python File Creation Date & Rename - Request for Critique

Scenario: When I photograph an object, I take multiple images, from several angles. Multiplied by the number of objects I "shoot", I can generate a large number of images. Problem: Camera generates ...
2
votes
6answers
193 views

Make object by it's name

is it possible to return exemplar of object using passed type name (string) in c++? I have some base abstract class Base and a few derivates. Example code: class Base { /* ... */ }; class Der1 : ...
2
votes
2answers
181 views

Easiest way to create a custom linux distribution

Can someone guide me how I can create a custom linux system in the easiest way? I would like to add programs and libraries of my choice on top of a base platform and offer it for free for download.
2
votes
4answers
873 views

JAXB and constructors

I'm starting learning JAXB, so my question can be very silly. Now I have classes and want generate XML Schema. Going after this instruction I get exception IllegalAnnotationExceptions ... does ...
2
votes
3answers
646 views

How to create Access database from a script

I would like to create an Access database from a script. Ideally, I would love something similar to the way SQL scripts can be used to create a SQL database. Is this possible at all? Is there ...
2
votes
2answers
159 views

Is it a good practice to let Hibernate create the tables automatically using <property name=“hbm2ddl.auto”>create</property>?

I know that adding "hbm2ddl.auto"=create Hibernate will create the tables automatically reading the mapping from the hbm / the annotation. Please let me know that if this is a good practice to ...
2
votes
6answers
380 views

In Java what happens when an object fails to be instantiated?

I come from a c++ background and I find myself constantly doing this in java: SomeClass sc=new SomeClass(); if(null!=sc) { sc.doSomething(); } What I want to know is what will be in the ...
2
votes
1answer
334 views

JMS Destination creation at deployment with Glassfish 3.0.1

I'm currently trying to 'port' my Java EE 5 Application from Jboss 6 M2 to Glassfish 3.0.1 Jboss used to create my JMS Destination Queues a deployment-time thanks to the -service.xml files. I really ...
2
votes
5answers
1k views

Delphi - Creating controls before form Create is run?

Well, my problem is as follows: I have a Delphi 5 application that I'm essentially porting to Delphi 2010 (replacing old components with their latest versions, fixing the inevitable Ansi/Unicode ...
2
votes
4answers
81 views

What is this method of element instantiation called?

Whenever I create a UIElement in code behind, I'd do something like this: Button button = new Button(); button.Content = "Click Me!"; But then I saw this syntax somewhere, and wanted to know what ...
2
votes
2answers
215 views

Creating a simple database schema

I'm new to SQL and could use some help in creating a database schema for my program, which manages and installs programs for my home network. Are there any guidelines/tutorials for creating database ...
2
votes
4answers
3k views

Creating a file inside a folder that doesn't exist yet in php

I want my php script to create an output file in a folder based on the date. The way I'm doing this is that its supposed to get the foldername/filename from a text file outputted by another program ...
2
votes
10answers
1k views

Creating/modifying images in JavaScript

Is it possible to dynamically create and modify images on a per pixel level in JavaScript (on client side)? Or has this to be done with server based languaged, such as PHP? My use case is as ...
1
vote
3answers
44 views

R name column when creating data frame

I'm taking the columns from a data frame and using them to create another data frame, but the names keep getting jumbled instead of keeping the original name. How do I avoid this? > newDigit1 ...
1
vote
3answers
53 views

Making command-line programs with arguments

I discovered that it is possible to create command-line programs via C++. I am a C++ rookie and I know only basic things, but still, I want to use it to create new command-line programs. Now, I have ...
1
vote
1answer
72 views

Bash: delete first line of stdin

I've created a script for account creation that reads from a csv file, i do not need the first line in the csv as it has the titles for the colums, im trying to delete the first line using sed 1d ...
1
vote
1answer
89 views

H2 createTcpServer() does not create server?

after reading the H2 documentation, I wrote this simple application to create a H2 database in a local directory: public static void main(String[] args) throws SQLException { String path = ...
1
vote
3answers
156 views

Dynamically creating and assigning names to movieclips AS3

I have a movieclip that I need to duplicate dynamically based on an outside variable. e.g. clip1, clip2, etc This variable changes so I can't hardcode the number of times it occurs. Is there a way to ...
1
vote
5answers
48 views

How to create div with class

I'm trying to create a div and give him a class but it doesn't work. Could anybody help me? $(document).ready(function() { $('input[type=checkbox]').each(function() { $(this).after($('<div ...

1 2 3 4