{"id":12605,"date":"2019-08-15T04:12:28","date_gmt":"2019-08-15T11:12:28","guid":{"rendered":"https:\/\/www.seedcode.com\/?p=12605"},"modified":"2019-08-15T04:12:28","modified_gmt":"2019-08-15T11:12:28","slug":"scifi-timelines-filemaker","status":"publish","type":"post","link":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/","title":{"rendered":"SCIFI Timelines in FileMaker"},"content":{"rendered":"<p>If you came by our booth at DevCon, you likely saw our\u00a0science fiction timeline. DayBack can now show multi-year projects on the Gantt Chart, and we\u00a0created some long timelines to show how well this works. One plots when milestone SCIFI books and films were set, starting with Kepler&#8217;s Somnium in 1608. <a href=\"https:\/\/app.dayback.com\/shared\/science-fiction\">Check it out<\/a>.<\/p>\n<p><a href=\"https:\/\/app.dayback.com\/shared\/science-fiction\" target=\"_blank\" rel=\"noopener\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/www.seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline.jpg\" alt=\"SCIFI Timeline\" width=\"2000\" height=\"1125\" class=\"aligncenter size-full wp-image-13111\" srcset=\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline.jpg 2000w, https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline-300x169.jpg 300w, https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline-1024x576.jpg 1024w, https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline-768x432.jpg 768w, https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFITimeline-1536x864.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" \/><\/a><\/p>\n<h2>Make Your Own Timelines<\/h2>\n<p>You can make read-only URLs from any view in your calendar using <a href=\"https:\/\/www.seedcode.com\/publish-filemaker-calendar\/\" target=\"_blank\" rel=\"noopener\">DayBack&#8217;s sharing<\/a>. Sharing is a great way to publish schedules to folks who can&#8217;t log into your FileMaker solution. The timeline above uses the new <a href=\"https:\/\/www.seedcode.com\/preview-long-term-thinking-filemaker\/\" target=\"_blank\" rel=\"noopener\">long timescales feature<\/a> introduced as a free in-app update at <a href=\"https:\/\/www.filemaker.com\/learning\/devcon\/2019\/\" target=\"_blank\" rel=\"noopener\">DevCon<\/a>. If you&#8217;d like to play with the timeline above, you can download a copy of DayBack with this SCIFI calendar already set up:<\/p>\n<p>[sdm-download id=&#8221;12595&#8243; fancy=&#8221;1&#8243; show_version=&#8221;1&#8243; button_text=&#8221;Download DayBack DevCon 2019&#8243;]<\/p>\n<h2>Date Limits in FileMaker<\/h2>\n<p>FileMaker doesn&#8217;t support dates after the year 4000 (same with timestamps). Yet, we needed dates up to 21500 to put <a href=\"https:\/\/en.wikipedia.org\/wiki\/Dune_(novel)\" target=\"_blank\" rel=\"noopener\">Dune<\/a> on our timeline. Fortunately, DayBack does support dates this big, and when looking at FileMaker sources it converts all dates and timestamps to numbers. So, for the SCIFI timeline in FileMaker, we used text fields for dates and wrote a function to turn those into timestamp-numbers. This is tricky because while FileMaker&#8217;s date functions understand leap years, we couldn&#8217;t use any of those functions on text-dates that far in the future.<\/p>\n<h2>FileMaker 18 While Function<\/h2>\n<p>Fortunately, FileMaker 18 introduced the <a href=\"https:\/\/fmhelp.filemaker.com\/help\/18\/fmp\/en\/index.html#page\/FMP_Help\/while.html\" target=\"_blank\" rel=\"noopener\">while function<\/a> so we could have loops within our calculation to express the leap year rule ourselves. This is a very rough implementation we put together for DevCon. It only works with dates in the MM\/DD\/YYYY format, but it was fun to play with &#8220;while&#8221; and to see events 20k years from now.<\/p>\n<p>[ba-accordion name=&#8221;BA-Accordion&#8221;][ba-accordioncontent name=&#8221;BA-Accordion&#8221; heading=&#8221;Function: Large Text-Dates to Numbers&#8221; number=&#8221;1&#8243; open=&#8221;no&#8221;]<\/p>\n<pre class=\"prettyprint\">Let ( [\n\n\/\/============= Assign your date and time fields here ==========================\n\n    ds = \"7\/25\/9205\" ; \/\/ Your event's start date field\n    ts = \"9:00 am\" ;  \/\/ Your event's start time field\n\n\/\/============= You shouldn't have to edit below this line =====================\n\/\/============= Returns a number based on a timestamp of the two fields above ==\n\/\/============= Required to support dates after 12\/31\/4000 =====================\n\/\/============= Works for any date after 1\/1\/1583 ==============================\n\/\/============= Supports text in the MM\/DD\/YYYY format =========================\n\n    s = Substitute ( ds ; \"\/\" ; \u00b6 ) ;\n    m = Substitute ( LeftValues ( s ; 1 ) ; \"\u00b6\" ; \"\" ) ;\n    d = Substitute ( MiddleValues ( s ; 2 ; 1 ) ; \"\u00b6\" ; \"\" ) ; \n    yr = Substitute ( RightValues ( s ; 1 ) ; \"\u00b6\" ; \"\" ) ;\n    yrs = GetAsNumber ( yr - 1583 ) ;\n    leaps = \/\/ count the number of leap years since 1583\n\n      While ( \n          [ \n           countLeaps = 0 ;\n           testYear = 1583 \n          ]; \n           testYear &lt; yr ; \n          [\n           countLeaps = countLeaps + \/\/ test for leap year\n\n              If ( Mod ( testYear ; 4 ) = 0 ; \n                 If ( Mod ( testYear ; 100 ) \u2260 0 or Mod ( testYear ; 400 ) = 0 ; 1 ; 0 ) \n              ; 0  ) ;\n\n           testYear = testYear + 1 \n          ]; \n      countLeaps \n      );\n    yl = 86400 ; \/\/ offset for leapyears\n    y = 31536000 ;\n    cyr = GetAsNumber (\n              Timestamp ( Date ( m ; d ; 1583 ) ; Max ( ts ; 0 ) )\n           ) ;\n    num = cyr + ( yrs * y ) + ( yl * leaps )\n]; \n\n    GetAsTimestamp ( num )\n\n)\n<\/pre>\n<p>[\/ba-accordioncontent][\/ba-accordion]<\/p>\n<p>This calc is included in the download above: in the fields\u00a0<em>DBk_TimestampStartCalcNum<\/em> and\u00a0<em>DBk_TimestampEndCalcNum<\/em>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you came by our booth at DevCon, you likely saw our\u00a0science fiction timeline. DayBack can now show multi-year projects on the Gantt Chart, and we\u00a0created some long timelines to show how well this works. One plots when milestone SCIFI books and films were set, starting with Kepler&#8217;s Somnium in 1608. Check it out. Make Your Own Timelines You can make read-only URLs from any view in your calendar using DayBack&#8217;s sharing. Sharing is a great way to publish schedules to folks who can&#8217;t log into your FileMaker solution. The timeline above uses the new long timescales feature introduced as a free in-app update at DevCon. If you&#8217;d like to play with the timeline above, you can download a copy of DayBack with this SCIFI calendar already set up: [sdm-download id=&#8221;12595&#8243; fancy=&#8221;1&#8243; show_version=&#8221;1&#8243; button_text=&#8221;Download DayBack DevCon 2019&#8243;] Date Limits in FileMaker FileMaker doesn&#8217;t support dates after the year 4000 (same with timestamps). Yet, we needed dates up to 21500 to put Dune on our timeline. Fortunately, DayBack does support dates this big, and when looking at FileMaker sources it converts all dates and timestamps to numbers. So, for the SCIFI timeline in FileMaker, we used text fields for dates and wrote a function to turn those into timestamp-numbers. This is tricky because while FileMaker&#8217;s date functions understand leap years, we couldn&#8217;t use any of those functions on text-dates that far in the future. FileMaker 18 While Function Fortunately, FileMaker 18 introduced the while function so we could have loops within our calculation to express the leap year rule ourselves. This is a very rough implementation we put together for DevCon. It only works with dates in the MM\/DD\/YYYY format, but it was fun to play with &#8220;while&#8221; and to see events 20k years from now. [ba-accordion name=&#8221;BA-Accordion&#8221;][ba-accordioncontent name=&#8221;BA-Accordion&#8221; heading=&#8221;Function: Large Text-Dates to Numbers&#8221; number=&#8221;1&#8243; open=&#8221;no&#8221;] Let ( [ \/\/============= Assign your date and time fields here ========================== ds = &#8220;7\/25\/9205&#8221; ; \/\/ Your event&#8217;s start date field ts = &#8220;9:00 am&#8221; ; \/\/ Your event&#8217;s start time field \/\/============= You shouldn&#8217;t have to edit below this line ===================== \/\/============= Returns a number based on a timestamp of the two fields above == \/\/============= Required to support dates after 12\/31\/4000 ===================== \/\/============= Works for any date after 1\/1\/1583 ============================== \/\/============= Supports text in the MM\/DD\/YYYY format ========================= s = Substitute ( ds ; &#8220;\/&#8221; ; \u00b6 ) ; m = Substitute ( LeftValues ( s ; 1 ) ; &#8220;\u00b6&#8221; ; &#8220;&#8221; ) ; d = Substitute ( MiddleValues ( s ; 2 ; 1 ) ; &#8220;\u00b6&#8221; ; &#8220;&#8221; ) ; yr = Substitute ( RightValues ( s ; 1 ) ; &#8220;\u00b6&#8221; ; &#8220;&#8221; ) ; yrs = GetAsNumber ( yr &#8211; 1583 ) ; leaps = \/\/ count the number of leap years since 1583 While ( [ countLeaps = 0 ; testYear = 1583 ]; testYear &lt; yr ; [ countLeaps = countLeaps + \/\/ test for leap year If ( Mod ( testYear ; 4 ) = 0 ; If ( Mod ( testYear ; 100 ) \u2260 0 or Mod ( testYear ; 400 ) = 0 ; 1 ; 0 ) ; 0 ) ; testYear = testYear + 1 ]; countLeaps ); yl = 86400 ; \/\/ offset for leapyears y = 31536000 ; cyr = GetAsNumber ( Timestamp ( Date ( m ; d ; 1583 ) ; Max ( ts ; 0 ) ) ) ; num = cyr + ( yrs * y ) + ( yl * leaps ) ]; GetAsTimestamp ( num ) ) [\/ba-accordioncontent][\/ba-accordion] This calc is included in the download above: in the fields\u00a0DBk_TimestampStartCalcNum and\u00a0DBk_TimestampEndCalcNum.<\/p>\n","protected":false},"author":1,"featured_media":12606,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[8,39],"class_list":["post-12605","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-calendar","tag-devcon-2019"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function<\/title>\n<meta name=\"description\" content=\"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler&#039;s Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function\" \/>\n<meta property=\"og:description\" content=\"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler&#039;s Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\" \/>\n<meta property=\"og:site_name\" content=\"SeedCode\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seedcoder\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-15T11:12:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png\" \/>\n\t<meta property=\"og:image:width\" content=\"319\" \/>\n\t<meta property=\"og:image:height\" content=\"325\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"seedcode\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dayback\" \/>\n<meta name=\"twitter:site\" content=\"@dayback\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"seedcode\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\"},\"author\":{\"name\":\"seedcode\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\"},\"headline\":\"SCIFI Timelines in FileMaker\",\"datePublished\":\"2019-08-15T11:12:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\"},\"wordCount\":340,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png\",\"keywords\":[\"Calendar\",\"DevCon 2019\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\",\"url\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\",\"name\":\"SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function\",\"isPartOf\":{\"@id\":\"https:\/\/seedcode.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png\",\"datePublished\":\"2019-08-15T11:12:28+00:00\",\"description\":\"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler's Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.\",\"breadcrumb\":{\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png\",\"width\":319,\"height\":325},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seedcode.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SCIFI Timelines in FileMaker\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seedcode.com\/#website\",\"url\":\"https:\/\/seedcode.com\/\",\"name\":\"SeedCode\",\"description\":\"Build the Software You&#039;ve Always Wanted\",\"publisher\":{\"@id\":\"https:\/\/seedcode.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seedcode.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/seedcode.com\/#organization\",\"name\":\"SeedCode\",\"url\":\"https:\/\/seedcode.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"contentUrl\":\"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png\",\"width\":595,\"height\":189,\"caption\":\"SeedCode\"},\"image\":{\"@id\":\"https:\/\/seedcode.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/seedcoder\",\"https:\/\/x.com\/dayback\",\"https:\/\/www.linkedin.com\/company\/seedcode\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f\",\"name\":\"seedcode\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/seedcode.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g\",\"caption\":\"seedcode\"},\"sameAs\":[\"https:\/\/seedcode.com\"],\"url\":\"https:\/\/seedcode.com\/author\/seedcode\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function","description":"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler's Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/","og_locale":"en_US","og_type":"article","og_title":"SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function","og_description":"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler's Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.","og_url":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/","og_site_name":"SeedCode","article_publisher":"https:\/\/www.facebook.com\/seedcoder","article_published_time":"2019-08-15T11:12:28+00:00","og_image":[{"width":319,"height":325,"url":"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png","type":"image\/png"}],"author":"seedcode","twitter_card":"summary_large_image","twitter_creator":"@dayback","twitter_site":"@dayback","twitter_misc":{"Written by":"seedcode","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#article","isPartOf":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/"},"author":{"name":"seedcode","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f"},"headline":"SCIFI Timelines in FileMaker","datePublished":"2019-08-15T11:12:28+00:00","mainEntityOfPage":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/"},"wordCount":340,"commentCount":0,"publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"image":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png","keywords":["Calendar","DevCon 2019"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seedcode.com\/scifi-timelines-filemaker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/","url":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/","name":"SCIFI Timelines in FileMaker - SeedCode - FileMaker 18 While Function","isPartOf":{"@id":"https:\/\/seedcode.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage"},"image":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage"},"thumbnailUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png","datePublished":"2019-08-15T11:12:28+00:00","description":"DayBack can show multi-year projects on the Gantt Chart, such as when milestone SCIFI books and films were set, starting with Kepler's Somnium in 1608. We also show how to use the FileMaker 18 while function to handle dates after the year 4000.","breadcrumb":{"@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seedcode.com\/scifi-timelines-filemaker\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#primaryimage","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2019\/08\/SCIFIfeat.png","width":319,"height":325},{"@type":"BreadcrumbList","@id":"https:\/\/seedcode.com\/scifi-timelines-filemaker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seedcode.com\/"},{"@type":"ListItem","position":2,"name":"SCIFI Timelines in FileMaker"}]},{"@type":"WebSite","@id":"https:\/\/seedcode.com\/#website","url":"https:\/\/seedcode.com\/","name":"SeedCode","description":"Build the Software You&#039;ve Always Wanted","publisher":{"@id":"https:\/\/seedcode.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seedcode.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/seedcode.com\/#organization","name":"SeedCode","url":"https:\/\/seedcode.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/","url":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","contentUrl":"https:\/\/seedcode.com\/wp-content\/uploads\/2022\/12\/SeedCodeLogo.png","width":595,"height":189,"caption":"SeedCode"},"image":{"@id":"https:\/\/seedcode.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/seedcoder","https:\/\/x.com\/dayback","https:\/\/www.linkedin.com\/company\/seedcode\/"]},{"@type":"Person","@id":"https:\/\/seedcode.com\/#\/schema\/person\/af42f3f8cbfc8652fb0ffbb3f46f260f","name":"seedcode","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/seedcode.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f0c386c5b845ee7fe111b36b2d87e983811f1f549682de9597a934b9dfd45469?s=96&d=mm&r=g","caption":"seedcode"},"sameAs":["https:\/\/seedcode.com"],"url":"https:\/\/seedcode.com\/author\/seedcode\/"}]}},"_links":{"self":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/12605","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/comments?post=12605"}],"version-history":[{"count":0,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/posts\/12605\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media\/12606"}],"wp:attachment":[{"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/media?parent=12605"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/categories?post=12605"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seedcode.com\/wp-json\/wp\/v2\/tags?post=12605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}