Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | 8x | import gitPhoto from '../assets/courses/GIT.png';
import cPhoto from '../assets/courses/C.png';
import angularjsPhoto from '../assets/courses/ANGULARJS.png';
import assemblyPhoto from '../assets/courses/ASSEMBLY.png';
import cplusplusPhoto from '../assets/courses/CPLUSPLUS.png';
import html5Photo from '../assets/courses/HTML5.png';
import javaPhoto from '../assets/courses/JAVA.png';
import javascriptPhoto from '../assets/courses/JAVASCRIPT.png';
import jqueryPhoto from '../assets/courses/JQUERY.png';
import phpPhoto from '../assets/courses/PHP.png';
import sqlPhoto from '../assets/courses/SQL.png';
import typescriptPhoto from '../assets/courses/TYPESCRIPT.png';
export const courses = [
{
nameKey: "courses_page.git.title",
descKey: "courses_page.git.description",
durationKey: "courses_page.git.duration",
tech: "Git",
link: "https://www.udemy.com/course/corso-git/",
image: gitPhoto
},
{
nameKey: "courses_page.typescript.title",
descKey: "courses_page.typescript.description",
durationKey: "courses_page.typescript.duration",
tech: "Typescript, data types, module, OOP",
link: "https://www.udemy.com/course/typescript-da-zero/",
image: typescriptPhoto
},
{
nameKey: "courses_page.jQuery.title",
descKey: "courses_page.jQuery.description",
durationKey: "courses_page.jQuery.duration",
tech: "jQuery, Selectors, Classes management, Traversing, Manipulating CSS, Bind, Events",
link: "https://www.udemy.com/course/corso-jquery/",
image: jqueryPhoto
},
{
nameKey: "courses_page.php.title",
descKey: "courses_page.php.description",
durationKey: "courses_page.php.duration",
tech: "Php, data types, Control flow statements, iterations, Regular expressions, Arrays, OOP, HTTP calls, File system",
link: "https://www.udemy.com/course/corso-di-programmazione-php/",
image: phpPhoto
},
{
nameKey: "courses_page.cpp.title",
descKey: "courses_page.cpp.description",
durationKey: "courses_page.cpp.duration",
tech: "C++, data types, control flow statements, iterations, I/O system, arrays and structs, OOP, lambda expressions",
link: "https://www.udemy.com/course/corso-di-programmazione-c-plus-plus/",
image: cplusplusPhoto
},
{
nameKey: "courses_page.html5.title",
descKey: "courses_page.html5.description",
durationKey: "courses_page.html5.duration",
tech: "HTML5, APIs (WebStorage, Web Workers, Drag & Drop), Canvas & Multimedia, Header, Footer, Aside",
link: "https://www.udemy.com/course/corso-html5/",
image: html5Photo
},
{
nameKey: "courses_page.angularJS.title",
descKey: "courses_page.angularJS.description",
durationKey: "courses_page.angularJS.duration",
tech: "AngularJS, scope (the hierarchy), services ($http), control flow statement, directives (bind, ng-class, ng-repeat...), filters, custom directives",
link: "https://www.udemy.com/course/corso-angularjs/",
image: angularjsPhoto
},
{
nameKey: "courses_page.java.title",
descKey: "courses_page.java.description",
durationKey: "courses_page.java.duration",
tech: "Java, Control flow statements, iterations, arrays, OOP, File management, Lambda expressions, MySQL, MongoDB ",
link: "https://www.udemy.com/course/corso-di-programmazione-java/",
image: javaPhoto
},
{
nameKey: "courses_page.javascript.title",
descKey: "courses_page.javascript.description",
durationKey: "courses_page.javascript.duration",
tech: "Javascript, control flow statements, iterations, arrays, DOM, Design patterns, Arrow function",
link: "https://www.udemy.com/course/corso-di-programmazione-javascript/",
image: javascriptPhoto
},
{
nameKey: "courses_page.c.title",
descKey: "courses_page.c.description",
durationKey: "courses_page.c.duration",
tech: "C, data types, control flow statements, iterations, arrays, structs",
link: "https://www.udemy.com/course/corso-di-programmazione-c/",
image: cPhoto
},
{
nameKey: "courses_page.assembler.title",
descKey: "courses_page.assembler.description",
durationKey: "courses_page.assembler.duration",
tech: "AssemblerX86, data types, control flow statement, iterations, arrays",
link: "https://www.udemy.com/course/corso-di-programmazione-assembler-8086/",
image: assemblyPhoto
},
{
nameKey: "courses_page.sql.title",
descKey: "courses_page.sql.description",
durationKey: "courses_page.sql.duration",
tech: "SQL, C, E/R, DB design",
link: "https://www.udemy.com/course/corso-sulle-basi-di-dati-dallo-schema-er-allsql/",
image: sqlPhoto
}
];
|