Dayta – Track and reflect on your life’s data with your iPhone.

In: web resources

7 Mar 2010

Dayta - Track and reflect on your life's data with your iPhone.

Dayta is a data tracking application that allows you to track literally everything about you; from your weight, to how many glasses of water you’ve had today, or even your kill/death ratio in Call of Duty, Dayta can track it all.

Features:

  • Track and reflect on everything about you.
  • Export data through email, along with a nice CSV file.
  • Create folders to organize your data.
  • Wipe a data log once you’re done tracking a piece of data.
  • Consolidate data daily.

view more



Go to Source

9 Responses to Dayta – Track and reflect on your life’s data with your iPhone.

Avatar

boo boo bunny

March 8th, 2010 at 9:43 am

Go to mail setting in member center, and check to see if a box that tells how your mail is received got accidentally changed.

Avatar

susan w

March 8th, 2010 at 1:42 pm

When that file is "Exported", is it removed from the original site, or does it remain until you wish it gone ?

I don't know about the jfile, but know about .jpg and .tif files, so I am not much help with this question. The changes have made emailing so much more difficult than it was before. I thought change was supposed to be an improvement. This isn't !

Avatar

commorancy

March 9th, 2010 at 8:17 am

Opening and managing a .CSV file (flat file) from your application will be a lot more of a problem than using a database. Especially if you want to allow your customers to change/modify the password information. And, it makes it far easier to add, update and delete rows/columns in the table (like adding and deleting customer records or a password change). I would suggest you pick a database of some kind (like MySQL, MSSQL or even Access in a pinch) and create a table out of that CSV file.

Also, as your CSV file grows, the performance to fetch data will suffer. This doesn't degrade nearly as much when using a database. With a database, it's easier (and faster) to fetch a row containing your customer's login/password information. Then, you can use ODBC calls to fetch the data.

Even more than this, you can create relationships between tables to allow for linking your login table to customer data table, billing tables, etc. So, if your customer goes delinquent in payment, you can easily lock the login through an accounting system (with the right table columns and coding).

Since I don't know what programming environment you intend to use, I really can't easily give you code examples. But, I would definitely start by moving from the CSV file to a database to allow for growth and easier management.

— Update 1:40 AM

I would still use the database system because you're going to use the old ones up and have to add new ones (making the database grow). I would add a column called 'used_flag' or similar and mark it with a 1 after that one has been used and a 0 if unused. I might even add a 'used_by' column to mark which user received that username/password combination so you have a history in that table.

So you would do something like this:

SELECT record_number, password, username FROM
ebook_table WHERE used_flag = 0 LIMIT 1;

This will give you the first row that contains an unused username/password combo and let you store the record_number of that combo.

Then…

UPDATE ebook_table SET used_by = = 1 WHERE record_number = 'XXXXXX';

Where XXXXXX is the number you stored from the earlier SELECT.

This update marks the password/login combo as used and who used it. You can even add additional information if you like like date, time, order numbers, etc with additional columns.

You'll want to do these two SQL statements in pretty quick succession to prevent racing issues (two web accesses at the same exact moment in time) both getting the same record. There are other considerations as well. A database can help prevent locking concerns. For example, a CSV file might be locked (at the file level) preventing other requests from happening at the same moment in time. MySQL, Access and MSSQL can be configured to lock at the row level to allow other users access to the table while one user has a specific row locked.

All things you'll want to be concerned with. With CGI, I would suggest PHP because it has PHP-MySQL interfaces that allow easy access to getting data from databases. I can send you example code to do this if you need it. But, I believe when you install PHP (either in Apache or IIS), the MySQL PHP portions come with very good examples.

You can email me if you need more detail.

Avatar

#17

March 9th, 2010 at 8:21 am

Your issues could be due to your glasses, but they also sound like what happens to my eyes when I don't get enough sleep. If you're getting less than 8 hours of sleep a night, this might be your problem.

Avatar

Chaminda

March 11th, 2010 at 6:32 pm

- First export the contacts you currently have in Yahoo Contacts in csv format.
- Delete all the rows except the header

Now you have the upload format. i think there are some fields you cannot leave blank (e.g last name)

Avatar

walle

March 24th, 2010 at 1:13 pm

Yes,maybe it is infected by some viruses.
I met a virus,which have my some folders hidden,and made some fakery folders so as to misleading me.
I think some viruses often change windows registry or some system setting,so,I use registry guarder,antivirus tool.
If you have no idea to change it back manually,you should try some tools.
Give you a tool, I am using now.

Avatar

Cameron W

March 27th, 2010 at 10:50 pm

If you want to take still photos remember the old Physics rule. The angle of incidence is equal to the angle of reflection. You will need to ensure that your flash is at an angle that will shine into the lens at the same angle as it hits the glass in the lens. This will be hard for a moving subject.

You are most likely going to only get flares from the light rather than a complete coverage of the lens. You might like to try using a silvered lens such as some sun glasses have and use a constant light such as a desk lamp if you don't have any constant studio lights. It would probably be best to set your lights in the Rembrandt positions. Ensure that your main light, being used for the reflection, is still at the right angle.

Easiest way is to take the photo then open Photoshop and create some vectors over the lens and then either design or download a chrome style and apply it to the vector. This would give you a really nice reflective cover. You could also take another photo from your perspective and then layer it over the chrome vector so that there is a reflection of the room in the glasses.

Avatar

darkmoon889

May 14th, 2010 at 6:35 am

Titles, emblems, accolades and leaderboard scores, including kill/death and win/loss ratio remain through all levels of Prestige. Non prestige challenges and weapon and perk unlocks are all deleted.

Avatar

LoneStar

May 20th, 2010 at 2:43 am

You can't—-Safari isn't a supported browser for Yahoo (except with a Mac).

That's a change Yahoo made during the update of the original mail page. Auto Complete is now only available with 2 browsers.
See this link for that information, and a list of supported browsers.
http://help.yahoo.com/l/us/yahoo/addressbook/autocomplete/autocomplete-06.html

Comment Form

About this blog

This blog delivers stylish and dynamic news for designers and web-developers on all subjects of design, ranging from: CSS, Ajax, Javascript, web design, graphics, typography, advertising & much more. Our goal is to help you communicate effectively on the web with an engaging website or functional interface.