Flash game data storage [closed] - database

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm storing a variety of variables containing statistics, items weapons, etc in a flash based game. Currently I'm using PHP and AMFPHP as a backend, calling services to pull the data. This is fine for my own machine, even my own website, however if I want to deploy the game to a site such as Kongregate or ArmorGames, what storage method can I use at that point?
I have a small preference of continuing to use a database such as MySQL because I spent some time designing the ER diagram and schema, but if I have to store in a flat file, I can do that too. I'm especially interested in others who have deployed games which have data storage (such as inventory, characters, classes, items, mobs) external to their game.
Edit: Looking for answers as to whether people use remote services or another solution for deploying their games to sites such as this.

Perhaps you should peruse the documentation of the respective providers:
http://www.kongregate.com/developer_center/docs/shared-content-api
Not sure if armor games has any of that type.

I asked within Kongregate's developers, the answer is yes, I can use remote web services. The API unfortunately had nothing in it dealing with this issue.

You could use our backend Flox http://gamua.com/flox/. It allows you to store your inventories, characters, etc. It's not MySQL but based on a NoSQL database. However, since you'd be using the AS3 SDK, you would not get in touch with the DB anyway.
Also, I should mention that I am the lead developer of Flox, which may make me a bit biased. ;-)

Related

Inconsistent 503 Service Unavailable using src.sencha.io [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
The product I am referring to is src.sencha.io. You pass the path of your image into a src.sench.io url, pass some parameters and your image is resized dynamically. I have been receiving 503's inconsistently.
I have tweeted to Sencha, tried to write on their forums with no avail. I was hoping the community on StackOverflow could shed some light on the service. I am currently using the service in production, so you can imagine the amount of complaints received.
Will this service be maintained in the future and are there any workarounds at the moment? I would prefer not to pull the service entirely. You can imagine my frustration as a developer. I will be sure to never use any Sencha products in the future if this is how they choose to communicate with their developers, free or paid.
Are there any other similar services around that provide image resizing and retina support on the fly. I do not mind paying for the service.
I also use the service and have had this problem. I've written a graceful JavaScript fallback you may be interested in using:
https://github.com/ultrapasty/sencha-src-image-fallback
It falls back to local SRCs if src.sencha.io returns an error on the first request. Feel free to take, use, modify etc.
Thought I'd drop a message on here as it definitely adds value to the post for anyone looking at using ReSRC. If you fancy 50% off the first 3 months on a small or medium plan just enter 'halfprice-small' or 'halfprice-medium on checkout.
Cheers
Dom (ReSRC, Co-Founder)
In addition to my fallback answer which doesn't directly address the question, I haven't used it myself, but keep coming across ReSRC.
Another similar looking one is responsive.io.
This article also has a good write up of many possibilities, under Do I care about relying on third parties?

What package to use for Form + intelligent Answer website? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm new to web developing and I want to make a web where the user fill in a few info and then get an answer from the backend. The info filled in is sent to the backend; the backend then process the info and send the answer back for display.
My question is how can I do it with the simplest possible framework? LAMP and GAE both seem ok to me in the long run, but is there any simpler framework good for my needs? I have also looked into LAMP provider like bitnami, however I can't find the application I need in the list of applications. If needed, I can program in Java.
Thanks! and please let me know if I need to clarify my question. I think what I'm asking is general guidance on setting up such a simple web.
Google AppEngine will work fine for your needs. You will need to program it, and Java works on GAE. Start with Java Tutorial and then gradually add your own server side processing. Of course many other web server platforms are possible, but users of GAE generally consider it to be very capable and easy enough to use. LAMP is likely to take you longer to learn.

Choosing Correct Database For Delphi Project [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am developing with Delphi XE2.
I am planning a software for primary and secondary school. This school have 1,500 students. The database model is relational and we plan to keep the whole history of each student as the years move on. (well at some point it will be archived, but mostly all the relationships will be maintained for a good time)
I used to write Delphi apps using DBISAM V4 from Elevate Software. I hold a licence of it, so it is still a possibility for use it.
However I had contact with many companies using Firebird recently, some using Postgres and many websites with MySQL.
I don`t see a need to go paid databases, since this type of customer is sensitive in investment. So any database that is free for such use, plus the option of keep using DBISAM. I like it but it is getting old.
I prefer to put the business logic on the software, not in the database, so no need to intricate logic or procedures on the database side.
My questions is: What I need to consider to choose the correct database?
This Wiki post can help you. Besides that, you have to decide for using OLE-DB, ODBC or DBX as middleware technology. Depending on which one you will find or not support for Delphi.
Another criteria include know-how on the database options and rectrictions/requirements on security and scalability.
However, no matter what DBMS you choose, my best advice for you is to isolate the access to it in a dedicated service layer so most of your application won't be directly dependent of it.
In your place I would model the application in terms of domain classes and would invest in a persistence layer. If you have to go for another DBMS in the future, most of you code will be preserved.
DBISAM will work here, and you can even write a webservice in Delphi, to provide access to tablets and such. You need to start thinking about the things that really matter here, such as what platform the users are on, how many users total, how many users will be using the database simultaneously (average and peak), how many rows are kept per student, how many add/delete/updated rows daily, etc.. DBISAM has limited SQL. It does a lot, but not everything that you can do in other databases. Their newer product, ElevateDB, addresses most shortfalls, including Unicode.

Social media data provider [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Today many companies are providing analytics based on social media data. In order to do that every company has to get the data from different social networks like twitter, facebook, etc. It would be nice if we could go to one single data provider that would provide us with data of all social networking sites. That way every company doesn't have to build their own data infrastructure and can concentrate on analytics only and not on data fetching. http://www.gnip.com is one such data provider. Does anyone know of any more such data providers?
I can actually think of quite a few data providers like that. Gnip is obviously the big kid in the room...but a few others are:
http://www.datasift.com
http://www.collectiveintellect.com
http://www.spinn3r.com/ (Not as much of an all-encompassing aggregator, but should still work for the purposes you describe)
I'm sure there are others out there, but Gnip & these three (Datasift & Gnip in particular) seem like the biggest data providers of this sort.

Motorcycle Database (make/model/prod year) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
This is more of a resource question rather than technical one.
I am building a website for a client who needs to categorize photos (motorcycles) and I am looking for a database of models/years/production year.
If anyone knows where I can find such database please let me know.
Here is a database I put together for a Motorcycle website I was working on.
Motorcycle & Scooter Database, Years 1970-2010, 16,000+ records
Here is a link that I was able to find for you. From my experience, it's really hard to find anything free that deals with vehicle database references because of the ever changing makes and models.
DataOneSoftware.com
If the above website doesn't work out for you, then another possiblity would be to see if you can find some of the old VIN lookup books out there and see if there is someway to get a download link or a CD copy of their information.
Good luck on your project.
You can automate an image search (through google image for example) for every make and model you got in the database. This method is error prone and the images have to be checked also manually to see that they are correct. But its an idea.
Also note copyright material and other things like that.
I have found another make-model-year database from here: http://allmotodatabase.com
Not perfect, but very good if you need moto make-model-year DB for some project, plus it contains some additional info (not available for all models though)
This came up when I was searching for one, I decided to scrape bikez.com, it's not complete (atm) but the scraper can be found https://github.com/ibash/bikez_scraper

Resources