Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
7k views

Core Data - Storing Images (iPhone)

I have an application where I allow the user to add an image for their account. I wish to know how to store an image (obtained from the camera or photo library) using Core Data, as I may offer a ...
10
votes
12answers
2k views

Storing Passwords in reversible form

I have a PHP app that needs to run bash scripts, and provide a username & password (for remote systems). I need to store these credentials somewhere that is accessible by my PHP (web) app. The ...
4
votes
5answers
646 views

Storing passwords with python

I have a program I'm writing in python, and I have the need to store some passwords. These passwords will be the passwords to ftp servers, so it's important that they're not just plainly visible to ...
3
votes
4answers
103 views

In C storing values that start with zero get mutated, why?

For example: int main(){ int x = 01234567; printf("\n%d\n",x); return 0; } The following code produces: 342391 If I didn't include the 0 at the beginning, the value x would be ...
3
votes
3answers
190 views

Best way to store data for your game? (Images, maps, and such)

So I'm creating a basic 2d game (well a game engine) and I've currently been developing the file formats for my data. Of course, for this game to run, I will need cache. I find it quite unprofessional ...
3
votes
3answers
219 views

Should I store my PHP5 Objects in session for SPEED, and why?

As you know, when you store a class defination in SESSION serialized automatically, and are unserialized on each following pages. I just started to write classes and I wonder that: to store a class ...
3
votes
3answers
444 views

Disadvantages of storing images in a Database?

Hey! Can anyone please tell me the disadvantages of storing images in a MySQL database? Is it not as efficient as storing the images on the server? Like, will it take longer for the images to load and ...
3
votes
3answers
556 views

Internet Explorer randomly drops sessions between pages in cakePHP

I've come across an extremely unusual bug that my team has literally no idea how to solve. Doing some research, I found some similar solutions that I thought would work, but alas did not. Here is my ...
2
votes
5answers
403 views

Best method of frequently storing, searching and modifying a large data set in Delphi

What would be the best way, in delphi, to create and store data which will often be searched on and modified? Basically, I would like to write a function that searches an existing database for ...
2
votes
3answers
164 views

How to store Application Messages for a .NET Website

I am looking for a method of storing Application Messages, such as "You have logged in successfully" "An error has occurred, please call the helpdesk on x100" "You do not have the authority to reset ...
1
vote
5answers
65 views

Should I store passwords using php serialize instead of using database?

I'm editing web pages directly using ajax, and php with simple html dom. I dont see the point of using a database when I can do without. However, my hands go cold with fright when I think of storing ...
1
vote
0answers
58 views

Storing messages using XMPPFramework for ios?

I'm not sure how to use the XMPPFramework's core data to store incoming messages. Does anyone have any tutorials on how to do this? I see User objects, which in turn can have many "resources". Is ...
1
vote
2answers
55 views

R For Loop unable to store the data

This is probably quite a simple problem, but Im quite new to R. I have a for loop, holder<-rep(0,3) for(i in 1:3) { apple<-c(i+1, i*2, i^3) holder[i]<-apple } I get the warning ...
1
vote
1answer
48 views

Is saving images using Amazon S3 the most scalable solution today?

I'm wondering if storing images using Amazon S3 is the most scalable solution today?
1
vote
2answers
180 views

Using AES to store passwords

So I need to be able to actually decrypt the password because some old websites don't use OAuth and I need to have some of my users have access to them through there API. Therefore one way hashing ...
1
vote
2answers
265 views

How many characters can fit in a c++ string?

I need to store in a variable kbs or even mbs of plain text so I want to know how many characters can fit in a standard string (aka std::string plus string library). Thanks.
1
vote
2answers
80 views

How to store image historgam into database and be able to perform search

I need to write webapp where user will be able to perform search based on images colors. My question is how to store color data? I think that best solution will be to reduce image colors and prepare ...
1
vote
2answers
91 views

Basic Question on storing variables c# for use in other classes

Ok guys I basically have a class which takes in 3 strings through the parameter of one of its method signatures. I've then tried to map these 3 strings to global variables as a way to store them. ...
1
vote
4answers
229 views

Storing a set of values in Delphi

I am trying to store a set of values in delphi, but i want to be able to address them using their name, instead of an assigned number. For example, an array of 'OldValues' would let me do ...
1
vote
6answers
255 views

Storing data effectively

maybe i'm having stupid question as always, but somehow i can't google out how should I store variables so it's effective. Our teacher on c++ just by the way droped something about how could size of ...
1
vote
4answers
149 views

Creating directories from filename?

I'm creating website that handles "great amount" of images. I have decided to use multiple directories method for storing files eg. images/efg/ed/ehj/efgedehjokjvdf2jn4.jpg I'm thinking that to ...
1
vote
2answers
79 views

PHP / MySQL formatinng: An example of how this type of data is used?

Sorry in advance for the kind of odd/vague question :). I've come across this kind of formatting stored in MySQL databases on several occasions now and I'm wondering how the data is used? For ...
1
vote
2answers
439 views

Can I store xmlDocument object in ViewState?

I have one XML document which I want to store it inside ViewState so on each post back I do not need to load it from its physical path again. I do not want to store it in SessionState as well. when I ...
1
vote
4answers
730 views

Reading a file line by line in C

I am trying to write some code that will open a file, read its content line by line and store each of these lines into an array. First I open the file and count the number of lines, each of the lines ...
1
vote
7answers
568 views

How do you store/share online your personal documents? [closed]

For photos, I use Flickr. But for other documents...Which web based online application (hosted or to install on your personal web site) do you use for PDF or word files ? If there is a user management ...
0
votes
1answer
4 views

Getting and setting NSArrays in an NSMutableDictionary

I have a global file that stores values before another class is deallocated that created the values. My method looks like this for storing: `- (void)set_plantKind:(NSArray *)plantKindArr ...
0
votes
0answers
45 views

How to find return zeros in frequency tables [closed]

Possible Duplicate: Sorting and grouping data using R I am a student that is learning R. I have already looked at some of the introduction stuff, that has been posted online. But I cant ...
0
votes
3answers
35 views

PHP app - how and where is the best way to safe settings

I am developping a PHP app with admin panel. In that admin panel the admin can, for example choose how many articles to be on page ect. ect. My question is where to save this settings. I don't think ...
0
votes
0answers
53 views

Store a NSWindow or NSView object in Mac OS X application

I am working on a Mac application, and want to store a NSWindow object along with its sub components, so that I can restore them later. For example: I want to design a view (with other NS objects on ...
0
votes
2answers
43 views

What is the best way to store (possibly hundreds) of strings in iPhone app?

There is a possibility that a user of my app may enter tens/hundreds/thousands of pieces of information into the app. For example, they may enter names, addresses, phone numbers of various people. ...
0
votes
1answer
73 views

storing computed function to disk for fast access in python

There are two parts to my question. One: I have to do a double integration on a grid answer = integrate ( f(x,y) times besselfunction(x,y)) Now, I have read that the besselfunction can be ...
0
votes
3answers
40 views

PHP - Specific scenario for storing login information

I'm making a PHP app to allow our customers to retrieve information from our database, using pre-defined functions. Perhaps PHP isn't the best choice for this, but the same page is also used as a ...
0
votes
1answer
20 views

Best way to store X clicks/days in MySQL

I want to store my users clicks from the last 10 days in my database. I have heard that storing it like this: "4;3;1;4;5;3;7;2;6;3" is a really bad idea, and it breaks the rules. But, what better ...
0
votes
0answers
233 views

QT 4.7. Store,retrieve, alter data using QML ONLY

I really don't know much about C++. My project in school is to create a mobile application similar to 'Are you smarter than a 5th grader'. I've already finished the layout but the functionality isn't ...
0
votes
1answer
35 views

Storing into a Java Array through OnClickListener

I'm sorry if this comes through as a "noob" question, but I'm really stuck and I couldn't find any help, no matter where I looked. The problem I'm having is this: The user fills out a textbox saying ...
0
votes
2answers
64 views

Where to store images in Amazon AWS for use in RDS

I am currently creating a bunch of tables on the mySQL service in Amazon RDS. Several of the tables need to have image links in them. What I am trying to figure out, is where do I put the images? ...
0
votes
1answer
60 views

J2ME - Storing ints in an array or similar

I am currently writing an app for a card game in j2me, I have used random number generator to create 5 random ints that will be stored in an array or similar to represent the players hand of cards (as ...
0
votes
1answer
167 views

android tags best practices and sqlite storing and select

What are the best data structure for tags (not nfc or html). Like tags that are used in stackoverflow to mark our messages. I was thinking of List < String > ? Then i need to store this tags into ...
0
votes
2answers
114 views

How to remember variables with Greasemonkey script when a page reloads

Ive got an problem currently on an mobile site that i'm running directly in my pc's firefox browser. Everytime a button is clicked, the page reloads, thus resetting my variables. I've got this script: ...
0
votes
3answers
59 views

is this way of saving true/false options in js efficient?

In some places, you'll se options saved as numbers. For example, when setting file permissions, you pass them using a value ranging from 0 to 7 for each group of users. Each one of the bits in the ...
0
votes
4answers
190 views

Storing an int value into a txt file, and reading it?

I am making a small points game, which includes a Timer, which adds the points with 1 every second. Your goal is to create as much points as possible. But, I need a way to store the points (an int ...
0
votes
6answers
185 views

How to storing data in my own application

I would like to build some simple application - for example Todo list - and I am thinking about the problem and its solving - how can I to store data in my own application on Android platform? I ...
0
votes
1answer
209 views

vb.net database/storing questions

I am wriing a vb.net windows application to log and store information. then display it in a sortable multiple column listbox (I personally like FlexGrid by Component One). Example: However... I am ...
0
votes
2answers
381 views

Security using AES with salted password as key

I understand how a salted hash of a password works, but I am assuming I would also need to store the salt, username, KEY, and encryptedpassword. I think overall I just need to understand how I would ...
0
votes
0answers
64 views

Storing photos uploaded by user in facebook application?

I want to make facebook iframe application that contains some type of photo competition, from the photos uploaded by the users. Firstly i use the additional Facebook Registration,so that user can ...
0
votes
3answers
222 views

What is the most efficient way to store and access images

I am working on a project which has to store tens and thousands of images on a server and let the users access them. I need the most efficient method to store these images and to retrieve them. Also, ...
0
votes
6answers
165 views

Data from XML to Python list

is it possible to store data from an XML file to a list in python. For example i have an XML file with the following content <brochure> <onlinePath>http://EEE</onlinePath> ...
0
votes
0answers
22 views

Storing Last Search Results

I'm working on a collaborative project and I'm trying to figure out the best way to store previous search results. Let me quickly explain the scenario. I have a list of search result items and I want ...
0
votes
3answers
278 views

storing images in iphone application

im making an application that store multipe information like name description images for each entity. ( large number of entity). I have an issue in storing images in for this application. whats the ...
0
votes
2answers
121 views

Storing settings inside DB

can someone tell me what's the best way to store many different settings in a database? Should I use one table with id,key,value? Here is an example what i have to store: PageNavigation.Font = ...

1 2