{"id":21581446,"url":"https://github.com/marckassay/cfo","last_synced_at":"2026-04-19T14:05:06.049Z","repository":{"id":32440808,"uuid":"36019029","full_name":"marckassay/CFO","owner":"marckassay","description":"This is a Microsoft Azure solution that scrapes WODs from crossfitorlando.com","archived":false,"fork":false,"pushed_at":"2015-11-15T02:06:44.000Z","size":1512,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-18T08:14:19.753Z","etag":null,"topics":["bootstrap","c-sharp","microsoft-azure-solution","mvc-framework","powershell"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"lili21/antd-issue","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marckassay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-21T14:55:27.000Z","updated_at":"2017-11-14T19:06:06.000Z","dependencies_parsed_at":"2022-07-22T08:22:06.506Z","dependency_job_id":null,"html_url":"https://github.com/marckassay/CFO","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marckassay/CFO","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marckassay%2FCFO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marckassay%2FCFO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marckassay%2FCFO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marckassay%2FCFO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marckassay","download_url":"https://codeload.github.com/marckassay/CFO/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marckassay%2FCFO/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009243,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","c-sharp","microsoft-azure-solution","mvc-framework","powershell"],"created_at":"2024-11-24T14:12:33.038Z","updated_at":"2026-04-19T14:05:06.027Z","avatar_url":"https://github.com/marckassay.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CFOService\nThis is a Microsoft Azure solution that scrapes data daily from crossfitorlando.com.  The data stored are WODs (Workout Of the Day).  With this solution active on Azure, clients can query cloud service to retrieve one WOD or multiple WODs.  The following is the service URL: http://cfocloudservice.cloudapp.net/Service.svc\n\nCurrently data is stored dating back to 11/29/2014.\n\nThis solution consists of the following 5 projects:\n## CFOWOD\nThis is a PowerShell module that is acting as a client to query the cloud service.  To install automatically, run the following script (PowerShell must be relaxed with security):\n\n\t(new-object Net.WebClient).DownloadString(\"https://raw.githubusercontent.com/marckassay/CFO/master/CFOWOD/CFOWOD.ps1\") | iex\n\nTo install manually:\n* Create a CFOWOD folder in your PowerShell module directory.  For an example: C:\\Users\\Marc\\Documents\\WindowsPowerShell\\Modules\\CFOWOD \n* Download CFOWOD.psm1 into the CFOWOD folder: https://raw.githubusercontent.com/marckassay/CFO/master/CFOWOD/CFOWOD.psm1\n\nUsage:\n\n\tPS\u003e Get-WOD\n\tPS\u003e Get-WOD \"4/25/15\"\n\tPS\u003e Get-WOD \"4/25/15 -2\"\n\tPS\u003e Get-WOD \"4/13/15 +2\"\n\tPS\u003e Get-WOD \"*\"\n\t\n## CloudService\nThis project is the Azure cloud service that hosts ServiceWebRole.\n\n## ScraperWebJob\nThis WebJob project typically runs daily on Azure which scrapes the WOD web page from crossfitorlando.com.  This project uses HtmlAgility for scraping which will then marshal the data into a WOD entity.  The entity is then stored into Azure Storage as a Table (NoSQL key-attribute data store). \n\n## ServiceWebRole\nThis is the SOAP web service project on Azure.  Interface contains `GetWOD` method:\n\t\n\tnamespace ServiceWebRole\n\t{\n\t\t[ServiceContract]\n\t\tpublic interface IService\n\t\t{\n\t\t\t[OperationContract]\n\t\t\tIEnumerable\u003cWOD\u003e GetWOD(string DateEx);\n\t\t}\n\t}\n\t\n\t\nThe `DateEx` (date expression) parameter can take the following expressions:\n\t\n\t// returns a WOD for April 25th 2015\n\t\"4/25/15\"\n\n\t// returns WOD objects for April 23rd-25th of 2015.  \n\t\"4/25/15 -2\"\n\n\t// returns WOD objects for April 25th-27th of 2015. \n\t\"4/13/15 +2\"\n\n\t// returns a random WOD object \n\t\"*\"\n\t\n## WebApplication\nThis web application is using ASP .NET MVC, Angular and Bootstrap.  The current IP address is the following: http://104.209.185.221:8080/\n ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarckassay%2Fcfo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarckassay%2Fcfo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarckassay%2Fcfo/lists"}