storing-data

object consisting of jQuery element

hello, current code I've built function to do something over collection of jQuery elements: var collection = $([]); //empty collection I add them with: collection = collection.add(e); and remove with: collection = collection.not(e); It's pretty straightforward solution, works nicely. problem Now, I would like to have an obje...

What are the reasons to store documents into DBMS when using Alfresco CMS

Hello guys! I have interview for an internship with company that wants to implement document management system and they are considering on the first place open source solutions, their top choice being Alfresco, but decision is still not final, part of my work there would be to investigate is Alfresco the best solution. What I have seen...

JAVA: storing input into array

I need to write a program where the program would generate random letter and i would need to store this random character into an array char[] arrayRandom = new char[10]; for (int i = 0; i < 8; i++) { randomNumLet = (generator.nextInt(20) + 1); System.out.print(arrayRandomLetter[randomNumLet] + ...

Oraganize Pictures on the website

I am designing a website which will involve too many photos. There are two modules Restaurants and Dishes. which is the best way to create the directory strcuture ? images/Restaurants/ID images/Dishes/ID am using the following to create the filename function imgName($imgExtension) { return time() . substr(md5(microtime()), 0,...

Best Ways to Store iPad/iPhone Application Data

I'm developing an iPad application and I'm not sure what's the best way to store application data. So far I've been using a .plist that stores hundreds of strings for a puzzle game and that works great, but if my app is to be any good, it's going to have to store tens of thousands of strings (representing pre-made puzzles). I've read t...