Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ProjectContents.js 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. import KurdicoPict from '../../pict/KurdiCo.jpg'
  2. import PaintingAgentsPict from '../../pict/PaintingAgents1.webm'
  3. import ManyManyPict1 from '../../pict/ManyManyRCS1.PNG'
  4. import ManyManyPict2 from '../../pict/ManyManyRCS2.PNG'
  5. import OthelloPict3 from '../../pict/Othello3.PNG'
  6. import OthelloPict4 from '../../pict/Othello4.PNG'
  7. var Projects = {
  8. details:
  9. [
  10. {
  11. name:"restau",
  12. fr: "RESTau",
  13. desc:{
  14. fr: 'Une interface multi-platforme sécurisée pour aider un bar de nuit à gérer ses réservations et son fichier client. Il est possible de créer, modifier des clients et des réservation, ainsi qu\'attribuer des tables à chaque réservation. Un écran permet de modifier le placement des tables. Réalisé pour l\'<a href="https://www.instagram.com/othello.portovecchio">Othello Bar à Porto Vecchio</a>',
  15. en: "A secure multiplatform user interface to help a night bar to manage its reservations and customer directory. It allows to create, modify clients and reservations, as well as assign tables to reservations. A screen allows moving the tables arround."
  16. },
  17. tech:{
  18. fr: "Java Hibernate React Bulma"
  19. },
  20. pict:[OthelloPict3, OthelloPict4]
  21. },
  22. {
  23. //---------------------
  24. //Painting Agents
  25. name: "paintingagents",
  26. fr: "Painting Agents",
  27. desc:{
  28. fr:"Une simulation multi-agents où les agents évoluent sur une image. Ils finissent par dessiner une nouvelle image en mouvement perpetuel. J'aimerais bien en faire un poster mural une fois que j'aurai trouvé l'écran adapté.",
  29. en:"A multi-agent simulation where agents move on an image. They end up drawing a new, ever-moving picture. I'd like to make it a wall-poster once I'll have found the appropriate screen."
  30. },
  31. tech:
  32. {
  33. fr:"C++ SFML"
  34. },
  35. pict:[PaintingAgentsPict]
  36. },
  37. {
  38. name:"manymany",
  39. fr: "Many Many - RCS",
  40. desc:{
  41. fr: 'Un écran tactile intéractif pour compléter les informations délivrées par une scénographie réalisée par <a href="http://manymany.fr/">ManyMany</a> pour le Registre du Commerce et des Sociétés.',
  42. en: 'An interactive touchscreen to supplement the information given by a scenography made by <a href="http://manymany.fr/">ManyMany</a>.'
  43. },
  44. tech:{
  45. fr: "Unity"
  46. },
  47. pict:[ManyManyPict1, ManyManyPict2]
  48. },
  49. {
  50. //---------------------
  51. //Py Mouse Control
  52. name:"pymousecontrol",
  53. fr: "PyMouseControl",
  54. en: "PyMouseControl",
  55. desc:{
  56. fr: "Une application mobile et un script pour utiliser mon ordinateur depuis mon lit. Je ne l'utilise plus, j'ai acheté une souris sans fil.",
  57. en: "A mobile app and a script to use my computer from bed. I don't use it anymore, I got a wireless mouse."
  58. },
  59. tech:{
  60. fr: "AndroidSDK Python"
  61. },
  62. },
  63. {
  64. name:"kurdico",
  65. fr: "KurdiCo",
  66. desc:{
  67. fr: "Un lexique Français-Kurde-Anglais, avec recherche floue. Un de ces quatres je le réécrirai à base de Java-Hibernate plutôt que PHP/MySQL",
  68. en: "A French-Kurdish-English phrase book, with fuzzy search. Some day I will rewrite it with Java-Hibernate rather than PHP/MySQL"
  69. },
  70. tech:{
  71. fr: "AndroidSDK PHP/MySql"
  72. },
  73. pict:[KurdicoPict]
  74. },
  75. //---------------------
  76. //This website
  77. {
  78. name: "thiswebsite",
  79. fr: "Ce site",
  80. tech: {
  81. fr: "React CSS3"
  82. },
  83. desc: null
  84. }
  85. ]
  86. }
  87. export default Projects