Advertisement
Guest User

Untitled

a guest
May 28th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. How does time function exactly work?
  2.  
  3. They need to be a KEY Value.
  4.  
  5. In time key value it needs to have
  6.  
  7. Exact year, month, day, hour,minute,seconds PM or AM..
  8.  
  9. If you run the script within 5 minutes(It saves "results already saved in 5/28/2105, 1:00AM") kind of like it gets results from database instead of
  10. entirely re-running it or getting data from database
  11. So you're thinking of efficiency here.
  12. So format should be like
  13.  
  14. 5/28/2015, 1:00PM
  15. [
  16. {
  17. Name : "Chicken"
  18. Price : "$50.00"
  19. IMAGE_URL : "imgeurl"
  20. Ingridients : "ingridents"
  21. Description : "descrption"
  22. }
  23. {
  24. Name : "Beef"
  25. Price : "$50.00"
  26. IMAGE_URL : "imgeurl"
  27. Ingridients : "ingridents"
  28. Description : "descrption"
  29. }
  30. ]
  31. 5/28/2015, 2:00PM
  32. [
  33. {
  34. Name : "Chicken"
  35. Price : "$50.00"
  36. IMAGE_URL : "imgeurl"
  37. Ingridients : "ingridents"
  38. Description : "descrption"
  39. }
  40. {
  41. Name : "Beef"
  42. Price : "$50.00"
  43. IMAGE_URL : "imgeurl"
  44. Ingridients : "ingridents"
  45. Description : "descrption"
  46. }
  47. ]
  48.  
  49. The format should be something like that :)
  50. Also the more information you can get from that API link the better.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement