{"id":13482069,"url":"https://github.com/glena/d3-resume","last_synced_at":"2025-08-21T18:10:37.580Z","repository":{"id":13012064,"uuid":"15691487","full_name":"glena/d3-resume","owner":"glena","description":"D3.js based resume visualizer","archived":false,"fork":false,"pushed_at":"2015-04-08T12:24:33.000Z","size":186,"stargazers_count":40,"open_issues_count":1,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-12T23:33:42.699Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/glena.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-01-07T01:05:56.000Z","updated_at":"2025-02-23T19:54:48.000Z","dependencies_parsed_at":"2022-08-23T12:30:51.906Z","dependency_job_id":null,"html_url":"https://github.com/glena/d3-resume","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/glena/d3-resume","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glena%2Fd3-resume","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glena%2Fd3-resume/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glena%2Fd3-resume/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glena%2Fd3-resume/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glena","download_url":"https://codeload.github.com/glena/d3-resume/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glena%2Fd3-resume/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271518563,"owners_count":24773903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"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":[],"created_at":"2024-07-31T17:00:58.731Z","updated_at":"2025-08-21T18:10:37.540Z","avatar_url":"https://github.com/glena.png","language":null,"funding_links":[],"categories":["Miscellaneous"],"sub_categories":[],"readme":"d3-resume\n=========\n\nD3.js based resume visualizer\n\nDemo\n----\nhttp://germanlena.com.ar/experience\n\n\nHow to\n------\nJust include the D3.js library\n```\n\u003cscript src=\"http://d3js.org/d3.v3.min.js\"\u003e\u003c/script\u003e\n```\n\nand then the resume.js\n```\n\u003cscript src=\"http://rawgithub.com/glena/d3-resume/master/d3resume.min.js\"\u003e\u003c/script\u003e\n```\n\nand finally, instanciate the graph:\n\n```\nvar resume = new d3Resume({\n  width: 900,\n  height: 900,\n  wrapperSelector: \"article.resume\",\n  dataUrl: 'data.json',\n  getItemFillCollor: function (item) {\n    return '#' + (function co(lor){   return (lor +=\n      [0,1,2,3,4,5,6,7,8,9,'a','b','c','d','e','f'][Math.floor(Math.random()*16)])\n      \u0026\u0026 (lor.length == 6) ?  lor : co(lor); })('');\n  }\n});\n```\n*getItemFillCollor* is a callback invoked to get the item color. It receives the experience or education item by param.\n\nData source\n-----------\nYou need to create a file with your experience and studies formatted as json.\n\nFormat:\n```\n{\n\t\"experience\":[\n\t\t{\n\t\t\t\"type\":\"Work\",\n\t\t\t\"institution\":\"First job institution\",\n\t\t\t\"title\":\"The job title!\",\n\t\t\t\"from\":\"2006-05-01\",\n\t\t\t\"to\":\"2006-09-30\",\n\t\t\t\"description\":\"all what i have done \\n and this is a second line\",\n\t\t\t\"default_item\":false\n\t\t},\n\t\t{\n\t\t\t\"type\":\"Trainee\",\n\t\t\t\"institution\":\"Seocond job institution\",\n\t\t\t\"title\":\"The jon title!\",\n\t\t\t\"from\":\"2006-05-01\",\n\t\t\t\"to\":null, /* because this is my current job, it doesn't have an end date */\n\t\t\t\"description\":\"all what i have done \\n and this is a second line\",\n\t\t\t\"default_item\":true\n\t\t}\n\t],\n\t\"study\":[\n\t\t{\n\t\t\t\"type\":\"Study\",\n\t\t\t\"institution\":\"Fist stydy\",\n\t\t\t\"title\":\"My title\",\n\t\t\t\"from\":\"2007-03-01\",\n\t\t\t\"to\":\"2011-12-20\",\n\t\t\t\"description\":\"\",\n\t\t\t\"default_item\":false\n\t\t},\n\t\t{\n\t\t\t\"type\":\"Study\",\n\t\t\t\"institution\":\"Also, I study another thing\",\n\t\t\t\"title\":\"IDK\",\n\t\t\t\"from\":\"2013-08-30\",\n\t\t\t\"to\":null,\n\t\t\t\"description\":\"\",\n\t\t\t\"default_item\":false\n\t\t}\n\t]\n}\n```\n\nNotes:\n- type: is the text shown on the first line.\n- to: if this attribute is null, it will count as an ongoing job/study and will be shown as an unfinished one.\n- description: when a \"\\n\" is found will generate a new line (because SVG does not support text wrapping at the moment).\n- default_item: if this attribute is true, it will be the default text when there is no item selected.\n\n[![Analytics](https://ga-beacon.appspot.com/UA-51467836-1/glena/d3-resume)](http://germanlena.com.ar)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglena%2Fd3-resume","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglena%2Fd3-resume","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglena%2Fd3-resume/lists"}