|
|
|
@ -1,212 +1,220 @@
|
|
|
|
|
interface skill {
|
|
|
|
|
name: string,
|
|
|
|
|
kategory: string,
|
|
|
|
|
logo: string,
|
|
|
|
|
link: string,
|
|
|
|
|
description: string
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const SKILLS = [
|
|
|
|
|
{
|
|
|
|
|
name: "Inkscape",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "incscape.jpg",
|
|
|
|
|
link: "https://inkscape.org",
|
|
|
|
|
description: "Das Vector-Grafikprogramm Inkscape ist ein Open-Source-Zeichenprogramm mit dem Logos, Banner, Poster und vieles mehr entworfen werden können. Das Programm ist zum SVG-Format kompatibel, kann aber auch EPS-, Postscript-, JPG-, PNG-, BMP- oder TIF-Bilder importieren und nach PNG oder anderen vektorbasierten Formaten exportieren. Sogar Direktbearbeitung von XML-Codes im XML-Editor ist möglich."
|
|
|
|
|
description: "The Vector graphics program Inkscape is an open source drawing program with which logos, banners, posters and much more can be designed. The program is compatible with the SVG format, but can also import EPS, Postscript, JPG, PNG, BMP or TIF images and export them to PNG or other vector-based formats. Even direct editing of XML codes in the XML editor is possible."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "GIMP",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "gimp.jpg",
|
|
|
|
|
link: "https://www.gimp.org",
|
|
|
|
|
description: "GIMP (GNU Image Manipulation Program) ist ein pixelbasiertes Grafikprogramm, das Funktionen zur Bildbearbeitung und zum digitalen Malen von Rastergrafiken beinhaltet. GIMP unterstützt mehr als dreißig Dateiformate."
|
|
|
|
|
description: "GIMP (GNU Image Manipulation Program) is a pixel-based graphics program that includes functions for image processing and digital painting of raster graphics. GIMP supports more than thirty file formats."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Adobe Photoshop",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "photoshop.jpg",
|
|
|
|
|
link: "https://www.adobe.com/de/products/photoshop.html",
|
|
|
|
|
description: "Adobe Photoshop ist ein Bildbearbeitungsprogramm für Pixelgrafiken des US-amerikanischen Softwarehauses Adobe Inc. Im Bereich der Bildbearbeitung und Druckvorstufe ist das Programm Weltmarktführer und marktbeherrschend."
|
|
|
|
|
description: "Adobe Photoshop is an image processing program for pixel graphics from the US software house Adobe Inc. In the field of image processing and pre-press, the program is the world market leader and dominates the market."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Blender",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "blender.png",
|
|
|
|
|
link: "https://www.blender.org",
|
|
|
|
|
description: "Blender gehört zu den besten unter den Open-Source-Programmen, da sie kaum Wünsche offen lässt. Das Entwerfen und Modellieren von 3D-Objekten sowie Animationen ist kein Problem, sodass sich Blender für Videos, Bilder oder Games einsetzen lässt. An Funktionen bietet Blender unter anderem Objekt- und Figuren-Sculpting, Modellierung mit N-Gon- und Skript-Unterstützung, Rigging für die Bewegungsmöglichkeiten von Figuren, Animation mit Sound-Synchronisierung und automatisch oder individuell definierten Bewegungen. Komplexe Partikel-Simulationen, eine komplette Spiel-Engine sowie ein Videoschnitt- und Effekte-Tool ergänzen dies."
|
|
|
|
|
description: "Blender is one of the best among the open source programs, because it leaves hardly any wishes unfulfilled. Designing and modeling 3D objects and animations is no problem, so Blender can be used for videos, pictures or games. Blender's features include object and figure sculpting, modeling with N-gon and script support, rigging for figure movement, animation with sound synchronization and automatically or individually defined movements. Complex particle simulations, a complete game engine and a video editing and effects tool complete this."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "OpenSCAD",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "openscad.jpg",
|
|
|
|
|
link: "http://openscad.org",
|
|
|
|
|
description: "In der freien CAD Software werden mit einer textbasierten Beschreibungssprache 3D-Modelle erzeugt. Die Objekte bestehen aus einfachen geometrischen Grundkörpern und werden mit Transformationen und Modifikationen zu einem komplexen 3D-Modell vereinigt. Die Modellierung basiert auf der CSG-Technik. Mit OpenSCAD können auch Animationen realisiert werden."
|
|
|
|
|
description: "In the free CAD software, 3D models are created with a text-based description language. The objects consist of simple geometric basic bodies and are combined with transformations and modifications to a complex 3D model. The modelling is based on CSG technology. Animations can also be realized with OpenSCAD."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Anime.js",
|
|
|
|
|
kategory: "Grafik",
|
|
|
|
|
kategory: "Design",
|
|
|
|
|
logo: "animejs.gif",
|
|
|
|
|
link: "https://animejs.com",
|
|
|
|
|
description: "Anime.js ist eine leichtgewichtige JavaScript Animations Bibiliothek mit einer einfachen aber starken API. Mithilfe von CSS-Eigenschaften, SVG, DOM Attributen und Javascript Objekten können schnell komplexe Webseiten Animationen und bewegte Grafiken erstellt werden."
|
|
|
|
|
description: "Anime.js is a lightweight JavaScript animation library with a simple but powerful API. With the help of CSS properties, SVG, DOM attributes and Javascript objects, complex web pages, animations and moving graphics can be created quickly."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "HTML",
|
|
|
|
|
kategory: "einfache Webseiten",
|
|
|
|
|
kategory: "Websites",
|
|
|
|
|
logo: "html.png",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/Hypertext_Markup_Language",
|
|
|
|
|
description: "Die Hypertext Markup Language, abgekürzt HTML, ist eine textbasierte Auszeichnungssprache zur Strukturierung elektronischer Dokumente wie Texte mit Hyperlinks, Bildern und anderen Inhalten. HTML-Dokumente sind die Grundlage des World Wide Web und werden von Webbrowsern dargestellt."
|
|
|
|
|
description: "The Hypertext Markup Language, abbreviated HTML, is a text-based markup language for structuring electronic documents such as texts with hyperlinks, images and other content. HTML documents are the basis of the World Wide Web and are displayed by web browsers."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "CSS",
|
|
|
|
|
kategory: "einfache Webseiten",
|
|
|
|
|
kategory: "Websites",
|
|
|
|
|
logo: "css.png",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/Cascading_Style_Sheets",
|
|
|
|
|
description: "Cascading Style Sheets, kurz CSS genannt, ist eine Stylesheet-Sprache für elektronische Dokumente und zusammen mit HTML und DOM eine der Kernsprachen des World Wide Webs."
|
|
|
|
|
description: "Cascading Style Sheets, or CSS for short, is a stylesheet language for electronic documents and, together with HTML and DOM, one of the core languages of the World Wide Web."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "JavaScript",
|
|
|
|
|
kategory: "einfache Webseiten",
|
|
|
|
|
kategory: "Websites",
|
|
|
|
|
logo: "javascript.png",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/JavaScript",
|
|
|
|
|
description: "JavaScript ist eine Skriptsprache, die ursprünglich 1995 von Netscape für dynamisches HTML in Webbrowsern entwickelt wurde, um Benutzerinteraktionen auszuwerten, Inhalte zu verändern, nachzuladen oder zu generieren und so die Möglichkeiten von HTML und CSS zu erweitern. Heute findet JavaScript auch außerhalb von Browsern Anwendung, so etwa auf Servern und in Microcontrollern."
|
|
|
|
|
description: "JavaScript is a scripting language originally developed in 1995 by Netscape for dynamic HTML in web browsers to evaluate user interactions, modify, reload or generate content and thus extend the possibilities of HTML and CSS. Today, JavaScript is also used outside browsers, for example on servers and in microcontrollers."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Markdown",
|
|
|
|
|
kategory: "einfache Webseiten",
|
|
|
|
|
kategory: "Websites",
|
|
|
|
|
logo: "markdown.png",
|
|
|
|
|
link: "https://markdown.de",
|
|
|
|
|
description: "Markdown ist ein einfacher Syntax, um HTML-Code aus Textdokumenten zu generieren, angelehnt an die Formatierung von nur-Text E-Mails. Ein Ziel von Markdown ist, dass schon die Ausgangsform ohne weitere Konvertierung leicht lesbar ist."
|
|
|
|
|
description: "Markdown is a simple syntax for generating HTML code from text documents, similar to the formatting of plain text email. One goal of Markdown is that the original form is already easily readable without further conversion."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Bootstrap",
|
|
|
|
|
kategory: "Frontend Technologien",
|
|
|
|
|
kategory: "Frontend technologies",
|
|
|
|
|
logo: "bootstrap.jpg",
|
|
|
|
|
link: "https://getbootstrap.com",
|
|
|
|
|
description: "Bootstrap, ein umfangreiches und dennoch schlankes Mobile-First Frond-End-Framework für einfachere und schnellere Entwicklung im Web."
|
|
|
|
|
description: "Bootstrap, a comprehensive yet lightweight mobile first frond end framework for easier and faster development on the web."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Materialize",
|
|
|
|
|
kategory: "Frontend Technologien",
|
|
|
|
|
kategory: "Frontend technologies",
|
|
|
|
|
logo: "materialize.jpg",
|
|
|
|
|
link: "https://materializecss.com",
|
|
|
|
|
description: "Ein modernes responsives Front-End-Framework basierend auf dem Material Design"
|
|
|
|
|
description: "A modern responsive front-end framework based on material design"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Semantic UI",
|
|
|
|
|
kategory: "Frontend Technologien",
|
|
|
|
|
kategory: "Frontend technologies",
|
|
|
|
|
logo: "semantic.png",
|
|
|
|
|
link: "https://semantic-ui.com",
|
|
|
|
|
description: "Semantic ist ein Entwicklung Framework das hilft schöne ansprechende Layouts mit menschenfreundlichem HTML zu erstellen. Prägnante HTML-Klassen verwenden Syntax aus natürlichen Sprachen wie Substantiv/Modifikator-Beziehungen, Wortfolge und Pluralität, um Konzepte intuitiv zu verbinden."
|
|
|
|
|
description: "Semantic is a development framework that helps to create beautiful and appealing layouts with human friendly HTML. Concise HTML classes use syntax from natural languages such as noun/modifier relationships, word order and plurality to intuitively connect concepts."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "React",
|
|
|
|
|
kategory: "Frontend Technologien",
|
|
|
|
|
kategory: "Frontend technologies",
|
|
|
|
|
logo: "react.png",
|
|
|
|
|
link: "https://reactjs.org",
|
|
|
|
|
description: "React ist eine JavaScript-Softwarebibliothek, die ein Grundgerüst für die Ausgabe von User-Interface-Komponenten von Webseiten zur Verfügung stellt."
|
|
|
|
|
description: "React is a JavaScript software library that provides a basic framework for the output of user interface components of web pages."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Angular",
|
|
|
|
|
kategory: "Frontend Technologien",
|
|
|
|
|
kategory: "Frontend technologies",
|
|
|
|
|
logo: "angular.png",
|
|
|
|
|
link: "https://angular.io",
|
|
|
|
|
description: "Angular ist ein TypeScript-basiertes Front-End-Webapplikationsframework. Erreichen Sie die maximale Geschwindigkeit, die auf der Webplattform heute möglich ist, und bringen Sie sie mit Hilfe von Web Workern und serverseitigem Rendering weiter."
|
|
|
|
|
description: "Angular is a TypeScript-based front-end web application framework. Achieve the maximum speed possible on the Web platform today and take it to the next level with the help of Web workers and server-side rendering."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "SQL",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "sql.png",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/SQL",
|
|
|
|
|
description: "SQL ist eine Datenbanksprache zur Definition von Datenstrukturen in relationalen Datenbanken sowie zum Bearbeiten und Abfragen von darauf basierenden Datenbeständen. MySQL und NoSQL sind zwei der weltweit verbreitetsten relationalen Datenbankverwaltungssysteme."
|
|
|
|
|
description: "SQL is a database language for the definition of data structures in relational databases as well as for processing and querying data sets based on them. MySQL and NoSQL are two of the most common relational database management systems in the world."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "MongoDB",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "mongodb.png",
|
|
|
|
|
link: "https://www.mongodb.com",
|
|
|
|
|
description: "MongoDB ist eine dokumentenorientierte NoSQL-Datenbank, die in der Programmiersprache C++ geschrieben ist. Da die Datenbank dokumentenorientiert ist, kann sie Sammlungen von JSON-ähnlichen Dokumenten verwalten."
|
|
|
|
|
description: "MongoDB is a document-oriented NoSQL database written in the programming language C++. Because the database is document-oriented, it can manage collections of JSON-like documents."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "PHP",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "php.png",
|
|
|
|
|
link: "https://php.net",
|
|
|
|
|
description: "PHP ist eine Skriptsprache mit einer an C und Perl angelehnten Syntax, die hauptsächlich zur Erstellung dynamischer Webseiten oder Webanwendungen verwendet wird. PHP wird als freie Software unter der PHP-Lizenz verbreitet. NorthScorp verwendet sowohl PHP Version 5 und Version 7 und neben selbst entwickelten Frameworks auch Laravel."
|
|
|
|
|
description: "PHP is a scripting language with a syntax similar to C and Perl, which is mainly used to create dynamic websites or web applications. PHP is distributed as free software under the PHP license. NorthScorp uses both PHP version 5 and version 7 and, in addition to self-developed frameworks, Laravel."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "NodeJs",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "nodejs.jpg",
|
|
|
|
|
link: "https://nodejs.org",
|
|
|
|
|
description: "Node.js ist eine serverseitige Plattform in der Softwareentwicklung zum Betrieb von Netzwerkanwendungen. Insbesondere lassen sich Webserver damit realisieren."
|
|
|
|
|
description: "Node.js is a server-side platform in software development for operating network applications. In particular, web servers can be realized with it."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Django",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "django.png",
|
|
|
|
|
link: "https://www.djangoproject.com",
|
|
|
|
|
description: "Django ist ein hochleveliges Python Web-Framework, das eine schnelle Entwicklung und ein sauberes, pragmatisches Design fördert. Von erfahrenen Programmieren entwickelt, kümmert es sich um einen Großteil des Ärgers der Webentwicklung, so dass wir uns auf das Schreiben Ihrer App konzentrieren können, ohne das Rad neu erfinden zu müssen. Es ist kostenlos und Open Source."
|
|
|
|
|
description: "Django is a high-level Python web framework that promotes rapid development and clean, pragmatic design. Developed by experienced programmers, it takes care of much of the hassle of web development, so we can focus on writing your app without having to reinvent the wheel. It is free and open source."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "GatsbyJS",
|
|
|
|
|
kategory: "Backend Technologien",
|
|
|
|
|
kategory: "Backend technologies",
|
|
|
|
|
logo: "gatsby.png",
|
|
|
|
|
link: "https://www.gatsbyjs.org",
|
|
|
|
|
description: "GatsbyJS wurde im Mai 2015 als einfacher Weg geboren, um eine Website mit React zu erstellen. In den letzten drei Jahren haben Zehntausende von Entwicklern Gatsby genutzt, um Websites von Blogs und Portfolio-Seiten über Firmenhomepages bis hin zu E-Commerce-Anwendungen zu erstellen."
|
|
|
|
|
description: "GatsbyJS was born in May 2015 as an easy way to create a website with React. Over the past three years, tens of thousands of developers have used Gatsby to create websites from blogs and portfolio pages to corporate homepages and e-commerce applications."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Magento",
|
|
|
|
|
kategory: "Shop Systeme",
|
|
|
|
|
kategory: "shop systems",
|
|
|
|
|
logo: "magento.jpg",
|
|
|
|
|
link: "https://magento.com",
|
|
|
|
|
description: "Magento ist eine Onlineshop-Software und wurde 2008 als Open-Source-E-Commerce-Plattform veröffentlicht. Magento wird auf 1,3 % aller Websites eingesetzt und ist damit die meistverwendete reine Onlineshopsoftware."
|
|
|
|
|
description: "Magento is an online shop software and was released in 2008 as an open source e-commerce platform. Magento is used on 1.3% of all websites and is therefore the most widely used pure online shop software."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "OpenCart",
|
|
|
|
|
kategory: "Shop Systeme",
|
|
|
|
|
kategory: "shop systems",
|
|
|
|
|
logo: "opencart.jpg",
|
|
|
|
|
link: "https://www.opencart.com",
|
|
|
|
|
description: "Der OpenCart Marktplatz bietet über 13000 Module und Themen, um Ihren Shop zu starten, zu wachsen und zu erweitern. Hier finden Sie schöne Themen für nahezu jede Branche, Service Integrationen, Zahlungsanbieter, Versandarten, Social Media, Marketing, Buchhaltung, Reporting, Vertrieb sowie Sprachpakete."
|
|
|
|
|
description: "The OpenCart marketplace offers over 13000 modules and themes to start, grow and expand your shop. Here you will find nice topics for almost every industry, service integrations, payment providers, shipping methods, social media, marketing, accounting, reporting, sales and language packs."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "PayPal",
|
|
|
|
|
kategory: "Shop Systeme",
|
|
|
|
|
kategory: "shop systems",
|
|
|
|
|
logo: "paypal.png",
|
|
|
|
|
link: "https://paypal.com",
|
|
|
|
|
description: "PayPal ist ein börsennotierter Betreiber eines Online-Bezahldienstes, der zur Begleichung von Mittel- und Kleinbeträgen zum Beispiel beim Ein- und Verkauf im Online-Handel genutzt werden kann."
|
|
|
|
|
description: "PayPal is a listed operator of an online payment service that can be used for the payment of medium and small amounts, for example when buying and selling in online commerce."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "WooCommerce",
|
|
|
|
|
kategory: "Shop Systeme",
|
|
|
|
|
kategory: "shop systems",
|
|
|
|
|
logo: "woo.png",
|
|
|
|
|
link: "https://woocommerce.com/",
|
|
|
|
|
description: "WooCommerce ist ein freies Plug-in für WordPress, welches das Content-Management-System um die Funktionalität eines Onlineshops ergänzt. Es wurde insgesamt mehr als 15 Millionen Mal heruntergeladen."
|
|
|
|
|
description: "WooCommerce is a free plug-in for WordPress, which adds the functionality of an online shop to the content management system. It has been downloaded more than 15 million times."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "C",
|
|
|
|
|
kategory: "Programmieren",
|
|
|
|
|
kategory: "programming",
|
|
|
|
|
logo: "code_c.png",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/C_(Programmiersprache)",
|
|
|
|
|
description: "C ist eine imperative und prozedurale Programmiersprache, die der Informatiker Dennis Ritchie in den frühen 1970er Jahren an den Bell Laboratories entwickelte. Seitdem ist sie eine der am weitesten verbreiteten Programmiersprachen."
|
|
|
|
|
description: "C is an imperative and procedural programming language developed by computer scientist Dennis Ritchie at Bell Laboratories in the early 1970s. Since then it has become one of the most widely used programming languages."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "C++",
|
|
|
|
|
kategory: "Programmieren",
|
|
|
|
|
kategory: "programming",
|
|
|
|
|
logo: "c++.jpg",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/C%2B%2B",
|
|
|
|
|
description: "C++ ermöglicht sowohl die effiziente und maschinennahe Programmierung als auch eine Programmierung auf hohem Abstraktionsniveau. Der Standard definiert auch eine Standardbibliothek, zu der verschiedene Implementierungen existieren."
|
|
|
|
|
description: "C++ enables both efficient and machine-oriented programming and programming at a high level of abstraction. The standard also defines a standard library for which various implementations exist."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "C#",
|
|
|
|
|
kategory: "Programmieren",
|
|
|
|
|
kategory: "programming",
|
|
|
|
|
logo: "code_csharp.jpg",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/C-Sharp",
|
|
|
|
|
description: "C# ist eine typsichere, objektorientierte Allzweck-Programmiersprache. Die Sprache ist an sich plattformunabhängig, wurde aber im Rahmen der .NET-Strategie entwickelt, ist auf diese optimiert und meist in deren Kontext zu finden."
|
|
|
|
|
description: "C# is a type-safe, object-oriented general-purpose programming language. The language is platform-independent in itself, but was developed within the framework of the .NET strategy, is optimized for it and is usually found in its context."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Java",
|
|
|
|
|
kategory: "Programmieren",
|
|
|
|
|
kategory: "programming",
|
|
|
|
|
logo: "java.jpg",
|
|
|
|
|
link: "https://de.wikipedia.org/wiki/Java_(Programmiersprache)",
|
|
|
|
|
description: "Die Programmiersprache Java dient innerhalb der Java-Technologie vor allem zum Formulieren von Programmen. Der Java-Compiler, der Teil des Entwicklungswerkzeugs ist, übersetzt dem Programm Quellcode in den maschinenverständlichen Java-Bytecode um ihn später auszuführen."
|
|
|
|
|
description: "Within the Java technology, the programming language Java is mainly used to formulate programs. The Java compiler, which is part of the development tool, translates the source code of the program into the machine-understandable Java byte code for later execution."
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "Phyton",
|
|
|
|
|
kategory: "Programmieren",
|
|
|
|
|
kategory: "programming",
|
|
|
|
|
logo: "phyton.jpg",
|
|
|
|
|
link: "https://www.python.org",
|
|
|
|
|
description: "Python ist eine dynamische, objektorientierte Programmiersprache für Skripte und Rapid Application Development. Python bietet einen umfangreichen Support für die Integration anderer Sprachen sowie Tools und enthält zahlreiche Standard-Bibliotheken."
|
|
|
|
|
description: "Python is a dynamic, object-oriented programming language for scripts and rapid application development. Python offers extensive support for the integration of other languages as well as tools and contains numerous standard libraries."
|
|
|
|
|
}
|
|
|
|
|
];
|