Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. const basic_infos = () => ({
  2. firstname: 'William',
  3. lastname: 'Castandet',
  4. age: '27',
  5. location: 'London - UK',
  6. email: 'wcastand@gmail.com',
  7. phone: '+44 7 76 22 111 57',
  8. github: 'wcastand',
  9. npm: 'wcastand'
  10. })
  11. const skills = `
  12. - Javascript, Typescript, HTML, CSS
  13. - React, React Native
  14. – Node, GraphQL, PostgreSQL
  15. - Webpack, Rollup, ...
  16. - Continuous Integration (Heroku, Now, AWS, serverless, ...)
  17. - Test (Jest, Tape)
  18. - Agile software development (Sprint, Kanban, Standup)
  19. `
  20. const educations = () => ({
  21. 'Master 1 - 3D': {
  22. school: 'ESTEI',
  23. year: '2014 - 2015',
  24. skills: '3D - Maya, 3DS Max, Nuke, Fusion, Max Scripts, Python, Lua'
  25. },
  26. 'Bachelor IT / Multimedia': {
  27. school: 'ESTEI',
  28. year: '2011 - 2014',
  29. skills: [
  30. '3D - 3DS Max, Fusion, color theory, Storyboard',
  31. 'Design - Adobe suite, After Effects, Premiere',
  32. 'Web - Javascript, PHP, MySQL, HTML, CSS, Flash'
  33. ]
  34. },
  35. 'DUT IT': {
  36. school: 'University of La Rochelle',
  37. year: '2009 - 2011',
  38. skills: 'C++, Java, C, SQL, Embedded computing'
  39. }
  40. })
  41. const experiences = () => ({
  42. planes: {
  43. year: 'December 2018 - now',
  44. title: 'Fullstack Javascript developer',
  45. skills: `
  46. Create Web app, Mobile app and Terminal CLI
  47. Work in an agile environement (Sprints, Kanban, Standup, remote work, ...)
  48. Work/Contribute on open source projects (Kap, fela, chalk, ...)
  49. Create/Maintained open source projects (Dashbored, graphql-rate-limit, ...) `
  50. },
  51. kilix: {
  52. year: 'January 2016 - December 2017',
  53. title: 'Fullstack Javascript developer',
  54. skills: `
  55. Create Web app, Mobile app and Terminal CLI
  56. Work in an agile environement (Sprints, Kanban, Standup, remote work, ...)
  57. Work/Contribute on open source projects (Storybook, babel, fela, cyclejs, ...)
  58. Create/Maintained open source projects (storybook-addons-jsx, Okami, selectless, ...) `
  59. },
  60. offensive_studio: {
  61. year: 'April-September 2014',
  62. title: 'PHP developer',
  63. skills: `
  64. Create Web app for small to medium companies with a custom CMS made by the agency.
  65. Create a new custom CMS to improve workflow in the agency.`
  66. },
  67. april_marine: {
  68. year: 'April-August 2014',
  69. title: 'PHP developer | designer',
  70. skills: `
  71. Create mobile website based on a design gave to me at the time.
  72. Help as a designer to create posters, ads and web design.`
  73. }
  74. })
  75. const life = `
  76. - Movies, Cinema, TV shows, ...
  77. - Video games, RPG, MMO, Indie, ...
  78. - Bike, esport, more travel hopefully
  79. `
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement